MCPcopy Create free account
hub / github.com/AstroImageJ/astroimagej / dumpProgram

Method dumpProgram

ij/src/main/java/ij/macro/Program.java:149–156  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

147 }
148
149 public void dumpProgram() {
150 IJ.log("");
151 IJ.log("Tokenized Program");
152 String str;
153 int token, address;
154 for (int i=0; i<=pc; i++)
155 IJ.log(i+" "+lineNumbers[i]+" "+(code[i]&TOK_MASK)+" "+decodeToken(code[i]));
156 }
157
158 public Variable[] getGlobals() {
159 return globals;

Callers 1

dumpMethod · 0.80

Calls 2

logMethod · 0.95
decodeTokenMethod · 0.95

Tested by

no test coverage detected