File tree Expand file tree Collapse file tree 2 files changed +10
-2
lines changed
Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change 2121
2222*)
2323
24- datatype string_src = Direct of string | ViaFile of {proxy_filename : string}
24+ datatype string_src =
25+ Direct of string
26+ | ViaFile of {proxy_filename : string}
27+ | FromSource
28+ (* given the locn and filename (locn can't be unknown or similar;
29+ filename can't be NONE), the desired text is as specified in the
30+ script_text value (see below). *)
31+
2532type script_text = locn.locn * {filename : string option, text : string_src}
2633
2734datatype repl_command = Success of string | Failure of string
Original file line number Diff line number Diff line change @@ -2,7 +2,8 @@ structure ReplCommands :> ReplCommands =
22struct
33
44
5- datatype string_src = Direct of string | ViaFile of {proxy_filename : string}
5+ datatype string_src =
6+ Direct of string | ViaFile of {proxy_filename : string} | FromSource
67type script_text = locn.locn * {filename : string option, text : string_src}
78
89datatype repl_command = Success of string | Failure of string
You can’t perform that action at this time.
0 commit comments