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

Side by Side Diff: compiler/javatests/com/google/dart/compiler/resolver/ResolverTests.java

Issue 8231031: Check for compile-time constants in DartCompiler (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Feedback from floitsch Created 9 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 package com.google.dart.compiler.resolver; 5 package com.google.dart.compiler.resolver;
6 6
7 import junit.extensions.TestSetup; 7 import junit.extensions.TestSetup;
8 import junit.framework.Test; 8 import junit.framework.Test;
9 import junit.framework.TestSuite; 9 import junit.framework.TestSuite;
10 10
11 /** 11 /**
12 * Tests of the resolver. 12 * Tests of the resolver.
13 */ 13 */
14 public class ResolverTests extends TestSetup { 14 public class ResolverTests extends TestSetup {
15 15
16 public ResolverTests(Test test) { 16 public ResolverTests(Test test) {
17 super(test); 17 super(test);
18 } 18 }
19 19
20 public static Test suite() { 20 public static Test suite() {
21 TestSuite suite = new TestSuite("Dart Resolver test suite."); 21 TestSuite suite = new TestSuite("Dart Resolver test suite.");
22 22
23 suite.addTestSuite(ResolverTest.class); 23 suite.addTestSuite(ResolverTest.class);
24 suite.addTestSuite(NegativeResolverTest.class); 24 suite.addTestSuite(NegativeResolverTest.class);
25 25 suite.addTestSuite(CompileTimeConstantTest.class);
26 return suite; 26 return suite;
27 } 27 }
28 } 28 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698