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

Side by Side Diff: tests/compiler/dart2js_foreign/native_null_test.dart

Issue 10993059: Stop using the Hashable interface. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Another space removed. 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 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 // Test that parameters in native methods are not mangled. This test is needed 5 // Test that parameters in native methods are not mangled. This test is needed
6 // until we change all libraries to using the JS foreign element. 6 // until we change all libraries to using the JS foreign element.
7 7
8 @native("*A") 8 @native("*A")
9 class A { 9 class A {
10 @native("return null;") 10 @native("return null;")
11 returnNull(); 11 returnNull();
12 @native("return undefined;") 12 @native("return undefined;")
13 returnUndefined(); 13 returnUndefined();
14 @native("return '';") 14 @native("return '';")
15 returnEmptyString(); 15 returnEmptyString();
16 @native("return 0;") 16 @native("return 0;")
17 returnZero(); 17 returnZero();
18 } 18 }
19 19
(...skipping 12 matching lines...) Expand all
32 Expect.equals(null, a.returnNull()); 32 Expect.equals(null, a.returnNull());
33 Expect.equals(null, a.returnUndefined()); 33 Expect.equals(null, a.returnUndefined());
34 34
35 Expect.equals('', a.returnEmptyString()); 35 Expect.equals('', a.returnEmptyString());
36 Expect.isTrue(a.returnEmptyString().isEmpty()); 36 Expect.isTrue(a.returnEmptyString().isEmpty());
37 Expect.isTrue(a.returnEmptyString() is String); 37 Expect.isTrue(a.returnEmptyString() is String);
38 38
39 Expect.isTrue(a.returnZero() is int); 39 Expect.isTrue(a.returnZero() is int);
40 Expect.equals(0, a.returnZero()); 40 Expect.equals(0, a.returnZero());
41 } 41 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698