9406b7b44e
Change-Id: I35d86aec17aa0f6894a6380e4bb5ac7ca3092fac Reviewed-on: https://dart-review.googlesource.com/c/80522 Reviewed-by: Zach Anderson <zra@google.com> Reviewed-by: Régis Crelier <regis@google.com> Commit-Queue: Alexander Markov <alexmarkov@google.com>
24 lines
516 B
Plaintext
24 lines
516 B
Plaintext
library #lib;
|
|
import self as self;
|
|
import "dart:core" as core;
|
|
|
|
[@vm.bytecode=
|
|
Bytecode (version: stable) {
|
|
Entry 0
|
|
CheckStack
|
|
PushConstant CP#0
|
|
PushConstant CP#2
|
|
IndirectStaticCall 1, CP#1
|
|
Drop1
|
|
PushNull
|
|
ReturnTOS
|
|
}
|
|
ConstantPool {
|
|
[0] = String 'Hello, Dart Bytecode!'
|
|
[1] = ArgDesc num-args 1, num-type-args 0, names []
|
|
[2] = StaticICData target 'dart.core::print', arg-desc CP#1
|
|
}
|
|
]static method main() → dynamic {
|
|
core::print("Hello, Dart Bytecode!");
|
|
}
|