1# ArkCompiler Subsystem Changelog
2
3## cl.arkcompiler.1 Change in ArkCompiler Internal Implementation
4
5Changed the internal implementation of ArkCompiler.
6
7**Change Since**
8
9OpenHarmony_4.1.6.1
10
11**Reason for Change**
12
13To implement the ECMAScript 2022 class and sendable class features, new bytecodes are required.
14
15**Change Description**
16
17The following bytecodes are added to the class feature:
181. `definefieldbyname`
192. `callruntime.definefieldbyvalue`
203. `callruntime.definefieldbyindex`
214. `callruntime.defineprivateproperty`
225. `callruntime.callinit`
236. `callruntime.createprivateproperty`
247. `callruntime.topropertykey`
258. `ldprivateproperty`
269. `stprivateproperty`
2710. `testin`
28
29The following bytecodes are added to the sendable class:
301. `callruntime.definesendableclass`
312. `callruntime.ldsendableclass`
32
33**Change Impact**
34
35The new bytecodes added in SDK OpenHarmony_4.1.6.1 require support from ROM in the same version. Therefore, earlier ROM in API version 11 cannot run the HAPs built by SDK OpenHarmony_4.1.6.1.
36
37If you are using SDK OpenHarmony_4.1.6.1 and ROM in API version 10, you can set the **compatiableSdkVersion: 10** option from DevEco Studio to build a HAP that can run on the ROM.
38
39**Symptom**
40
41If the SDK and ROM do not match, the following errors may occur:
42
431. jsCrash: `Load file with filename '/data/storage/el1/bundle/entry/ets/module.abc' failed, recordName 'com.example.myapplication/entry/ets/entryability/EntryAbility' not exists` along with hilog: `Unable to open file 'filename' with abc file version 11.0.2.0. Maximum supported abc file version on the current system image is 9.0.0.0. Please upgrade the runtime to supported version or generate byte code with former SDK tools`
44
452. cppCrash: `Unable to open file 'filename' with abc file version 11.0.2.0. Maximum supported abc file version on the current system image is 11.0.1.0. Please upgrade the system image or use former version of SDK tools to generate abc files`
46
47**Solution**
48
49Update the ROM to OpenHarmony_4.1.6.1 or later.
50