KT-2752: minor fixes after code review

This commit is contained in:
Alexey Andreev
2016-08-23 15:32:39 +03:00
parent 7956b038fd
commit aa5d15cff7
13 changed files with 36 additions and 86 deletions
+13
View File
@@ -0,0 +1,13 @@
var bar = function() { return 23; };
var baz = 123;
function B() {
this.q = 32;
}
B.prototype.g = function() { return 42; };
B.q = 132;
B.g = function() { return 142; };
var P = {
f: function() { return 222; }
};