Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(61)

Unified Diff: CHANGELOG.md

Issue 2833063003: Use a better example of overriding fields in the changelog. (Closed)
Patch Set: Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: CHANGELOG.md
diff --git a/CHANGELOG.md b/CHANGELOG.md
index ef965e1e09b7310872dd317de79fafd70ad00bf8..c1bc032142a00c8972a9a2cedc0a2afc0d2efc83 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -96,12 +96,13 @@ class C extends A with B {}
int x = 42;
}
class D extends C {
- int x = 123;
- get y => super.x;
+ get x {
+ print("x got called");
+ return super.x;
+ }
}
main() {
print(new D().x);
- print(new D().y);
}
```
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698