Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

tokenise() assumes a specific property enumeration order #27

Closed
jruderman opened this issue Apr 24, 2015 · 1 comment
Closed

tokenise() assumes a specific property enumeration order #27

jruderman opened this issue Apr 24, 2015 · 1 comment

Comments

@jruderman
Copy link

In order to run webidl2.js in a JS_MORE_DETERMINISTIC build of SpiderMonkey, I had to change

var ..., types = []
for (var k in re) types.push(k);

to:

var types = ["float", "integer", "identifier", "string", "whitespace", "other"];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant