Skip to content

Commit 2693a3a

Browse files
authored
Update sample.js
1 parent b15cf61 commit 2693a3a

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

test/input/mangle-prefix/sample.js

-4
Original file line numberDiff line numberDiff line change
@@ -2,23 +2,19 @@ var Test = function() {
22
this.someVar = 123;
33
};
44

5-
65
Test.prototype.someMethod = function() {
76
console.log(this.someVar);
87
}
98

10-
119
Test.prototype.someOther = function() {
1210
console.log("other");
1311
this.someMethod();
1412
this.__special();
1513
}
1614

17-
1815
Test.prototype.__special = function() {
1916
console.log("special");
2017
}
2118

22-
2319
var oTest = new Test();
2420
oTest.someOther();

0 commit comments

Comments
 (0)