blob: b6e7a9079cbd8299e304671cff3f986c29cd3b3a [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
* partHeader:
* metadata part of identifier (`.' identifier)* `;'
* ;
* partDeclaration:
* partHeader topLevelDefinition* EOF
* ;
* A part header begins with part of followed by the name of the library the
* part belongs to. A part declaration consists of a part header followed by a
* sequence of top-level declarations.
* It is a compile-time error if the contents of the URI are not a
* valid part declaration.
* @description Checks that including a compilation unit with valid topLevelDefinitions
* does not cause any compile-time errors.
* @author rodionov
* @reviewer kaigorodov
*/
library Parts_test_lib;
import "../../Utils/expect.dart";
part "3_Part_2.dart";
main() {
Expect.equals(null, foo());
Expect.equals(3, bar(1,2));
Expect.equals(13, bar(7,6));
Expect.equals(33, bar(11,22));
Expect.listEquals([], list(0));
Expect.listEquals(new List(101), list(101));
Expect.listEquals(new List(1000), list(1000));
//function alias
func ff = (bool b, [String s]) {};
// get/set
value = 1;
Expect.equals(1, value);
value = false;
Expect.equals(false, value);
value = "foo";
Expect.equals("foo", value);
value = foo();
Expect.equals(null, value);
value = [1,2,3,4];
Expect.listEquals([1,2,3,4], value);
// variables
Expect.equals(-100, i);
Expect.equals(false, b);
Expect.equals("string", s);
Expect.equals(const [0,1,2,3], l);
Expect.equals(const {'a': 1, 'b': 2}, m);
Expect.equals("OneTwo", e);
// class
A a = new A();
Expect.equals("A.FOO", A.FOO);
Expect.equals("a.foo()", a.foo());
Expect.equals("a.bar", a.bar);
a.value = "a.value";
Expect.equals("a.value", a.value);
}