mirror of
https://github.com/swc-project/swc.git
synced 2025-01-02 10:37:56 +03:00
99e738643a
swc_ecma_minifier: - Classify tests so we can focus on MVP.
14 lines
195 B
JavaScript
14 lines
195 B
JavaScript
function f(CONFIG) {
|
|
return CONFIG.VALUE;
|
|
}
|
|
function g() {
|
|
var CONFIG = {
|
|
VALUE: 1,
|
|
};
|
|
return CONFIG.VALUE;
|
|
}
|
|
function h() {
|
|
return 42;
|
|
}
|
|
if (0) console.debug("foo");
|