We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b15cf61 commit 2693a3aCopy full SHA for 2693a3a
test/input/mangle-prefix/sample.js
@@ -2,23 +2,19 @@ var Test = function() {
2
this.someVar = 123;
3
};
4
5
-
6
Test.prototype.someMethod = function() {
7
console.log(this.someVar);
8
}
9
10
11
Test.prototype.someOther = function() {
12
console.log("other");
13
this.someMethod();
14
this.__special();
15
16
17
18
Test.prototype.__special = function() {
19
console.log("special");
20
21
22
23
var oTest = new Test();
24
oTest.someOther();
0 commit comments