[Bug 18841] [Custom]: "extends" is an ECMAScript reserved word; don’t use it as an attribute name

https://www.w3.org/Bugs/Public/show_bug.cgi?id=18841

Erik Arvidsson <arv@chromium.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|---                         |INVALID

--- Comment #2 from Erik Arvidsson <arv@chromium.org> ---
Property names are using the IdentifierName production which allows reserved
keywords:

Identifier ::
  IdentifierName but not ReservedWord

IdentifierName ::
  IdentifierStart
  IdentifierName IdentifierPart

Other productions, like variable bindings and function name bindings uses the
Identifier production which may not include reserved keywords.

-- 
You are receiving this mail because:
You are the QA Contact for the bug.

Received on Wednesday, 24 October 2012 20:10:39 UTC