blob: f98f39425e56cc11104eeb34e433f0c0bd46e09e [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 Function invocation involves evaluation of the list of actual
/// arguments to the function and binding of the results to the functions
/// formal parameters.
/// arguments:
/// '(' argumentList? ')'
/// ;
/// argumentList:
/// namedArgument (', ' namedArgument)* |
/// expressionList (', ' namedArgument)*
/// ;
/// namedArgument:
/// label expression
/// ;
/// @description Checks that there is no compile-time error when the argument
/// list in a function invocation expression ends with a comma.
/// @author msyabro
func(p1, p2) {}
main() {
func(1, 2, );
}