Skip to content

Commit 1e3ace5

Browse files
committed
Implement a bytecode-level analysis for compile time constant expressions.
1 parent 8d2a007 commit 1e3ace5

File tree

4 files changed

+1002
-0
lines changed

4 files changed

+1002
-0
lines changed

substratevm/src/com.oracle.graal.pointsto/src/com/oracle/graal/pointsto/infrastructure/WrappedConstantPool.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -218,4 +218,8 @@ public List<JavaConstant> getStaticArguments() {
218218
return wrapped.getStaticArguments().stream().map(WrappedConstantPool.this::lookupConstant).collect(Collectors.toList());
219219
}
220220
}
221+
222+
public ConstantPool getWrapped() {
223+
return wrapped;
224+
}
221225
}

0 commit comments

Comments
 (0)