blob: 81aa9005549d7bcb8b9e80ce8d59650d23ee5ce5 [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 switch statement supports dispatching control among a large
/// number of cases.
/// switchStatement:
/// switch '(' expression ')' '{' switchCase* defaultCase? '}'
/// ;
/// switchCase:
/// label* case expression ':' statements
/// ;
/// defaultCase:
/// label* default ':' statements
/// ;
/// @description Checks that it is a compile-time error if the opening bracket
/// of the switch expression is missing.
/// @author vasya
switchTest(value) {
var result;
switch value) {
// ^
// [analyzer] unspecified
// [cfe] unspecified
case 0: result = 0; break;
// ^
// [analyzer] unspecified
// [cfe] unspecified
default: result = -1;
// ^
// [analyzer] unspecified
// [cfe] unspecified
}
return result;
}
main() {}