Remove label from error raising helper
[tiger.ml.git] / compiler / src / lib / tiger / tiger_error.ml
1 module Pos = Tiger_position
2
3 exception T of string
4
5 let exn ~pos msg =
6 let msg = Printf.sprintf "Error: %s. In %s." msg (Pos.to_string pos) in
7 raise (T msg)
This page took 0.049011 seconds and 4 git commands to generate.