Although the source points to various specifications, the most up-to-date JavaScript specification is the current draft one, now the ES2017 draft spec. This is available at https://tc39.github.io/ecma262/ . I'd recommend that new comments reference anchors, not section numbers, e.g., ES#sec-ecmascript-function-objects-call-thisargument-argumentslist . These are guaranteed to be stable across versions (if the section continues to exist), whereas numbering will change as unrelated things are added or removed.
Dan On Tue, Jun 14, 2016 at 3:10 AM, Dmitriy - <[email protected]> wrote: > As I can see in the code: > src/builtins.h:438: > // ES6 section 9.2.1 [[Call]] ( thisArgument, argumentsList) > static void Generate_CallFunction(MacroAssembler* masm, > ConvertReceiverMode mode, > TailCallMode tail_call_mode); > > I've found this specification > http://www.ecma-international.org/ecma-262/6.0/ > but the 9.2.1 chapter is "ToBoolean" and not a [[Call]]. > > -- > -- > v8-dev mailing list > [email protected] > http://groups.google.com/group/v8-dev > --- > You received this message because you are subscribed to the Google Groups > "v8-dev" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > For more options, visit https://groups.google.com/d/optout. -- -- v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev --- You received this message because you are subscribed to the Google Groups "v8-dev" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
