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

vscode-textmate

Package Overview
Dependencies
Maintainers
2
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 1.0.1 to 1.0.2

2

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

@@ -5,0 +5,0 @@ "main": "./release/main.js",

# VSCode TextMate
An interpreter for grammar files as defined by TextMate. Supports loading grammar files from JSON or PLIST format. Grammar injection is currently not supported.
An interpreter for grammar files as defined by TextMate. Supports loading grammar files from JSON or PLIST format. Cross - grammar injections are currently not supported.

@@ -5,0 +5,0 @@ ## Installing

@@ -78,2 +78,4 @@ /*---------------------------------------------------------

contentName: string;
clone(): StackElement;
}

@@ -376,3 +376,4 @@ /*---------------------------------------------------------

function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
__.prototype = b.prototype;
d.prototype = new __();
};

@@ -1267,2 +1268,5 @@ var utils_1 = require('./utils');

}
StackElement.prototype.clone = function () {
return new StackElement(this.ruleId, this.enterPos, this.endRule, this.scopeName, this.contentName);
};
StackElement.prototype.matches = function (scopeName) {

@@ -1269,0 +1273,0 @@ if (!this.scopeName) {

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