Function
getBranchTypeName
(branchType: NativeCompilerBuilderBranchType)
Source from the content-addressed store, hash-verified
| 81 | } |
| 82 | |
| 83 | function getBranchTypeName(branchType: NativeCompilerBuilderBranchType): string { |
| 84 | switch (branchType) { |
| 85 | case NativeCompilerBuilderBranchType.Truthy: |
| 86 | return 'branch'; |
| 87 | case NativeCompilerBuilderBranchType.NotUndefinedOrNull: |
| 88 | return 'nullable_branch'; |
| 89 | } |
| 90 | } |
| 91 | |
| 92 | function variableToString(variable: NativeCompilerBuilderVariableID): string { |
| 93 | return variable.variable.toString(); |
Tested by
no test coverage detected