"use asmjs" -> "use asm" fix

This commit is contained in:
Onoshko Dan 2014-05-29 01:11:30 +07:00
parent 9bb898f87b
commit 7f93a474c9
2 changed files with 2 additions and 2 deletions

View File

@ -1082,7 +1082,7 @@ Cola.Parser.prototype.statement = Cola.Parser.embed_tokens(function() {
end : this.prev()
}));
} else
if (this.S.token.value != "asmjs" && this.S.token.value != "strict") this.unexpected();
if (this.S.token.value != "asm" && this.S.token.value != "strict") this.unexpected();
} else this.unexpected();
return args;

View File

@ -3,7 +3,7 @@
"description": "ColaScript translator / parser / mangler / compressor / beautifier toolkit",
"homepage": "https://github.com/TrigenSoftware/ColaScript",
"main": "tools/node.js",
"version": "0.5.6",
"version": "0.5.7",
"engines": { "node" : ">=0.4.0" },
"maintainers": [{
"name": "Dan Onoshko (dangreen)",