Skip to content

Commit

Permalink
Use Core to get types and improve performance
Browse files Browse the repository at this point in the history
  • Loading branch information
mmhelloworld committed Aug 12, 2024
1 parent 4da5129 commit e32acb3
Show file tree
Hide file tree
Showing 14 changed files with 3,422 additions and 3,122 deletions.
3 changes: 3 additions & 0 deletions .github/linters/.yaml-lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
rules:
line-length: disable
document-start: disable
2 changes: 1 addition & 1 deletion .github/workflows/install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:
env:
IDRIS2_TESTS_CG: jvm
ACTIONS_ALLOW_UNSECURE_COMMANDS: true
PREVIOUS_VERSION: 0.6.0.11
PREVIOUS_VERSION: 0.7.0

jobs:
ubuntu-build:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pre-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
env:
IDRIS2_TESTS_CG: jvm
ACTIONS_ALLOW_UNSECURE_COMMANDS: true
PREVIOUS_VERSION: 0.6.0.11
PREVIOUS_VERSION: 0.7.0

jobs:
pre-release:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ on:
env:
IDRIS2_TESTS_CG: jvm
ACTIONS_ALLOW_UNSECURE_COMMANDS: true
PREVIOUS_VERSION: 0.6.0.11
PREVIOUS_VERSION: 0.7.0

jobs:
release:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -475,7 +475,9 @@ public void castore() {
}

public void checkcast(String desc) {
mv.visitTypeInsn(CHECKCAST, desc);
if (!desc.equals("java/lang/Object")) {
mv.visitTypeInsn(CHECKCAST, desc);
}
}

public void classCodeStart(int version,
Expand Down
Loading

0 comments on commit e32acb3

Please sign in to comment.