You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
position := {line: int; col: int}
range := {begin: position; end: position}
// A source location is either in the implementation of LVCA itself or a term
source_location :=
| Implementation{filename: string; range}
| Term(term)
// A term is either computed from others or written directly
provenance :=
| Computed{from: list term; at: source_location}
| Located{at: source_location}
Create new provenance type that summarizes where a value was evaluated.
The text was updated successfully, but these errors were encountered: