class TrueKeywordCodeGenerator implements SyntaxCodeGenerator<ts.BooleanLiteral, Primitive> {
    syntaxKind = ts.SyntaxKind.TrueKeyword;

    generate(node: ts.BooleanLiteral, context: CodeGenerationContext): Primitive {
        return Primitive.true(context, context.typeChecker.getTypeAtLocation(node));