mirror of
https://github.com/openharmony/ark_js_runtime.git
synced 2026-08-27 02:31:17 -04:00
9dd88414c1
bc: LDFUNCTION_PREF、STSUPERBYVALUE_PREF_V8_V8、LDSUPERBYVALUE_PREF_V8_V8、STCONSTTOGLOBALRECORD_PREF_ID32、STGLOBALVAR_PREF_ID32、DIV2DYN_PREF_V8 MOD2DYN_PREF_V8 EQDYN_PREF_V8 NOTEQDYN_PREF_V8 LESSDYN_PREF_V8 LESSEQDYN_PREF_V8 GREATERDYN_PREF_V8 GREATEREQDYN_PREF_V8 MUL2DYN_PREF_V8 SUB2DYN_PREF_V8 add bc lowering test isssue:https://gitee.com/openharmony/ark_js_runtime/issues/I553HC?from=project-issue Signed-off-by: songzhengchao <songzhengchao@huawei.com> Change-Id: Ibf7a1be6212e12ac81db2c30a0f687d92dee3b6f
26 lines
830 B
TypeScript
26 lines
830 B
TypeScript
/*
|
|
* Copyright (c) 2022 Huawei Device Co., Ltd.
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
"use strict"
|
|
declare function print(str:any):number;
|
|
|
|
function* generator() {
|
|
print("start ");
|
|
yield 0;
|
|
print(" supsend ");
|
|
yield 1;
|
|
print(" stop ");
|
|
}
|
|
|
|
const iterator = generator(); |