2.1.53 [ECMA-262/6] Section 14.5.10 Static Semantics: NonConstructorMethodDefinitions

V0017: Nothing in this section is implemented

The specification states:

 14.5.10 Static Semantics: NonConstructorMethodDefinitions
  
     ClassElementList : ClassElement
         1.  If ClassElement is the production ClassElement : ; , return a new empty List.
         2.  If IsStatic of ClassElement is false and PropName of ClassElement is 
             "constructor", return a new empty List.
         3.  Return a List containing ClassElement.
  
     ClassElementList : ClassElementList ClassElement
         1.  Let list be NonConstructorMethodDefinitions of ClassElementList.
         2.  If ClassElement is the production ClassElement : ; , return list.
         3.  If IsStatic of ClassElement is false and PropName of ClassElement is 
             "constructor", return list.
         4.  Append ClassElement to the end of list.
         5.  Return list.

IE11 Mode (All versions)

Nothing in this section is implemented.