MCPcopy Create free account
hub / github.com/badvision/jace / captureAlphaState

Method captureAlphaState

src/main/java/jace/state/StateManager.java:353–363  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

351 }
352
353 private State captureAlphaState() {
354 State s = new State();
355 s.deltaState = false;
356 allStateVariables.stream().map((node) -> {
357 s.put(node, new StateValue(node));
358 return node;
359 }).forEach((node) -> {
360 node.markClean();
361 });
362 return s;
363 }
364
365 private State captureDeltaState(State tail) {
366 State s = new State();

Callers 1

captureStateMethod · 0.95

Calls 1

markCleanMethod · 0.80

Tested by

no test coverage detected