Lines Matching refs:map

52                 body: normalize_directives(M.body.map(from_moz)),
134 properties: M.body.body.map(from_moz),
143 properties: M.body.body.map(from_moz),
204 body: normalize_directives(M.body.map(from_moz)),
247 elements: M.elements.map(function(elem) {
315 body : M.consequent.map(from_moz),
385 properties: M.specifiers.map(function(prop) {
452 definitions: M.declarations.map(from_moz),
506 expressions: M.expressions.map(from_moz),
507 strings: M.quasis.map(function(el) {
609 map("EmptyStatement", AST_EmptyStatement);
610 map("ExpressionStatement", AST_SimpleStatement, "expression>body");
611 map("BlockStatement", AST_BlockStatement, "body@body");
612 map("IfStatement", AST_If, "test>condition, consequent>body, alternate>alternative");
613 map("LabeledStatement", AST_LabeledStatement, "label>label, body>body");
614 map("BreakStatement", AST_Break, "label>label");
615 map("ContinueStatement", AST_Continue, "label>label");
616 map("WithStatement", AST_With, "object>expression, body>body");
617 map("SwitchStatement", AST_Switch, "discriminant>expression, cases@body");
618 map("ReturnStatement", AST_Return, "argument>value");
619 map("ThrowStatement", AST_Throw, "argument>value");
620 map("WhileStatement", AST_While, "test>condition, body>body");
621 map("DoWhileStatement", AST_Do, "test>condition, body>body");
622 map("ForStatement", AST_For, "init>init, test>condition, update>step, body>body");
623 map("ForInStatement", AST_ForIn, "left>init, right>object, body>body");
624 map("DebuggerStatement", AST_Debugger);
625 map("VariableDeclarator", AST_VarDef, "id>name, init>value");
626 map("CatchClause", AST_Catch, "param>argname, body%body");
628 map("BinaryExpression", AST_Binary, "operator=operator, left>left, right>right");
629 map("LogicalExpression", AST_Binary, "operator=operator, left>left, right>right");
630 map("AssignmentExpression", AST_Assign, "operator=operator, left>left, right>right");
631 map("AssignmentPattern", AST_DefaultValue, "left>name, right>value");
632map("ConditionalExpression", AST_Conditional, "test>condition, consequent>consequent, alternate>al…
633 map("NewExpression", AST_New, "callee>expression, arguments@args, pure=pure");
634map("CallExpression", AST_Call, "callee>expression, arguments@args, optional=optional, pure=pure");
635 map("SequenceExpression", AST_Sequence, "expressions@expressions");
636 map("SpreadElement", AST_Spread, "argument>expression");
637 map("ObjectExpression", AST_Object, "properties@properties");
638 map("AwaitExpression", AST_Await, "argument>expression");
639 map("YieldExpression", AST_Yield, "argument>expression, delegate=nested");
646 var params = M.argnames.map(to_moz);
662 var params = M.argnames.map(to_moz);
690 body: M.properties.map(to_moz),
702 body: M.properties.map(to_moz),
781 consequent: M.body.map(to_moz),
845 specifiers: M.properties.map(function(prop) {
859 var specifiers = M.properties ? M.properties.map(function(prop) {
888 declarations: M.definitions.map(to_moz),
931 elements: M.elements.map(to_moz),
936 var elements = M.elements.map(to_moz);
963 var props = M.properties.map(to_moz);
1086 expressions: M.expressions.map(to_moz),
1087 quasis: M.strings.map(function(str, index) {
1163 function map(moztype, mytype, propmap) { function
1296 body: node.body.map(to_moz),
1301 var body = node.body.map(to_moz);