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

Unified Diff: runtime/vm/dart_api_impl_test.cc

Issue 12016005: Remove support for legacy abstract declarations (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 11 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 | runtime/vm/parser.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/dart_api_impl_test.cc
===================================================================
--- runtime/vm/dart_api_impl_test.cc (revision 17229)
+++ runtime/vm/dart_api_impl_test.cc (working copy)
@@ -4297,12 +4297,12 @@
" static set j(x) {}\n"
" static get _k => 'k';\n"
" static set _l(x) {}\n"
- " abstract m();\n"
- " abstract _n();\n"
- " abstract get o;\n"
- " abstract set p(x);\n"
- " abstract get _q;\n"
- " abstract set _r(x);\n"
+ " m();\n"
+ " _n();\n"
+ " get o;\n"
+ " set p(x);\n"
+ " get _q;\n"
+ " set _r(x);\n"
" s(x, [y, z]) {}\n"
" t([x, y, z]) {}\n"
" operator ==(x) {}\n"
« no previous file with comments | « no previous file | runtime/vm/parser.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698