Skip to content

Commit

Permalink
Update sample.js
Browse files Browse the repository at this point in the history
  • Loading branch information
dabretin committed Feb 8, 2017
1 parent b15cf61 commit 2693a3a
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions test/input/mangle-prefix/sample.js
Expand Up @@ -2,23 +2,19 @@ var Test = function() {
this.someVar = 123;
};


Test.prototype.someMethod = function() {
console.log(this.someVar);
}


Test.prototype.someOther = function() {
console.log("other");
this.someMethod();
this.__special();
}


Test.prototype.__special = function() {
console.log("special");
}


var oTest = new Test();
oTest.someOther();

0 comments on commit 2693a3a

Please sign in to comment.