Conflicts: src/Makefile src/backends/packrat.c src/compile.c src/hammer.h src/internal.h src/parsers/action.c src/parsers/and.c src/parsers/attr_bool.c src/parsers/bits.c src/parsers/butnot.c src/parsers/ch.c src/parsers/charset.c src/parsers/choice.c src/parsers/difference.c src/parsers/end.c src/parsers/epsilon.c src/parsers/ignore.c src/parsers/ignoreseq.c src/parsers/indirect.c src/parsers/int_range.c src/parsers/many.c src/parsers/not.c src/parsers/nothing.c src/parsers/optional.c src/parsers/sequence.c src/parsers/token.c src/parsers/unimplemented.c src/parsers/whitespace.c src/parsers/xor.c
36 lines
880 B
C
36 lines
880 B
C
#include "parser_internal.h"
|
|
|
|
static HParseResult* parse_nothing() {
|
|
// not a mistake, this parser always fails
|
|
return NULL;
|
|
}
|
|
|
|
static HCFChoice *desugar_nothing(HAllocator *mm__, void *env) {
|
|
HCFChoice *ret = h_new(HCFChoice, 1);
|
|
ret->type = HCF_CHOICE;
|
|
ret->seq = h_new(HCFSequence*, 1);
|
|
ret->seq[0] = NULL;
|
|
ret->action = NULL;
|
|
return ret;
|
|
}
|
|
|
|
static bool nothing_ctrvm(HRVMProg *prog, void* env) {
|
|
h_rvm_insert_insn(prog, RVM_MATCH, 0x0000);
|
|
h_rvm_insert_insn(prog, RVM_MATCH, 0xFFFF);
|
|
return true;
|
|
}
|
|
|
|
static const HParserVtable nothing_vt = {
|
|
.parse = parse_nothing,
|
|
.isValidRegular = h_true,
|
|
.isValidCF = h_true,
|
|
.desugar = desugar_nothing,
|
|
.compile_to_rvm = nothing_ctrvm,
|
|
};
|
|
|
|
HParser* h_nothing_p() {
|
|
return h_nothing_p__m(&system_allocator);
|
|
}
|
|
HParser* h_nothing_p__m(HAllocator* mm__) {
|
|
return h_new_parser(mm__, ¬hing_vt, NULL);
|
|
}
|