Files
sdk/pkg/kernel/testcases/interpreter/object_property_access.dart.expect
T
Zhivka Gucevska 3cac905c54 Implement support for property accessors
- Evaluation of PropertyGet expression by accessing a field,
 execution of a getter or creating a method tearoff.
 - Evaluation of PropertySet expression by setting a field or
 execution of a setter.

BUG=
R=dmitryas@google.com

Review-Url: https://codereview.chromium.org/2999673002 .
2017-08-21 08:38:47 +02:00

9 lines
117 B
Plaintext

print(Null: null)
print(int: 42)
return
print(int: 6)
print(int: 1)
print(int: 2)
return
print(int: 2)
print(int: 42)