ir property

String ir
getter/setter pair

Global LLVM IR code accumulator.

This string accumulates all generated LLVM IR code during the compilation process. Each node appends its generated IR to this global string. The final result contains the complete LLVM IR program.

Implementation

static String ir = "";