Files
sdk/tests/language_2/instance_inline_test.dart
T
Bob Nystrom bd2a7a7993 Migrate 119.
Change-Id: Ie62df46d0fcf745ac45f693abf392040fda9e6c1
Reviewed-on: https://dart-review.googlesource.com/3426
Reviewed-by: Ben Konyi <bkonyi@google.com>
2017-09-07 20:29:15 +00:00

28 lines
909 B
Dart

// 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 "package:expect/expect.dart";
// Test inlining of assignments in parameter passing. If [StringScanner.charAt]
// is inlined, the argument expression `++byteOffset` should not be duplicated.
class StringScanner {
final String string;
int byteOffset = -1;
StringScanner(this.string);
int nextByte() => charAt(++byteOffset);
int charAt(index) => (string.length > index) ? string.codeUnitAt(index) : -1;
}
void main() {
var scanner = new StringScanner('az9');
Expect.equals(0x61, scanner.nextByte()); // Expect a.
Expect.equals(0x7A, scanner.nextByte()); // Expect z.
Expect.equals(0x39, scanner.nextByte()); // Expect 9.
Expect.equals(-1, scanner.nextByte());
}