blob: ae755b90109da2f2bb19023cae3ec6d6362a4b11 [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 The for statement supports iteration.
/// forStatement:
/// await? for '(' forLoopParts ')' statement
/// ;
/// forLoopParts:
/// forInitializerStatement expression? ';' expressionList? |
/// declaredIdentifier in expression |
/// identifier in expression
/// ;
/// forInitializerStatement:
/// localVariableDeclaration |
/// expression? ';'
/// ;
/// @description Checks that it is a compile-time error if the loop parts are
/// not separated by semicolons.
/// @author vasya
main() {
for (var i = 0 i < 1 ++i) { }
// ^
// [analyzer] unspecified
// [cfe] unspecified
}