author | wenzelm |
Fri, 07 Aug 2015 17:58:12 +0200 | |
changeset 60865 | 4194901fd513 |
parent 60864 | 20cfa048fe7c |
child 60866 | 7f562aa4eb4b |
--- a/src/Pure/ML/exn_properties_dummy.ML Fri Aug 07 16:15:53 2015 +0200 +++ b/src/Pure/ML/exn_properties_dummy.ML Fri Aug 07 17:58:12 2015 +0200 @@ -6,6 +6,7 @@ signature EXN_PROPERTIES = sig + val position_of: 'location -> Position.T val get: exn -> Properties.T val update: Properties.entry list -> exn -> exn end; @@ -13,6 +14,8 @@ structure Exn_Properties: EXN_PROPERTIES = struct +fun position_of _ = Position.none; + fun get _ = []; fun update _ exn = exn;