d205c37d48
BUG= TEST= Review URL: https://chromiumcodereview.appspot.com//9192007 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@3432 260f80e4-7a28-3924-810f-c04153c831b5
16 lines
445 B
JavaScript
16 lines
445 B
JavaScript
// 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.
|
|
|
|
function native_BoolImplementation_EQ(other) {
|
|
throw Error('UNREACHABLE');
|
|
}
|
|
|
|
function native_BoolImplementation_toString() {
|
|
return this.toString();
|
|
}
|
|
|
|
function native_BoolImplementation_toBool() {
|
|
return this == true;
|
|
}
|