blob: fbe503243032d910757c0ebeda7f431c7b248931 [file] [log] [blame]
#! scripts tag
/*
* 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 A script is a library whose exported namespace includes a
* top-level function main().
*
* libraryDefinition:
* scriptTag? libraryName? libraryImport* partDirective* topLevelDefinition*
* ;
* @description Checks that a script is parsed without errors
* if all allowed directives are present and in the correct order.
* @author vasya
* @reviewer rodionov
* @reviewer msyabro
* @static-warning library name doesn't match that referenced by an included part
*/
library Library_with_all_directives;
export "4_Library1.dart";
import '4_Library1.dart';
import '4_Library2.dart';
export "4_Library2.dart";
part "3_Part_0.dart";
part "3_Part_3.dart";
main() {
}