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

Unified Diff: utils/peg/pegparser.dart

Issue 11238035: Make isEmpty a getter. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Update status file with co19 issue number. Created 8 years, 2 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 | « utils/archive/options.dart ('k') | utils/pub/command_help.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utils/peg/pegparser.dart
diff --git a/utils/peg/pegparser.dart b/utils/peg/pegparser.dart
index b67bd05105c0661287fbff7b8b9a0af69cbb115c..24a3fa750c29832915b126ea5888420ab42f58f2 100644
--- a/utils/peg/pegparser.dart
+++ b/utils/peg/pegparser.dart
@@ -266,7 +266,7 @@ class Grammar {
diagnose(state) {
var message = 'unexpected error';
- if (!state.max_rule.isEmpty()) {
+ if (!state.max_rule.isEmpty) {
var s = new Set();
for (var rule in state.max_rule)
s.add(rule.description());
« no previous file with comments | « utils/archive/options.dart ('k') | utils/pub/command_help.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698