blob: 32f84284b027913dd941788497d2dde98ae336ff [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 WHITESPACE:
* ('\t' | ' ' | NEWLINE)+
* ;.
* @description Checks that all of these characters are indeed considered
* whitespace by verifying that all and any of their occurrences within
* grammatical productions are ignored.
* @author rodionov
*/
import "../../../../Utils/expect.dart";
main() {
Expect.
equals(
3, 1
+
2);
}