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

Method dumpStack

ij/src/main/java/ij/macro/Interpreter.java:2077–2087  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

2075 }
2076
2077 void dumpStack() {
2078 IJ.log("");
2079 IJ.log("Stack");
2080 if (stack!=null) {
2081 for (int i=topOfStack; i>=0; i--) {
2082 Variable v = stack[i];
2083 Symbol symbol = v!=null?pgm.table[v.symTabIndex]:null;
2084 IJ.log(i+" "+(symbol!=null?symbol.str:"null")+" "+v);
2085 }
2086 }
2087 }
2088
2089 void finishUp() {
2090 if (batchMacro)

Callers 1

dumpMethod · 0.95

Calls 1

logMethod · 0.95

Tested by

no test coverage detected