mirror of
https://github.com/swc-project/swc.git
synced 2024-11-27 13:38:33 +03:00
18 lines
269 B
JavaScript
18 lines
269 B
JavaScript
(function() {
|
|
var a = {
|
|
};
|
|
with (a){
|
|
(1, b)(); // Don't transform it to test()
|
|
}
|
|
/*
|
|
* var obj = {
|
|
* test: function() {
|
|
* print(obj === this);
|
|
* }
|
|
* };
|
|
* with (obj) {
|
|
* test(); // true
|
|
* (0, test)(); // false
|
|
* }
|
|
*/ }());
|