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

Unified Diff: pkg/polymer_expressions/test/visitor_test.dart

Issue 80923003: Fix small bug in RecursiveVisitor (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 1 month 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 | « pkg/polymer_expressions/test/all_tests.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/polymer_expressions/test/visitor_test.dart
diff --git a/pkg/polymer_expressions/test/visitor_test.dart b/pkg/polymer_expressions/test/visitor_test.dart
new file mode 100644
index 0000000000000000000000000000000000000000..887ac7c3dec2c577c863e47795a9385fff0ff56b
--- /dev/null
+++ b/pkg/polymer_expressions/test/visitor_test.dart
@@ -0,0 +1,27 @@
+// Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
+// for details. All rights reserved. Use of this source code is governed by a
+// BSD-style license that can be found in the LICENSE file.
+
+library visitor_test;
+
+import 'package:polymer_expressions/parser.dart';
+import 'package:polymer_expressions/visitor.dart';
+import 'package:unittest/unittest.dart';
+
+main() {
+
+ group('visitor', () {
+
+ // regression test
+ test('should not infinitely recurse on parenthesized expressions', () {
+ var visitor = new TestVisitor();
+ var expr = new Parser('(1)').parse();
+ visitor.visit(expr);
+ });
+
+ });
+}
+
+class TestVisitor extends RecursiveVisitor {
+ visitExpression(e) => null;
+}
« no previous file with comments | « pkg/polymer_expressions/test/all_tests.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698