summaryrefslogtreecommitdiffstats
path: root/third_party/rust/wast/src/wat.rs
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/rust/wast/src/wat.rs')
-rw-r--r--third_party/rust/wast/src/wat.rs8
1 files changed, 8 insertions, 0 deletions
diff --git a/third_party/rust/wast/src/wat.rs b/third_party/rust/wast/src/wat.rs
index 6d9a233359..d4982264fa 100644
--- a/third_party/rust/wast/src/wat.rs
+++ b/third_party/rust/wast/src/wat.rs
@@ -32,6 +32,14 @@ impl Wat<'_> {
Wat::Component(c) => c.encode(),
}
}
+
+ /// Returns the defining span of this file.
+ pub fn span(&self) -> Span {
+ match self {
+ Wat::Module(m) => m.span,
+ Wat::Component(c) => c.span,
+ }
+ }
}
impl<'a> Parse<'a> for Wat<'a> {