Lines Matching refs:to_moz

646         var params = M.argnames.map(to_moz);
649 argument: to_moz(M.rest),
653 id: to_moz(M.name),
662 var params = M.argnames.map(to_moz);
665 argument: to_moz(M.rest),
671 body: M.value ? to_moz(M.value) : to_moz_scope("BlockStatement", M),
675 id: to_moz(M.name),
686 id: to_moz(M.name),
687 superClass: to_moz(M.extends),
690 body: M.properties.map(to_moz),
698 id: to_moz(M.name),
699 superClass: to_moz(M.extends),
702 body: M.properties.map(to_moz),
710 var key = computed ? to_moz(M.key) : M.private ? {
723 value: to_moz(M.value),
733 var key = computed ? to_moz(M.key) : M.private ? {
745 value: to_moz(M.value),
758 left: to_moz(M.init),
759 right: to_moz(M.object),
760 body: to_moz(M.body),
780 test: to_moz(M.expression),
781 consequent: M.body.map(to_moz),
789 handler: to_moz(M.bcatch),
791 finalizer: to_moz(M.bfinally),
798 param: to_moz(M.argname),
807 declaration: to_moz(M.body),
814 declaration: to_moz(M.body),
822 source: to_moz(M.path),
838 source: to_moz(M.path),
851 local: to_moz(prop),
865 local: to_moz(prop),
871 local: to_moz(M.all),
875 local: to_moz(M.default),
880 source: to_moz(M.path),
888 declarations: M.definitions.map(to_moz),
896 object: to_moz(M.expression),
899 property: computed ? to_moz(M.property) : {
915 argument: to_moz(M.expression)
922 left: to_moz(M.left),
924 right: to_moz(M.right)
931 elements: M.elements.map(to_moz),
936 var elements = M.elements.map(to_moz);
939 argument: to_moz(M.rest),
949 var key = computed ? to_moz(M.key) : {
958 value: to_moz(M.value),
963 var props = M.properties.map(to_moz);
966 argument: to_moz(M.rest),
976 var key = computed ? to_moz(M.key) : {
994 value: to_moz(M.value),
1086 expressions: M.expressions.map(to_moz),
1098 tag: to_moz(M.tag),
1211 ].join("\n"))(to_moz, to_moz_block, to_moz_scope));
1282 function to_moz(node) { function
1290 }) : to_moz(alias);
1296 body: node.body.map(to_moz),
1301 var body = node.body.map(to_moz);
1303 body.unshift(to_moz(new AST_EmptyStatement(node.body[0])));