(expr: Expression, options: any = {})
| 102 | } |
| 103 | |
| 104 | compile(expr: Expression, options: any = {}): CompilationResult { |
| 105 | const { BaseCompiler } = require('../../src/compute-engine/compilation/base-compiler'); |
| 106 | const target = this.createTarget(); |
| 107 | const rpnCode = BaseCompiler.compile(expr, target); |
| 108 | |
| 109 | return { |
| 110 | target: 'rpn', |
| 111 | success: true, |
| 112 | code: rpnCode, |
| 113 | }; |
| 114 | } |
| 115 | } |
| 116 | |
| 117 | describe('COMPILATION PLUGIN ARCHITECTURE', () => { |
nothing calls this directly
no test coverage detected