mirror of
https://github.com/swc-project/swc.git
synced 2024-12-18 19:21:33 +03:00
777 lines
13 KiB
Rust
777 lines
13 KiB
Rust
#![feature(box_syntax)]
|
|
#![feature(test)]
|
|
#![feature(box_patterns)]
|
|
#![feature(specialization)]
|
|
|
|
use swc_ecma_parser::Syntax;
|
|
use swc_ecma_transforms::{compat::es2015::TemplateLiteral, pass::Pass};
|
|
|
|
#[macro_use]
|
|
mod common;
|
|
|
|
fn syntax() -> Syntax {
|
|
Default::default()
|
|
}
|
|
|
|
fn tr(_: ()) -> impl Pass {
|
|
TemplateLiteral::default()
|
|
}
|
|
|
|
test_exec!(
|
|
syntax(),
|
|
|_| tr(Default::default()),
|
|
issue_231,
|
|
"const truthy = 'a=b';
|
|
const foo = `http://example.com/foo/bar${truthy && '?'}${truthy}`;
|
|
expect(foo).toBe('http://example.com/foo/bar?a=b');\
|
|
"
|
|
);
|
|
|
|
test_exec!(
|
|
syntax(),
|
|
|_| tr(Default::default()),
|
|
issue_388,
|
|
"
|
|
'use strict';
|
|
const write = (text) => {
|
|
console.log(text)
|
|
}
|
|
write(1)
|
|
write('2')
|
|
write`3`"
|
|
);
|
|
|
|
test!(
|
|
syntax(),
|
|
|_| tr(Default::default()),
|
|
escape_quotes,
|
|
r#"var t = `'${foo}' "${bar}"`;"#,
|
|
r#"var t = "'".concat(foo, '\' "').concat(bar, '"');"#,
|
|
ok_if_code_eq
|
|
);
|
|
|
|
test!(
|
|
syntax(),
|
|
|_| tr(Default::default()),
|
|
multiple,
|
|
r#"var foo = `test ${foo} ${bar}`;"#,
|
|
r#"var foo = 'test '.concat(foo, ' ').concat(bar);"#
|
|
);
|
|
|
|
test!(
|
|
syntax(),
|
|
|_| tr(Default::default()),
|
|
none,
|
|
r#"var foo = `test`;"#,
|
|
r#"var foo = "test";"#
|
|
);
|
|
|
|
test!(
|
|
syntax(),
|
|
|_| tr(Default::default()),
|
|
only,
|
|
r#"var foo = `${test}`;"#,
|
|
r#"var foo = ''.concat(test);"#
|
|
);
|
|
|
|
test_exec!(
|
|
syntax(),
|
|
|_| tr(Default::default()),
|
|
order,
|
|
r#"
|
|
const calls = [];
|
|
|
|
`
|
|
${
|
|
(calls.push(1), {
|
|
[Symbol.toPrimitive](){
|
|
calls.push(2);
|
|
return 'foo';
|
|
}
|
|
})
|
|
}
|
|
${
|
|
(calls.push(3), {
|
|
[Symbol.toPrimitive](){
|
|
calls.push(4);
|
|
return 'bar';
|
|
}
|
|
})
|
|
}
|
|
`;
|
|
|
|
expect(calls).toEqual([1, 2, 3, 4]);"#
|
|
);
|
|
|
|
test_exec!(
|
|
syntax(),
|
|
|_| tr(Default::default()),
|
|
order2,
|
|
r#"const calls = [];
|
|
|
|
`
|
|
${{
|
|
[Symbol.toPrimitive]() {
|
|
calls.push(1);
|
|
return "foo";
|
|
}
|
|
}}
|
|
${1 +
|
|
{
|
|
valueOf() {
|
|
calls.push(2);
|
|
return 2;
|
|
}
|
|
}}
|
|
`;
|
|
|
|
expect(calls).toEqual([1, 2]);"#
|
|
);
|
|
|
|
test!(
|
|
syntax(),
|
|
|_| tr(Default::default()),
|
|
single,
|
|
r#"var foo = `test ${foo}`;"#,
|
|
r#"var foo = 'test '.concat(foo);"#
|
|
);
|
|
|
|
test!(
|
|
syntax(),
|
|
|_| tr(Default::default()),
|
|
statement,
|
|
r#"var foo = `test ${foo + bar}`;"#,
|
|
r#"var foo = 'test '.concat(foo + bar);"#,
|
|
ok_if_code_eq
|
|
);
|
|
|
|
test_exec!(
|
|
syntax(),
|
|
|_| tr(Default::default()),
|
|
symbol,
|
|
r#"const fn = () => `${Symbol()}`;
|
|
|
|
expect(fn).toThrow(TypeError);"#
|
|
);
|
|
|
|
test!(
|
|
// TODO: Fix parser
|
|
ignore,
|
|
syntax(),
|
|
|_| tr(Default::default()),
|
|
template_revision,
|
|
r#"tag`\unicode and \u{55}`;
|
|
tag`\01`;
|
|
tag`\xg${0}right`;
|
|
tag`left${0}\xg`;
|
|
tag`left${0}\xg${1}right`;
|
|
tag`left${0}\u000g${1}right`;
|
|
tag`left${0}\u{-0}${1}right`;
|
|
function a() {
|
|
var undefined = 4;
|
|
tag`\01`;
|
|
}"#,
|
|
r#"
|
|
function _templateObject8() {
|
|
const data = _taggedTemplateLiteral([void 0], ["\\01"]);
|
|
|
|
_templateObject8 = function () {
|
|
return data;
|
|
};
|
|
|
|
return data;
|
|
}
|
|
|
|
function _templateObject7() {
|
|
const data = _taggedTemplateLiteral(["left", void 0, "right"], ["left", "\\u{-0}", "right"]);
|
|
|
|
_templateObject7 = function () {
|
|
return data;
|
|
};
|
|
|
|
return data;
|
|
}
|
|
|
|
function _templateObject6() {
|
|
const data = _taggedTemplateLiteral(["left", void 0, "right"], ["left", "\\u000g", "right"]);
|
|
|
|
_templateObject6 = function () {
|
|
return data;
|
|
};
|
|
|
|
return data;
|
|
}
|
|
|
|
function _templateObject5() {
|
|
const data = _taggedTemplateLiteral(["left", void 0, "right"], ["left", "\\xg", "right"]);
|
|
|
|
_templateObject5 = function () {
|
|
return data;
|
|
};
|
|
|
|
return data;
|
|
}
|
|
|
|
function _templateObject4() {
|
|
const data = _taggedTemplateLiteral(["left", void 0], ["left", "\\xg"]);
|
|
|
|
_templateObject4 = function () {
|
|
return data;
|
|
};
|
|
|
|
return data;
|
|
}
|
|
|
|
function _templateObject3() {
|
|
const data = _taggedTemplateLiteral([void 0, "right"], ["\\xg", "right"]);
|
|
|
|
_templateObject3 = function () {
|
|
return data;
|
|
};
|
|
|
|
return data;
|
|
}
|
|
|
|
function _templateObject2() {
|
|
const data = _taggedTemplateLiteral([void 0], ["\\01"]);
|
|
|
|
_templateObject2 = function () {
|
|
return data;
|
|
};
|
|
|
|
return data;
|
|
}
|
|
|
|
function _templateObject() {
|
|
const data = _taggedTemplateLiteral([void 0], ["\\unicode and \\u{55}"]);
|
|
|
|
_templateObject = function () {
|
|
return data;
|
|
};
|
|
|
|
return data;
|
|
}
|
|
|
|
tag(_templateObject());
|
|
tag(_templateObject2());
|
|
tag(_templateObject3(), 0);
|
|
tag(_templateObject4(), 0);
|
|
tag(_templateObject5(), 0, 1);
|
|
tag(_templateObject6(), 0, 1);
|
|
tag(_templateObject7(), 0, 1);
|
|
|
|
function a() {
|
|
var undefined = 4;
|
|
tag(_templateObject8());
|
|
}"#
|
|
);
|
|
|
|
// default_order_exec
|
|
test_exec!(
|
|
syntax(),
|
|
|_| tr(Default::default()),
|
|
default_order_exec,
|
|
r#"
|
|
const calls = [];
|
|
|
|
`
|
|
${
|
|
(calls.push(1), {
|
|
[Symbol.toPrimitive](){
|
|
calls.push(2);
|
|
return 'foo';
|
|
}
|
|
})
|
|
}
|
|
${
|
|
(calls.push(3), {
|
|
[Symbol.toPrimitive](){
|
|
calls.push(4);
|
|
return 'bar';
|
|
}
|
|
})
|
|
}
|
|
`;
|
|
|
|
expect(calls).toEqual([1, 2, 3, 4]);
|
|
|
|
"#
|
|
);
|
|
|
|
// default_only
|
|
test!(
|
|
syntax(),
|
|
|_| tr(Default::default()),
|
|
default_only,
|
|
r#"
|
|
var foo = `${test}`;
|
|
|
|
"#,
|
|
r#"
|
|
var foo = "".concat(test);
|
|
|
|
"#
|
|
);
|
|
|
|
// default_single
|
|
test!(
|
|
syntax(),
|
|
|_| tr(Default::default()),
|
|
default_single,
|
|
r#"
|
|
var foo = `test ${foo}`;
|
|
|
|
"#,
|
|
r#"
|
|
var foo = "test ".concat(foo);
|
|
|
|
"#
|
|
);
|
|
|
|
// default_statement
|
|
test!(
|
|
syntax(),
|
|
|_| tr(Default::default()),
|
|
default_statement,
|
|
r#"
|
|
var foo = `test ${foo + bar}`;
|
|
|
|
"#,
|
|
r#"
|
|
var foo = "test ".concat(foo + bar);
|
|
|
|
"#
|
|
);
|
|
|
|
// default_expression_first
|
|
test!(
|
|
syntax(),
|
|
|_| tr(Default::default()),
|
|
default_expression_first,
|
|
r#"
|
|
var foo = 5;
|
|
var bar = 10;
|
|
var baz = 15;
|
|
|
|
var example = `${"a"}`;
|
|
var example2 = `${1}`;
|
|
var example3 = 1 + `${foo}${bar}${baz}`;
|
|
var example4 = 1 + `${foo}bar${baz}`;
|
|
var example5 = `${""}`;
|
|
|
|
"#,
|
|
r#"
|
|
var foo = 5;
|
|
var bar = 10;
|
|
var baz = 15;
|
|
var example = "a";
|
|
var example2 = "".concat(1);
|
|
var example3 = 1 + "".concat(foo).concat(bar).concat(baz);
|
|
var example4 = 1 + "".concat(foo, "bar").concat(baz);
|
|
var example5 = "";
|
|
|
|
"#
|
|
);
|
|
|
|
// default_literals
|
|
test!(
|
|
syntax(),
|
|
|_| tr(Default::default()),
|
|
default_literals,
|
|
r#"
|
|
var foo = `${1}${f}oo${true}${b}ar${0}${baz}`;
|
|
|
|
"#,
|
|
r#"
|
|
var foo = ''.concat(1).concat(f, 'oo', true).concat(b, 'ar', 0).concat(baz);
|
|
|
|
"#
|
|
);
|
|
|
|
// default_multiline
|
|
test!(
|
|
syntax(),
|
|
|_| tr(Default::default()),
|
|
default_multiline,
|
|
r#"
|
|
var o = `wow
|
|
this is
|
|
actually multiline!`;
|
|
|
|
"#,
|
|
r#"
|
|
var o = "wow\nthis is\nactually multiline!";
|
|
|
|
"#,
|
|
ok_if_code_eq
|
|
);
|
|
|
|
// default_template_revision
|
|
test!(
|
|
// TODO: Improve parser
|
|
ignore,
|
|
syntax(),
|
|
|_| tr(Default::default()),
|
|
default_template_revision,
|
|
r#"
|
|
tag`\unicode and \u{55}`;
|
|
|
|
tag`\01`;
|
|
tag`\xg${0}right`;
|
|
tag`left${0}\xg`;
|
|
tag`left${0}\xg${1}right`;
|
|
tag`left${0}\u000g${1}right`;
|
|
tag`left${0}\u{-0}${1}right`;
|
|
|
|
function a() {
|
|
var undefined = 4;
|
|
tag`\01`;
|
|
}
|
|
|
|
"#,
|
|
r#"
|
|
function _templateObject8() {
|
|
const data = _taggedTemplateLiteral([void 0], ["\\01"]);
|
|
|
|
_templateObject8 = function () {
|
|
return data;
|
|
};
|
|
|
|
return data;
|
|
}
|
|
|
|
function _templateObject7() {
|
|
const data = _taggedTemplateLiteral(["left", void 0, "right"], ["left", "\\u{-0}", "right"]);
|
|
|
|
_templateObject7 = function () {
|
|
return data;
|
|
};
|
|
|
|
return data;
|
|
}
|
|
|
|
function _templateObject6() {
|
|
const data = _taggedTemplateLiteral(["left", void 0, "right"], ["left", "\\u000g", "right"]);
|
|
|
|
_templateObject6 = function () {
|
|
return data;
|
|
};
|
|
|
|
return data;
|
|
}
|
|
|
|
function _templateObject5() {
|
|
const data = _taggedTemplateLiteral(["left", void 0, "right"], ["left", "\\xg", "right"]);
|
|
|
|
_templateObject5 = function () {
|
|
return data;
|
|
};
|
|
|
|
return data;
|
|
}
|
|
|
|
function _templateObject4() {
|
|
const data = _taggedTemplateLiteral(["left", void 0], ["left", "\\xg"]);
|
|
|
|
_templateObject4 = function () {
|
|
return data;
|
|
};
|
|
|
|
return data;
|
|
}
|
|
|
|
function _templateObject3() {
|
|
const data = _taggedTemplateLiteral([void 0, "right"], ["\\xg", "right"]);
|
|
|
|
_templateObject3 = function () {
|
|
return data;
|
|
};
|
|
|
|
return data;
|
|
}
|
|
|
|
function _templateObject2() {
|
|
const data = _taggedTemplateLiteral([void 0], ["\\01"]);
|
|
|
|
_templateObject2 = function () {
|
|
return data;
|
|
};
|
|
|
|
return data;
|
|
}
|
|
|
|
function _templateObject() {
|
|
const data = _taggedTemplateLiteral([void 0], ["\\unicode and \\u{55}"]);
|
|
|
|
_templateObject = function () {
|
|
return data;
|
|
};
|
|
|
|
return data;
|
|
}
|
|
|
|
function _taggedTemplateLiteral(strings, raw) { if (!raw) { raw = strings.slice(0); } return Object.freeze(Object.defineProperties(strings, { raw: { value: Object.freeze(raw) } })); }
|
|
|
|
tag(_templateObject());
|
|
tag(_templateObject2());
|
|
tag(_templateObject3(), 0);
|
|
tag(_templateObject4(), 0);
|
|
tag(_templateObject5(), 0, 1);
|
|
tag(_templateObject6(), 0, 1);
|
|
tag(_templateObject7(), 0, 1);
|
|
|
|
function a() {
|
|
var undefined = 4;
|
|
tag(_templateObject8());
|
|
}
|
|
|
|
"#
|
|
);
|
|
|
|
// default_order2_exec
|
|
test_exec!(
|
|
syntax(),
|
|
|_| tr(Default::default()),
|
|
default_order2_exec,
|
|
r#"
|
|
const calls = [];
|
|
|
|
`
|
|
${{
|
|
[Symbol.toPrimitive]() {
|
|
calls.push(1);
|
|
return "foo";
|
|
}
|
|
}}
|
|
${1 +
|
|
{
|
|
valueOf() {
|
|
calls.push(2);
|
|
return 2;
|
|
}
|
|
}}
|
|
`;
|
|
|
|
expect(calls).toEqual([1, 2]);
|
|
|
|
"#
|
|
);
|
|
|
|
// default_cache_revision_exec
|
|
test_exec!(
|
|
syntax(),
|
|
|_| tr(Default::default()),
|
|
default_cache_revision_exec,
|
|
r#"
|
|
var tag = v => v;
|
|
|
|
function foo() {
|
|
return tag`some template`;
|
|
}
|
|
function bar() {
|
|
return tag`some template`;
|
|
}
|
|
expect(foo()).toBe(foo());
|
|
expect(foo()).toEqual(["some template"]);
|
|
|
|
expect(bar()).toBe(bar());
|
|
expect(bar()).toEqual(["some template"]);
|
|
|
|
expect(bar()).not.toBe(foo());
|
|
|
|
"#
|
|
);
|
|
|
|
// default_functions
|
|
test!(
|
|
syntax(),
|
|
|_| tr(Default::default()),
|
|
default_functions,
|
|
r#"
|
|
var foo = `test ${_.test(foo)} ${bar}`;
|
|
|
|
"#,
|
|
r#"
|
|
var foo = "test ".concat(_.test(foo), " ").concat(bar);
|
|
|
|
"#
|
|
);
|
|
|
|
// default_none
|
|
test!(
|
|
syntax(),
|
|
|_| tr(Default::default()),
|
|
default_none,
|
|
r#"
|
|
var foo = `test`;
|
|
|
|
"#,
|
|
r#"
|
|
var foo = "test";
|
|
|
|
"#
|
|
);
|
|
|
|
// default_symbol_exec
|
|
test_exec!(
|
|
syntax(),
|
|
|_| tr(Default::default()),
|
|
default_symbol_exec,
|
|
r#"
|
|
const fn = () => `${Symbol()}`;
|
|
|
|
expect(fn).toThrow(TypeError);
|
|
|
|
"#
|
|
);
|
|
|
|
// default_cache_revision
|
|
test!(
|
|
syntax(),
|
|
|_| tr(Default::default()),
|
|
default_cache_revision,
|
|
r#"
|
|
var tag = v => v;
|
|
|
|
function foo() {
|
|
return tag`some template`;
|
|
}
|
|
function bar() {
|
|
return tag`some template`;
|
|
}
|
|
expect(foo()).toBe(foo());
|
|
expect(foo()).toEqual(["some template"]);
|
|
|
|
expect(bar()).toBe(bar());
|
|
expect(bar()).toEqual(["some template"]);
|
|
|
|
expect(bar()).not.toBe(foo());
|
|
|
|
"#,
|
|
r#"
|
|
function _templateObject() {
|
|
const data = _taggedTemplateLiteral(["some template"]);
|
|
|
|
_templateObject = function () {
|
|
return data;
|
|
};
|
|
|
|
return data;
|
|
}
|
|
|
|
function _templateObject1() {
|
|
const data = _taggedTemplateLiteral(["some template"]);
|
|
|
|
_templateObject1 = function () {
|
|
return data;
|
|
};
|
|
|
|
return data;
|
|
}
|
|
|
|
var tag = v => v;
|
|
|
|
function foo() {
|
|
return tag(_templateObject());
|
|
}
|
|
|
|
function bar() {
|
|
return tag(_templateObject1());
|
|
}
|
|
|
|
expect(foo()).toBe(foo());
|
|
expect(foo()).toEqual(["some template"]);
|
|
expect(bar()).toBe(bar());
|
|
expect(bar()).toEqual(["some template"]);
|
|
expect(bar()).not.toBe(foo());
|
|
|
|
"#
|
|
);
|
|
|
|
// default_tag
|
|
test!(
|
|
syntax(),
|
|
|_| tr(Default::default()),
|
|
default_tag,
|
|
r#"
|
|
var foo = bar`wow\na${ 42 }b ${_.foobar()}`;
|
|
var bar = bar`wow\nab${ 42 } ${_.foobar()}`;
|
|
var bar = bar`wow\naB${ 42 } ${_.baz()}`;
|
|
|
|
"#,
|
|
r#"
|
|
function _templateObject() {
|
|
const data = _taggedTemplateLiteral(["wow\na", "b ", ""], ["wow\\na", "b ", ""]);
|
|
|
|
_templateObject = function () {
|
|
return data;
|
|
};
|
|
|
|
return data;
|
|
}
|
|
|
|
function _templateObject1() {
|
|
const data = _taggedTemplateLiteral(["wow\nab", " ", ""], ["wow\\nab", " ", ""]);
|
|
|
|
_templateObject1 = function () {
|
|
return data;
|
|
};
|
|
|
|
return data;
|
|
}
|
|
|
|
function _templateObject2() {
|
|
const data = _taggedTemplateLiteral(["wow\naB", " ", ""], ["wow\\naB", " ", ""]);
|
|
|
|
_templateObject2 = function () {
|
|
return data;
|
|
};
|
|
|
|
return data;
|
|
}
|
|
|
|
|
|
var foo = bar(_templateObject(), 42, _.foobar());
|
|
var bar = bar(_templateObject1(), 42, _.foobar());
|
|
var bar = bar(_templateObject2(), 42, _.baz());
|
|
|
|
"#
|
|
);
|
|
|
|
// default_simple_tag
|
|
test!(
|
|
syntax(),
|
|
|_| tr(Default::default()),
|
|
default_simple_tag,
|
|
r#"
|
|
var foo = tag`wow`;
|
|
var bar = tag`first${1}second`;
|
|
|
|
"#,
|
|
r#"
|
|
function _templateObject() {
|
|
const data = _taggedTemplateLiteral(["wow"]);
|
|
|
|
_templateObject = function () {
|
|
return data;
|
|
};
|
|
|
|
return data;
|
|
}
|
|
|
|
function _templateObject1() {
|
|
const data = _taggedTemplateLiteral(["first", "second"]);
|
|
|
|
_templateObject1 = function () {
|
|
return data;
|
|
};
|
|
|
|
return data;
|
|
}
|
|
|
|
var foo = tag(_templateObject());
|
|
var bar = tag(_templateObject1(), 1);
|
|
|
|
"#
|
|
);
|