vscode-textmate
Advanced tools
Comparing version 2.0.0 to 2.0.1
{ | ||
"name": "vscode-textmate", | ||
"version": "2.0.0", | ||
"version": "2.0.1", | ||
"description": "VSCode TextMate grammar helpers", | ||
@@ -5,0 +5,0 @@ "author": { |
@@ -36,2 +36,9 @@ /*--------------------------------------------------------- | ||
export interface IGrammarInfo { | ||
fileTypes: string[]; | ||
name: string; | ||
scopeName: string; | ||
firstLineMatch: string; | ||
} | ||
/** | ||
@@ -48,3 +55,3 @@ * A grammar | ||
export interface ITokenizeLineResult { | ||
tokens: ITMToken[]; | ||
tokens: IToken[]; | ||
/** | ||
@@ -56,3 +63,3 @@ * The `prevState` to be passed on to the next line tokenization. | ||
export interface ITMToken { | ||
export interface IToken { | ||
startIndex: number; | ||
@@ -68,2 +75,4 @@ endIndex: number; | ||
_stackElementBrand: void; | ||
equals(other:StackElement): boolean; | ||
} |
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
84107
2159