├── tests ├── empty.txt ├── text.txt ├── incl.error.txt ├── override-empty.html ├── subdir │ ├── head.html │ ├── include_test_fail.html │ └── include_test_success.html ├── teng.no-print-escape.conf ├── dict.cs.txt ├── dict.en.txt ├── teng.debug.conf ├── override-one.html ├── base.html ├── override-two.html ├── override-super.html ├── teng.conf ├── base-nested-define.html ├── override-define.html ├── dict.txt ├── fuzz.cc └── utils.h ├── debian ├── compat ├── rules └── control ├── gdb-pretty-printers └── __init__.py ├── .gitignore ├── subprojects └── catch2-with-main.wrap ├── meson.options ├── README.md ├── fuzzer-coverage.sh ├── src ├── debug.h ├── aux.h ├── stringview.cc ├── hex.h ├── cache.cc ├── function.h ├── program.cc ├── semanticregex.h ├── fp.h ├── semantictern.h ├── aux.cc ├── semanticquery.h ├── parserfrag.cc ├── platform.h ├── jsonutils.h ├── util.h ├── position.cc ├── filestream.h ├── semantic.cc ├── semanticfrag.h ├── sourcelist.cc ├── semanticprint.h ├── utf8.h ├── semanticother.h ├── semantictern.cc ├── udf.cc ├── semantic.h ├── openframesapi.h ├── semanticexpr.h ├── semanticif.h ├── fragmentlist.cc ├── semanticblock.h ├── parserdiag.h ├── hex.cc ├── semanticregex.cc ├── sourcelist.h ├── logging.cc ├── logging.h ├── processor.h ├── semanticinheritance.h ├── filesystem.cc ├── yystype.cc ├── writer.cc ├── formatter.h ├── configuration.h ├── fragment.cc ├── functionutil.h ├── semanticquery.cc ├── function.cc ├── util.cc ├── functionother.h ├── semanticcase.cc ├── semanticother.cc ├── flexhelpers.h ├── instructionpointer.h └── dictionary.h ├── include └── teng │ ├── structs.h │ ├── types.h │ ├── config.h.in │ ├── udf.h │ ├── filesystem.h │ ├── stringify.h │ └── counted_ptr.h └── fuzzer-dict.txt /tests/empty.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 12 2 | -------------------------------------------------------------------------------- /gdb-pretty-printers/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/text.txt: -------------------------------------------------------------------------------- 1 | some text ${var} 2 | -------------------------------------------------------------------------------- /tests/incl.error.txt: -------------------------------------------------------------------------------- 1 | some 2 | ${missing} 3 | text 4 | -------------------------------------------------------------------------------- /tests/override-empty.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/subdir/head.html: -------------------------------------------------------------------------------- 1 |