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

Side by Side Diff: tests/language/src/NativeClassIsCheck1FrogTest.dart

Issue 8680042: Add tests for is-checks on hidden native classes. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: merge Created 9 years 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
« no previous file with comments | « tests/language/language.status ('k') | tests/language/src/NativeClassIsCheck2FrogTest.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 // BSD-style license that can be found in the LICENSE file.
4
5 // Test for correct simple is-checks on hidden native classes.
6
7 interface I {
8 I read();
9 write(I x);
10 }
11
12 // Native implementation.
13
14 class A implements I native "*A" {
15 // The native class accepts only other native instances.
16 A read() native;
17 write(A x) native;
18 }
19
20 makeA() native;
21
22 void setup() native """
23 // This code is all inside 'setup' and so not accesible from the global scope.
24 function A(){}
25 A.prototype.read = function() { return this._x; };
26 A.prototype.write = function(x) { this._x = x; };
27 """;
28
29 class B {}
30
31 main() {
32 setup();
33
34 var a1 = makeA();
35 var ob = new Object();
36
37 Expect.isFalse(ob is I);
38 Expect.isFalse(ob is A);
39 Expect.isFalse(ob is B);
40
41 Expect.isTrue(a1 is I);
42 Expect.isTrue(a1 is A);
43 Expect.isTrue(a1 is !B);
44 }
OLDNEW
« no previous file with comments | « tests/language/language.status ('k') | tests/language/src/NativeClassIsCheck2FrogTest.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698