blob: e2c060f42339b0be486a91ee276e852d8689be71 [file] [log] [blame] [edit]
// 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.
// Formatting can break multitests, so don't format them.
// dart format off
// Basic test of Symbol class.
import 'package:expect/variations.dart';
main() {
var constFiskSymbol;
print(constFiskSymbol = const Symbol('fisk'));
try {
print(const Symbol(0)); //# 01: compile-time error
} on NoSuchMethodError {
print('Caught NoSuchMethodError');
} on TypeError {
print('Caught TypeError');
}
print(const Symbol('0'));
print(const Symbol('_'));
print(new Symbol('0'));
print(new Symbol('_'));
if (!identical(const Symbol('fisk'), constFiskSymbol)) {
throw 'Symbol constant is not canonicalized';
}
if (const Symbol('fisk') != constFiskSymbol) {
throw 'Symbol constant is not equal to itself';
}
if (new Symbol('fisk') != new Symbol('fisk')) {
throw 'new Symbol is not equal to its equivalent';
}
if (new Symbol('fisk') == new Symbol('hest')) {
throw 'unrelated Symbols are equal';
}
if (new Symbol('fisk') == new Object()) {
throw 'unrelated objects are equal';
}
constFiskSymbol.hashCode as int;
new Symbol('fisk').hashCode as int;
if (!minifiedSymbols) {
if (const Symbol('fisk') != new Symbol('fisk')) {
throw 'Symbol constant is not equal to its non-const equivalent';
}
if (new Symbol('fisk').hashCode != constFiskSymbol.hashCode) {
throw "non-const Symbol's hashCode not equal to its const equivalent";
}
if (new Symbol('') != Symbol.empty) {
throw 'empty Symbol not equals to itself';
}
}
}