/src/zeek/src/DbgWatch.cc
Line | Count | Source (jump to first uncovered line) |
1 | | // See the file "COPYING" in the main distribution directory for copyright. |
2 | | |
3 | | // Implementation of watches |
4 | | |
5 | | #include "zeek/DbgWatch.h" |
6 | | |
7 | | #include "zeek/Debug.h" |
8 | | #include "zeek/Reporter.h" |
9 | | |
10 | | namespace zeek::detail { |
11 | | |
12 | | // Support classes |
13 | 0 | DbgWatch::DbgWatch(zeek::Obj* var_to_watch) { reporter->InternalError("DbgWatch unimplemented"); } |
14 | | |
15 | 0 | DbgWatch::DbgWatch(Expr* expr_to_watch) { reporter->InternalError("DbgWatch unimplemented"); } |
16 | | |
17 | | } // namespace zeek::detail |