summaryrefslogtreecommitdiff
path: root/cli/msg.fbs
diff options
context:
space:
mode:
authorKitson Kelly <me@kitsonkelly.com>2019-07-29 19:11:08 +1000
committerRyan Dahl <ry@tinyclouds.org>2019-07-29 09:11:08 +0000
commit5083f5fd908057cbc8649b79c13ab78a7f7ebf34 (patch)
treed0336672fd7760593695b2e0d351c401ed1d8c02 /cli/msg.fbs
parentff96e3dc637974c6f9853f3bf9565bfd63f22b17 (diff)
Remap stack traces of unthrown errors. (#2693)
Diffstat (limited to 'cli/msg.fbs')
-rw-r--r--cli/msg.fbs7
1 files changed, 7 insertions, 0 deletions
diff --git a/cli/msg.fbs b/cli/msg.fbs
index 2ab776ef3..014bfb7e9 100644
--- a/cli/msg.fbs
+++ b/cli/msg.fbs
@@ -1,5 +1,6 @@
union Any {
Accept,
+ ApplySourceMap,
Cache,
Chdir,
Chmod,
@@ -257,6 +258,12 @@ table FetchSourceFileRes {
data: [ubyte];
}
+table ApplySourceMap {
+ filename: string;
+ line: int;
+ column: int;
+}
+
table Cache {
extension: string;
module_id: string;