* isConstantExpression should return true for immuable bindings * New test * Don't return undefined
9 lines
117 B
JavaScript
9 lines
117 B
JavaScript
const field = Symbol('field');
|
|
|
|
class A {
|
|
constructor() {
|
|
babelHelpers.defineProperty(this, field, 10);
|
|
}
|
|
|
|
}
|