mirror of
https://github.com/mozilla/pdf.js.git
synced 2025-04-26 10:08:06 +02:00
Rename builder esprima fixtures to babel
f724ae98a1
changed the build
script to use Babel, so this commit updates the file names accordingly
This commit is contained in:
parent
b6765403a1
commit
83d878d34c
20 changed files with 8 additions and 8 deletions
15
external/builder/fixtures_babel/constants.js
vendored
Normal file
15
external/builder/fixtures_babel/constants.js
vendored
Normal file
|
@ -0,0 +1,15 @@
|
|||
var a = true;
|
||||
var b = false;
|
||||
var c = true && '1';
|
||||
var d = false && '0';
|
||||
var e = true || '1';
|
||||
var f = false || '0';
|
||||
var g = true ? '1' : '0';
|
||||
var h = false ? '1' : '0';
|
||||
var i = 'test' === 'test';
|
||||
var j = 'test' !== 'test';
|
||||
var k = 'test' === 'test2';
|
||||
var l = 'test' !== 'test2';
|
||||
var m = '1' === true;
|
||||
var n = !true;
|
||||
var o = !false;
|
Loading…
Add table
Add a link
Reference in a new issue