cmacc-compiler
Advanced tools
Comparing version 1.0.6 to 1.0.7
{ | ||
"name": "cmacc-compiler", | ||
"version": "1.0.6", | ||
"version": "1.0.7", | ||
"description": "Cmacc Compiler", | ||
@@ -5,0 +5,0 @@ "main": "src/index.js", |
@@ -11,3 +11,3 @@ var REGEX_EOL = /\n/; | ||
return obj; | ||
return ''; | ||
@@ -14,0 +14,0 @@ } |
@@ -271,2 +271,18 @@ var assert = require('assert'); | ||
}); | ||
describe('OnlyVars', function () { | ||
describe('OnlyVars.cmacc', function () { | ||
it('should parse OnlyVars.cmacc', function (done) { | ||
var file = path.join(__dirname, 'resolve', 'OnlyVars.cmacc'); | ||
var ast = compile('file://' + file); | ||
var result = resolve(ast); | ||
assert.equal(result, ''); | ||
done(); | ||
}); | ||
}); | ||
}); | ||
}); |
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
98583
144
1868