2.1.43 [ECMA-262/6] Section 14.5 Class Definitions

V0007: Nothing in this section is implemented

The specification states:

 14.5 Class Definitions
  
     Syntax
  
         ClassDeclaration[Yield, Default] :
             class BindingIdentifier[?Yield] ClassTail[?Yield]
             [+Default] class ClassTail[?Yield]
  
         ClassExpression[Yield] :
             class BindingIdentifier[?Yield]opt ClassTail[?Yield]
  
         ClassTail[Yield] :
             ClassHeritage[?Yield]opt { ClassBody[?Yield]opt }
  
         ClassHeritage[Yield] :
             extends LeftHandSideExpression[?Yield]
  
         ClassBody[Yield] :
             ClassElementList[?Yield]
  
         ClassElementList[Yield] :
             ClassElement[?Yield]
             ClassElementList[?Yield] ClassElement[?Yield]
  
         ClassElement[Yield] :
             MethodDefinition[?Yield]
             static MethodDefinition[?Yield]
             ;

IE11 Mode (Internet Explorer 11)

Nothing in this section is implemented.