Refactor templates

This commit is contained in:
Katie Broida 2018-08-14 15:44:09 -04:00 committed by Rick Waldron
parent 5e217d531e
commit f11568dbde
4 changed files with 38 additions and 22 deletions

View File

@ -1,26 +1,45 @@
// Copyright (C) 2017 Mike Pennisi. All rights reserved.
// Copyright (C) 2018 Katie Broida. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
path: language/statements/class/accessor-name-inst-
name: Class declaration, instance method
esid: sec-runtime-semantics-classdefinitionevaluation
es6id: 14.5.14
path: language/statements/class/private-accessor-name-inst-
name: Class declaration, private instance method
esid: #prod-MethodDefinition
info: |
[...]
21. For each ClassElement m in order from methods
a. If IsStatic of m is false, then
i. Let status be the result of performing PropertyDefinitionEvaluation
for m with arguments proto and false.
MethodDefinition[Yield, Await]:
PropertyNameClassElementName [?Yield, ?Await](
UniqueFormalParameters [~Yield, ~Await] ) {
FunctionBody [~Yield, ~Await] }
AsyncMethod[?Yield, ?Await]
get PropertyName ClassElementName [?Yield, ?Await] (){
FunctionBody [~Yield, ~Await] }
set PropertyNameClassElementName [?Yield, ?Await] (
PropertySetParameterList ) { FunctionBody [~Yield, ~Await] }
AsyncMethod [Yield, Await]:
async [no LineTerminator here] PropertyName
ClassElementName[?Yield, ?Await](
UniqueFormalParameters[~Yield, +Await] ) { AsyncFunctionBody }
---*/
var stringSet;
class C {
get /*{ declareWith }*/() { return 'get string'; }
set /*{ declareWith }*/(param) { stringSet = param; }
get #/*{ declareWith }*/() { return 'get string'; }
set #/*{ declareWith }*/(param) { stringSet = param; }
getPrivateReference() {
return this.#/*{ referenceWith }*/;
}
assert.sameValue(C.prototype[/*{ referenceWith }*/], 'get string');
setPrivateReference(value) {
this.#/*{ referenceWith }*/ = value;
}
};
C.prototype[/*{ referenceWith }*/] = 'set string';
var inst = C();
assert.sameValue(inst.getPrivateReference(), 'get string');
inst.setPrivateReference('set string');
assert.sameValue(stringSet, 'set string');

View File

@ -37,10 +37,8 @@ class C {
}
}
var inst = C();
assert.sameValue(C.getPrivateReference(), 'get string');
assert.sameValue(inst.getPrivateReference(), 'get string');
inst.setPrivateReference('set string');
C.setPrivateReference('set string');
assert.sameValue(stringSet, 'set string');

View File

@ -37,9 +37,8 @@ var C = class {
}
};
var inst = C();
assert.sameValue(inst.getPrivateReference(), 'get string');
assert.sameValue(C.getPrivateReference(), 'get string');
inst.setPrivateReference('set string');
C.setPrivateReference('set string');
assert.sameValue(stringSet, 'set string');