class FalseKeywordCodeGenerator implements SyntaxCodeGenerator<ts.BooleanLiteral, Primitive> {
    syntaxKind = ts.SyntaxKind.FalseKeyword;

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