Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

vscode-textmate

Package Overview
Dependencies
Maintainers
5
Versions
72
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vscode-textmate - npm Package Compare versions

Comparing version 2.3.1 to 2.3.2

4

package.json
{
"name": "vscode-textmate",
"version": "2.3.1",
"version": "2.3.2",
"description": "VSCode TextMate grammar helpers",

@@ -36,5 +36,5 @@ "author": {

"remap-istanbul": "^0.6.4",
"typescript": "^1.8.10",
"typescript": "^2.0.8",
"typings": "^1.3.2"
}
}

@@ -12,4 +12,4 @@ /**

export declare class Registry {
private _locator;
private _syncRegistry;
private readonly _locator;
private readonly _syncRegistry;
constructor(locator?: IGrammarLocator);

@@ -30,6 +30,6 @@ /**

export interface IGrammarInfo {
fileTypes: string[];
name: string;
scopeName: string;
firstLineMatch: string;
readonly fileTypes: string[];
readonly name: string;
readonly scopeName: string;
readonly firstLineMatch: string;
}

@@ -46,12 +46,12 @@ /**

export interface ITokenizeLineResult {
tokens: IToken[];
readonly tokens: IToken[];
/**
* The `prevState` to be passed on to the next line tokenization.
*/
ruleStack: StackElement;
readonly ruleStack: StackElement;
}
export interface IToken {
startIndex: number;
endIndex: number;
scopes: string[];
readonly endIndex: number;
readonly scopes: string[];
}

@@ -62,5 +62,5 @@ /**

export interface StackElement {
_parent: StackElement;
_stackElementBrand: void;
readonly _parent: StackElement;
equals(other: StackElement): boolean;
}

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc