MCPcopy Create free account
hub / github.com/LFYSec/MScan / VoidType

Enum VoidType

src/main/java/pascal/taie/language/type/VoidType.java:25–38  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

23package pascal.taie.language.type;
24
25public enum VoidType implements Type {
26
27 VOID;
28
29 @Override
30 public String getName() {
31 return "void";
32 }
33
34 @Override
35 public String toString() {
36 return getName();
37 }
38}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected