MCPcopy Create free account
hub / github.com/capstone-engine/capstone / read

Method read

bindings/java/capstone/Sparc.java:37–46  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

35 public OpValue value;
36
37 public void read() {
38 readField("type");
39 if (type == SPARC_OP_MEM)
40 value.setType(MemType.class);
41 if (type == SPARC_OP_IMM || type == SPARC_OP_REG)
42 value.setType(Integer.TYPE);
43 if (type == SPARC_OP_INVALID)
44 return;
45 readField("value");
46 }
47
48 @Override
49 public List getFieldOrder() {

Callers

nothing calls this directly

Calls 1

setTypeMethod · 0.80

Tested by

no test coverage detected