make class methods unenumerable - fixes #41
This commit is contained in:
7
test/fixtures/classes/static/expected.js
vendored
7
test/fixtures/classes/static/expected.js
vendored
@@ -1,9 +1,12 @@
|
||||
var A = function() {
|
||||
function A() {}
|
||||
|
||||
A.a = function() {};
|
||||
|
||||
Object.defineProperties(A, {
|
||||
a: {
|
||||
writeable: true,
|
||||
value: function() {}
|
||||
},
|
||||
|
||||
b: {
|
||||
get: function() {},
|
||||
set: function(b) {}
|
||||
|
||||
Reference in New Issue
Block a user