//// [collisionArgumentsFunction.ts] // Functions function f1(arguments: number, ...restParameters) { //arguments is error var arguments = 10; // no error } function f12(i: number, ...arguments) { //arguments is error var arguments: any[]; // no error } function f1NoError(arguments: number) { // no error var arguments = 10; // no error } declare function f2(i: number, ...arguments); // no error - no code gen declare function f21(arguments: number, ...rest); // no error - no code gen declare function f2NoError(arguments: number); // no error function f3(...restParameters) { var arguments = 10; // no error } function f3NoError() { var arguments = 10; // no error } function f4(arguments: number, ...rest); // no codegen no error function f4(arguments: string, ...rest); // no codegen no error function f4(arguments: any, ...rest) { // error var arguments: any; // No error } function f42(i: number, ...arguments); // no codegen no error function f42(i: string, ...arguments); // no codegen no error function f42(i: any, ...arguments) { // error var arguments: any[]; // No error } function f4NoError(arguments: number); // no error function f4NoError(arguments: string); // no error function f4NoError(arguments: any) { // no error var arguments: any; // No error } declare function f5(arguments: number, ...rest); // no codegen no error declare function f5(arguments: string, ...rest); // no codegen no error declare function f52(i: number, ...arguments); // no codegen no error declare function f52(i: string, ...arguments); // no codegen no error declare function f6(arguments: number); // no codegen no error declare function f6(arguments: string); // no codegen no error //// [collisionArgumentsFunction.js] // Functions function f1(arguments) { var restParameters = []; for (var _i = 1; _i < arguments.length; _i++) { restParameters[_i - 1] = arguments[_i]; } var arguments = 10; // no error } function f12(i) { var arguments = []; for (var _i = 1; _i < arguments.length; _i++) { arguments[_i - 1] = arguments[_i]; } var arguments; // no error } function f1NoError(arguments) { var arguments = 10; // no error } function f3() { var restParameters = []; for (var _i = 0; _i < arguments.length; _i++) { restParameters[_i - 0] = arguments[_i]; } var arguments = 10; // no error } function f3NoError() { var arguments = 10; // no error } function f4(arguments) { var rest = []; for (var _i = 1; _i < arguments.length; _i++) { rest[_i - 1] = arguments[_i]; } var arguments; // No error } function f42(i) { var arguments = []; for (var _i = 1; _i < arguments.length; _i++) { arguments[_i - 1] = arguments[_i]; } var arguments; // No error } function f4NoError(arguments) { var arguments; // No error }