diff options
Diffstat (limited to 'src/comp/util')
| -rw-r--r-- | src/comp/util/common.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/comp/util/common.rs b/src/comp/util/common.rs index 7b0ffd5b..51dbfbb1 100644 --- a/src/comp/util/common.rs +++ b/src/comp/util/common.rs @@ -3,6 +3,7 @@ import std._int; type pos = rec(uint line, uint col); type span = rec(str filename, pos lo, pos hi); +type spanned[T] = rec(T node, span span); // FIXME: import std.util.option and use it here. // import std.util.option; |