16 lines
441 B
JavaScript
16 lines
441 B
JavaScript
/** @constructor */
|
|
Components.Vim.Syntax.Analyzer = function(){};
|
|
|
|
/** @type Function */
|
|
Components.Vim.Syntax.Analyzer.bracketAt;
|
|
/** @type Function */
|
|
Components.Vim.Syntax.Analyzer.bracketIn;
|
|
/** @type Function */
|
|
Components.Vim.Syntax.Analyzer.quoteIn;
|
|
/** @type Function */
|
|
Components.Vim.Syntax.Analyzer.wordAt;
|
|
/** @type Function */
|
|
Components.Vim.Syntax.Analyzer.quoteAt;
|
|
/** @type Function */
|
|
Components.Vim.Syntax.Analyzer.reset;
|