diff options
Diffstat (limited to 'lib/syntax/S.ml')
-rw-r--r-- | lib/syntax/S.ml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/syntax/S.ml b/lib/syntax/S.ml index e6c472d..6cab8c9 100644 --- a/lib/syntax/S.ml +++ b/lib/syntax/S.ml @@ -95,10 +95,10 @@ module type Instruction = sig end module type Location = sig - type repr + type t type instruction - val location : pos -> instruction list -> repr + val location : pos -> instruction list -> t repr end module type Analyzer = sig |