Files
sdk/pkg/kernel/testcases/interpreter/print_test.dart
T
Zhivka Gucevska 184cc25766 Add initial tests for Kernel interpreter
Add logging in the Interpreter for:
 - StaticInvocationExpression, including calls to print
 - ReturnStatement
 - IfStatement

BUG=
R=dmitryas@google.com

Review-Url: https://codereview.chromium.org/2841803002 .
2017-05-01 16:12:27 +02:00

16 lines
437 B
Dart

// Copyright (c) 2017, 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.
/// Prints different basic literals.
///
/// The log of this test is used to verify print is evaluated with the correct
/// arguments.
main() {
print('hello');
print(1);
print(true);
print(4.2);
print(null);
}