Files
sdk/tests/language/is_object_test.dart
T
srdjan@google.com 92eb96c913 Fix issue 2939, revert previous change that accepted null as excpetion objects:
throw null throws NullPointerException as per latest spec.
Review URL: https://chromiumcodereview.appspot.com//10392016

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@7475 260f80e4-7a28-3924-810f-c04153c831b5
2012-05-09 22:27:12 +00:00

46 lines
1.2 KiB
Dart

// Copyright (c) 2011, 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.
// Dart test program for the "is" type test operator.
testTryCatch(x) {
try {
throw x;
Expect.fail("Exception '$x' should've been thrown");
} catch (Object obj) {
Expect.equals(obj, x);
}
}
main() {
var evalCount = 0;
testEval(x) { evalCount++; return x; }
// Test that types that match JS primitive types compare correctly to Object
var x = 1;
Expect.isTrue(x is Object);
x = 'hi';
Expect.isTrue(x is Object);
x = true;
Expect.isTrue(x is Object);
x = null;
Expect.isTrue(x is Object);
var y;
Expect.isTrue(y is Object);
// Verify that operand is evaluated
Expect.isTrue(testEval(123) is Object);
Expect.equals(1, evalCount);
Expect.isTrue(testEval('world') is Object);
Expect.equals(2, evalCount);
Expect.isTrue(testEval(false) is Object);
Expect.equals(3, evalCount);
Expect.isTrue(testEval(null) is Object);
Expect.equals(4, evalCount);
// Verify that these objects are catchable
testTryCatch(444);
testTryCatch('abc');
testTryCatch(true);
}