summaryrefslogtreecommitdiff
path: root/Source/Forro/Resolver.fs
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Forro/Resolver.fs')
-rw-r--r--Source/Forro/Resolver.fs3
1 files changed, 0 insertions, 3 deletions
diff --git a/Source/Forro/Resolver.fs b/Source/Forro/Resolver.fs
index 9844c24b..f227a5ca 100644
--- a/Source/Forro/Resolver.fs
+++ b/Source/Forro/Resolver.fs
@@ -8,9 +8,6 @@ exception ResolutionError of string
let ResolutionError(s: string) =
raise (ResolutionError s)
-let VarName v =
- match v with Var(x) -> x
-
type VarKind = InParam | OutParam | Local
type Context(procedures: Collections.Generic.IDictionary<string,Procedure>) =