MCPcopy Index your code
hub / github.com/clojure/clojure / emitUnboxed

Method emitUnboxed

src/jvm/clojure/lang/Compiler.java:2435–2442  ·  view source on GitHub ↗
(C context, ObjExpr objx, GeneratorAdapter gen)

Source from the content-addressed store, hash-verified

2433 }
2434
2435 public void emitUnboxed(C context, ObjExpr objx, GeneratorAdapter gen){
2436 if(n instanceof Integer)
2437 gen.push(n.longValue());
2438 else if(n instanceof Double)
2439 gen.push(n.doubleValue());
2440 else if(n instanceof Long)
2441 gen.push(n.longValue());
2442 }
2443
2444 static public Expr parse(Number form){
2445 if(form instanceof Integer

Callers

nothing calls this directly

Calls 3

pushMethod · 0.45
longValueMethod · 0.45
doubleValueMethod · 0.45

Tested by

no test coverage detected