mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-03-04 15:51:37 +00:00

- Remove bogus JS_ASSERT(!outermost) from the code that deals with a "#n=" type string being returned from js_EnterSharpObject, where the hash entry is not yet sharp (because we haven't seen the object twice during depth first search). This case trivially arises for the outermost object in, e.g., 'o={}; o.foo=o; uneval(o)'. - Avoid parenthesizing #n={...} object initializers for uneval, as they are not ambiguous (whereas {foo:1}, e.g., is ambiguous because it could be a block statement containing a labeled expression statement, or it could be an object initializer). - Death to tabs!