swc/ecmascript/codegen/tests/references/65228d6a31a06406.js
강동윤 7c58b89571
Scope analysis via ident hygiene (#74)
testing:
 - preserve context of the span in `::testing::DropSpan`

swc_ecma_codegen:
 - disable get_text_of_node to avoid deoptimization

swc_ecma_transforms:
 - allow using this inside arrow expression
 - implement es2015::block_scoping with hygiene ident
2018-11-23 19:22:07 +09:00

28 lines
506 B
JavaScript

var a;
a = true && b;
a = 1 && c.d('a');
a = 2 * 3 && 4 * b;
a = 5 == 6 && b + 7;
a = 'e' && 8 - b;
a = 9 + '' && b / 10;
a = -4.5 && 11 << b;
a = 12 && 13;
a = false && b;
a = NaN && c.d('f');
a = 14 && c.d('g');
a = h && 15 * b;
a = null && b + 16;
a = 17 * 18 - 19 && 20 - b;
a = 21 == 22 && b / 23;
a = !'e' && 24 % b;
a = 25 && 26;
a = b && true;
a = c.d('a') && 27;
a = 28 - b && 'e';
a = 29 << b && -4.5;
a = b && false;
a = c.d('f') && NaN;
a = c.d('g') && 30;
a = 31 * b && h;
a = b + 32 && null;