Michael Ficarra (2015-02-14T01:17:08.000Z)
d at domenic.me (2015-02-18T17:17:04.341Z)
Call Construct on the super constructor and the ArgumentListEvaluation of the TemplateLiteral. Maybe like this? CallExpression : super TemplateLiteral 1. Let newTarget be GetNewTarget(). 2. If newTarget is undefined, throw a ReferenceError exception. 3. Let func be GetSuperConstructor(). 4. ReturnIfAbrupt(func). 5. Let argList be ArgumentListEvaluation(TemplateLiteral) 6. ReturnIfAbrupt(argList). 7. Let result be Construct(func, argList, newTarget). 8. ReturnIfAbrupt(result). 9. Let thisER be GetThisEnvironment( ). 10. Return the result of calling the BindThisValue concrete method of thisER with argument result.