diff options
author | Nadrieril | 2020-02-02 17:49:49 +0000 |
---|---|---|
committer | Nadrieril | 2020-02-02 17:49:49 +0000 |
commit | b6625eccbf3f2d1bcfe1a88f4d556439281e91de (patch) | |
tree | 5ce5357114855d828aad5a6ba394e2b75334c5d0 /dhall/src/semantics/nze | |
parent | 4f98c23963e82eaf08c9d7291d0988d13571d337 (diff) |
Use Spans consistently by value
Diffstat (limited to 'dhall/src/semantics/nze')
-rw-r--r-- | dhall/src/semantics/nze/value.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/dhall/src/semantics/nze/value.rs b/dhall/src/semantics/nze/value.rs index d97b8c4..1143781 100644 --- a/dhall/src/semantics/nze/value.rs +++ b/dhall/src/semantics/nze/value.rs @@ -174,9 +174,9 @@ impl Value { _ => None, } } - pub(crate) fn span(&self) -> Span { - self.0.span.clone() - } + // pub(crate) fn span(&self) -> Span { + // self.0.span.clone() + // } /// This is what you want if you want to pattern-match on the value. /// WARNING: drop this ref before normalizing the same value or you will run into BorrowMut |