* Creates a numeric literal for the provided instruction.
(instruction)
| 103786 | * Creates a numeric literal for the provided instruction. |
| 103787 | */ |
| 103788 | function createInstruction(instruction) { |
| 103789 | var literal = factory.createNumericLiteral(instruction); |
| 103790 | ts.addSyntheticTrailingComment(literal, 3 /* SyntaxKind.MultiLineCommentTrivia */, getInstructionName(instruction)); |
| 103791 | return literal; |
| 103792 | } |
| 103793 | /** |
| 103794 | * Creates a statement that can be used indicate a Break operation to the provided label. |
| 103795 | * |
no test coverage detected