mirror of
https://github.com/Microsoft/vscode
synced 2024-10-30 19:48:09 +00:00
Merge pull request #57043 from ris58h/model-doc-fix
Remove out of date params from doc comments
This commit is contained in:
commit
4f20680f39
3 changed files with 0 additions and 10 deletions
|
@ -275,7 +275,6 @@ export default class URI implements UriComponents {
|
|||
good.scheme === 'file';
|
||||
good.path === '/coding/c#/project1';
|
||||
good.fragment === '';
|
||||
|
||||
const bad = URI.parse('file://' + '/coding/c#/project1');
|
||||
bad.scheme === 'file';
|
||||
bad.path === '/coding/c'; // path is now broken
|
||||
|
|
|
@ -747,7 +747,6 @@ export interface ITextModel {
|
|||
/**
|
||||
* Get the word under or besides `position`.
|
||||
* @param position The position to look for a word.
|
||||
* @param skipSyntaxTokens Ignore syntax tokens, as identified by the mode.
|
||||
* @return The word under or besides `position`. Might be null.
|
||||
*/
|
||||
getWordAtPosition(position: IPosition): IWordAtPosition;
|
||||
|
@ -755,7 +754,6 @@ export interface ITextModel {
|
|||
/**
|
||||
* Get the word under or besides `position` trimmed to `position`.column
|
||||
* @param position The position to look for a word.
|
||||
* @param skipSyntaxTokens Ignore syntax tokens, as identified by the mode.
|
||||
* @return The word under or besides `position`. Will never be null.
|
||||
*/
|
||||
getWordUntilPosition(position: IPosition): IWordAtPosition;
|
||||
|
@ -814,7 +812,6 @@ export interface ITextModel {
|
|||
/**
|
||||
* Get the word under or besides `position`.
|
||||
* @param position The position to look for a word.
|
||||
* @param skipSyntaxTokens Ignore syntax tokens, as identified by the mode.
|
||||
* @return The word under or besides `position`. Might be null.
|
||||
*/
|
||||
getWordAtPosition(position: IPosition): IWordAtPosition;
|
||||
|
@ -822,7 +819,6 @@ export interface ITextModel {
|
|||
/**
|
||||
* Get the word under or besides `position` trimmed to `position`.column
|
||||
* @param position The position to look for a word.
|
||||
* @param skipSyntaxTokens Ignore syntax tokens, as identified by the mode.
|
||||
* @return The word under or besides `position`. Will never be null.
|
||||
*/
|
||||
getWordUntilPosition(position: IPosition): IWordAtPosition;
|
||||
|
|
5
src/vs/monaco.d.ts
vendored
5
src/vs/monaco.d.ts
vendored
|
@ -181,7 +181,6 @@ declare namespace monaco {
|
|||
good.scheme === 'file';
|
||||
good.path === '/coding/c#/project1';
|
||||
good.fragment === '';
|
||||
|
||||
const bad = Uri.parse('file://' + '/coding/c#/project1');
|
||||
bad.scheme === 'file';
|
||||
bad.path === '/coding/c'; // path is now broken
|
||||
|
@ -1666,14 +1665,12 @@ declare namespace monaco.editor {
|
|||
/**
|
||||
* Get the word under or besides `position`.
|
||||
* @param position The position to look for a word.
|
||||
* @param skipSyntaxTokens Ignore syntax tokens, as identified by the mode.
|
||||
* @return The word under or besides `position`. Might be null.
|
||||
*/
|
||||
getWordAtPosition(position: IPosition): IWordAtPosition;
|
||||
/**
|
||||
* Get the word under or besides `position` trimmed to `position`.column
|
||||
* @param position The position to look for a word.
|
||||
* @param skipSyntaxTokens Ignore syntax tokens, as identified by the mode.
|
||||
* @return The word under or besides `position`. Will never be null.
|
||||
*/
|
||||
getWordUntilPosition(position: IPosition): IWordAtPosition;
|
||||
|
@ -1684,14 +1681,12 @@ declare namespace monaco.editor {
|
|||
/**
|
||||
* Get the word under or besides `position`.
|
||||
* @param position The position to look for a word.
|
||||
* @param skipSyntaxTokens Ignore syntax tokens, as identified by the mode.
|
||||
* @return The word under or besides `position`. Might be null.
|
||||
*/
|
||||
getWordAtPosition(position: IPosition): IWordAtPosition;
|
||||
/**
|
||||
* Get the word under or besides `position` trimmed to `position`.column
|
||||
* @param position The position to look for a word.
|
||||
* @param skipSyntaxTokens Ignore syntax tokens, as identified by the mode.
|
||||
* @return The word under or besides `position`. Will never be null.
|
||||
*/
|
||||
getWordUntilPosition(position: IPosition): IWordAtPosition;
|
||||
|
|
Loading…
Reference in a new issue