summaryrefslogtreecommitdiff
path: root/examples/program_analysis/paper_demos/fish.txt
diff options
context:
space:
mode:
Diffstat (limited to 'examples/program_analysis/paper_demos/fish.txt')
-rw-r--r--examples/program_analysis/paper_demos/fish.txt13
1 files changed, 13 insertions, 0 deletions
diff --git a/examples/program_analysis/paper_demos/fish.txt b/examples/program_analysis/paper_demos/fish.txt
new file mode 100644
index 0000000..2b933f0
--- /dev/null
+++ b/examples/program_analysis/paper_demos/fish.txt
@@ -0,0 +1,13 @@
+int builtin_cd(parser_t &parser, io_streams_t &streams, wchar_t **argv) { /*@\color{red}{//F1} @*/
+ const wchar_t *cmd = argv[0];
+ int argc = builtin_count_args(argv);
+...
+
+static const builtin_data_t builtin_datas[] = {
+...
+ {L"cd", &builtin_cd, ...}, /*@\color{red}{//F2} @*/
+...
+
+static const builtin_data_t *builtin_lookup(const wcstring &name) { /*@\color{red}{//F3} @*/
+ const builtin_data_t *array_end = builtin_datas + BUILTIN_COUNT;
+...
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback