MCPcopy Create free account
hub / github.com/dynjs/dynjs / add

Method add

src/main/java/org/dynjs/ir/IRByteCodeCompiler.java:351–355  ·  view source on GitHub ↗
(Object a, Object b)

Source from the content-addressed store, hash-verified

349 }
350
351 public static Object add(Object a, Object b) {
352 Long la = a instanceof Long ? (Long) a : new Long(((Integer) a).longValue());
353 Long lb = b instanceof Long ? (Long) b : new Long(((Integer) b).longValue());
354 return la + lb;
355 }
356
357 public static Object sub(Object a, Object b) {
358 Long la = a instanceof Long ? (Long) a : new Long(((Integer) a).longValue());

Callers 11

addInstructionMethod · 0.45
prepareIPCsMethod · 0.45
addUsedVariablesMethod · 0.45
linearizeInnerMethod · 0.45
addInstrMethod · 0.45
buildMethod · 0.45
addEdgeMethod · 0.45
optimizeMethod · 0.45
addBBMethod · 0.45
addNestedRegionMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected