vscode-textmate
Advanced tools
Comparing version 1.0.1 to 1.0.2
{ | ||
"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) { |
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
64323
1571