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
Implement property getter in A, then override in B
Call super.property from B property implementation
Run app, all is fine
Compile using dart2js, notice internal error
What is the expected output? What do you see instead?
no compile error, a compile error: "internal error: super property read not implemented"
What version of the product are you using? On what operating system?
Version 0.1.0.201205301156, Build 8124
Dart SDK version 8120, Dartium version
Ubuntu
Please provide any additional information below.
class A {
String get gah() {
return "merp";
}
}
class B extends A {
String get gah() {
return "${super.gah}ie";
}
}
The text was updated successfully, but these errors were encountered:
This issue was originally filed by rtimon...@gmail.com
What steps will reproduce the problem?
What is the expected output? What do you see instead?
no compile error, a compile error: "internal error: super property read not implemented"
What version of the product are you using? On what operating system?
Version 0.1.0.201205301156, Build 8124
Dart SDK version 8120, Dartium version
Ubuntu
Please provide any additional information below.
class A {
String get gah() {
return "merp";
}
}
class B extends A {
String get gah() {
return "${super.gah}ie";
}
}
The text was updated successfully, but these errors were encountered: