blob: 70fabe8f5e2163235ad5a95829397d0654b202da [file] [log] [blame]
// Copyright (c) 2012, 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.
#import("compiler_helper.dart");
const String TEST_ONE = r"""
sum(param0, param1) {
var sum = 0;
for (var i = param0; i < param1; i += 1) sum = sum + i;
return sum;
}
""";
main() {
String generated = compile(TEST_ONE, 'sum');
RegExp regexp = new RegExp(getNumberTypeCheck('param0'));
Expect.isTrue(regexp.hasMatch(generated));
regexp = new RegExp(getNumberTypeCheck('param1'));
Expect.isTrue(regexp.hasMatch(generated));
}