ocaml
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

rename Unbound_lexical_symbol => Unbound_variable

+6 -6
+1 -1
lib/compiler/Eval.ml
··· 572 572 | None -> 573 573 Reporter.fatal 574 574 ?loc 575 - (Unbound_lexical_symbol (x, env)) 575 + (Unbound_variable (x, env)) 576 576 577 577 and focus ?loc = function 578 578 | Clo (rho, xs, body) ->
+4 -4
lib/core/Reporter.ml
··· 42 42 expected: expected_value list 43 43 } 44 44 | Unbound_fluid_symbol of (Symbol.t * Value.t Value.Symbol_map.t) 45 - | Unbound_lexical_symbol of (string * Value.t Value.Env.t) 45 + | Unbound_variable of (string * Value.t Value.Env.t) 46 46 | Unresolved_identifier of ((Sc.data, R.P.tag) Trie.t [@opaque]) * Trie.path 47 47 | Unresolved_xmlns of string 48 48 | Reference_error of URI.t ··· 79 79 | Type_error _ -> Error 80 80 | Type_warning -> Warning 81 81 | Unbound_fluid_symbol _ -> Error 82 - | Unbound_lexical_symbol _ -> Error 82 + | Unbound_variable _ -> Error 83 83 | Unhandled_case -> Bug 84 84 | Transclusion_loop -> Error 85 85 | Internal_error -> Bug ··· 109 109 | Type_warning -> "type_warning" 110 110 | Type_error _ -> "type_error" 111 111 | Unbound_fluid_symbol _ -> "unbound_fluid_symbol" 112 - | Unbound_lexical_symbol _ -> "unbound_lexical_symbol" 112 + | Unbound_variable _ -> "Unbound_variable" 113 113 | Unresolved_xmlns _ -> "unresolved_xmlns" 114 114 | Unresolved_identifier _ -> "unresolved_identifier" 115 115 | Reference_error _ -> "reference_error" ··· 250 250 | Parse_error 251 251 | Type_warning 252 252 | Unbound_fluid_symbol _ 253 - | Unbound_lexical_symbol _ 253 + | Unbound_variable _ 254 254 | Unhandled_case 255 255 | Transclusion_loop 256 256 | Internal_error
+1 -1
lib/core/Reporter.mli
··· 37 37 expected: expected_value list 38 38 } 39 39 | Unbound_fluid_symbol of (Symbol.t * Value.t Value.Symbol_map.t) 40 - | Unbound_lexical_symbol of (string * Value.t Value.Env.t) 40 + | Unbound_variable of (string * Value.t Value.Env.t) 41 41 | Unresolved_identifier of ((Resolver.Scope.data, Resolver.P.tag) Trie.t) * Trie.path 42 42 | Unresolved_xmlns of string 43 43 | Reference_error of URI.t