| 109 | CodeExpr operator ()(int i, int j) { return CodeExpr( S() + '(' + ToLiteral(i) + ',' + ToLiteral(j) + ')' ); } |
| 110 | CodeExpr Func(string s) { return CodeExpr( s + "(" + S() + ")" ); } |
| 111 | CodeExpr Call(string s, string args="") { return CodeExpr( S()+'.'+ s + "(" + args + ")"); } |
| 112 | string Assign (CodeExpr other, bool declare = true) |
| 113 | { |
| 114 | string result; |
no test coverage detected