javascript Programming Glossary: lefthandsideexpression
What are the rules for Javascript's automatic semicolon insertion (ASI)? http://stackoverflow.com/questions/2846283/what-are-the-rules-for-javascripts-automatic-semicolon-insertion-asi restricted token. Restricted productions PostfixExpression LeftHandSideExpression no LineTerminator here LeftHandSideExpression no LineTerminator.. LeftHandSideExpression no LineTerminator here LeftHandSideExpression no LineTerminator here ContinueStatement continue no LineTerminator..
What's a valid left-hand-side expression in JavaScript grammar? http://stackoverflow.com/questions/3709866/whats-a-valid-left-hand-side-expression-in-javascript-grammar definition from the ECMA Script standard I'm very confused LeftHandSideExpression NewExpression CallExpression Is that just an error in the definition.. my humble understanding this would make much more sense LeftHandSideExpression Identifier MemberExpression Expression MemberExpression . IdentifierName.. To concisely answer your question everything beneath the LeftHandSideExpression production is a valid LeftHandSideExpression . I think the question..
|