mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-07-27 06:10:14 -04:00
Do not parse PaperScript code in exigent mode. Relaxes requirements of semicolons, etc.
This commit is contained in:
parent
3c20f31a28
commit
e1d90c921c
1 changed files with 1 additions and 1 deletions
|
@ -100,7 +100,7 @@ var PaperScript = this.PaperScript = new function() {
|
|||
// Use parse-js to translate the code into a AST structure which is then
|
||||
// walked and parsed for operators to overload. The resulting AST is
|
||||
// translated back to code and evaluated.
|
||||
var ast = parse_js.parse(code, true),
|
||||
var ast = parse_js.parse(code),
|
||||
walker = parse_js.ast_walker(),
|
||||
walk = walker.walk;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue