blob: a46a5d6232ffa537efa8de5f9d20597582f6d62a [file] [log] [blame]
/*
* 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.
*/
/**
* @assertion Compiling a part directive of the form part s; causes the Dart system to
* attempt to compile the contents of the URI that is the value of s. The top-level
* declarations at that URI are then compiled by the Dart compiler in the scope of
* the current library.
* A compilation unit is a sequence of top level declarations.
* @description Checks that more than one part can be included in a library without
* errors as long as there're no name conflicts.
* @author rodionov
* @reviewer kaigorodov
*/
library Parts_test_lib;
import "../../Utils/expect.dart";
part "3_Part_0.dart";
part "3_Part_3.dart";
main() {
// get/set
value = bar;
Expect.equals(1, value);
value = false;
Expect.equals(false, value);
value = foo;
Expect.equals("foo", value);
value = [1,2,3,4];
Expect.listEquals([1,2,3,4], value);
// variables
Expect.isTrue("foo" == foo);
Expect.isTrue(1 == bar);
// class
A a = new A();
Expect.isTrue(a is A);
}