MCPcopy Create free account
hub / github.com/SeaOfNodes/Simple / unkeep

Method unkeep

chapter24/src/main/java/com/seaofnodes/simple/node/Node.java:290–291  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

288 public <N extends Node> N keep() { addUse(null); return (N)this; }
289 // Remove bogus null.
290 @SuppressWarnings("unchecked")
291 public <N extends Node> N unkeep() { delUse(null); return (N)this; }
292 // Test "keep" status
293 public boolean iskeep() { return _outputs.find(null) != -1; }
294 public void unkill() {

Callers 15

parseBlockMethod · 0.95
parseLoopingMethod · 0.95
parseTrinaryMethod · 0.95
parseAsgnMethod · 0.95
parseEqualityMethod · 0.95
parseComparisonMethod · 0.95
parsePrimaryMethod · 0.95
newStructMethod · 0.95
parsePostfixNameMethod · 0.95
zsMaskMethod · 0.95
functionCallMethod · 0.95
unkillMethod · 0.95

Calls 1

delUseMethod · 0.95

Tested by

no test coverage detected