Skip to content
This repository has been archived by the owner on May 25, 2022. It is now read-only.

Commit

Permalink
fix(bytecode): fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
phodal committed Mar 29, 2022
1 parent e96f30f commit b4d7a81
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ class ByteCodeParser {
ds.Type = if (isInterface) DataStructType.INTERFACE else DataStructType.CLASS;

// todo: add modifiers to Chapi
createModifiers(node.access, FIELD_ALLOWED, isInterface, FIELD_EXCLUDED)
createModifiers(node.access, CLASS_ALLOWED, isInterface, CLASS_EXCLUDED)

node.methods.forEach {
ds.Functions += this.createFunction(it)
Expand Down

0 comments on commit b4d7a81

Please sign in to comment.