You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The language offers Operator Kinds for MEMBER_SETTER and MEMBER_GETTER.
However, currently they are not parsed properly, therefore we want to create and fix a simple test to test them (or maybe two test cases that each test one of them).
Acceptance criteria:
Test for member-getter passes
Test for member-setter passes
The Test case should look like this:
#output: value for Hello
#output: Setting this['Hello'] = 'World'publicclass MyClass {
privateval values = {} asstring[string];
public .(member: string): string => "value for " + member;
public .=(member: string, value: string): void => println("Setting this." + member + " = '" + value + "';}var cls = new MyClass();println(cls.Hello);cls.Hello = "World";
The text was updated successfully, but these errors were encountered:
The language offers Operator Kinds for MEMBER_SETTER and MEMBER_GETTER.
However, currently they are not parsed properly, therefore we want to create and fix a simple test to test them (or maybe two test cases that each test one of them).
Acceptance criteria:
The Test case should look like this:
The text was updated successfully, but these errors were encountered: