summary refs log tree commit diff stats
path: root/rod/tigen.nim
diff options
context:
space:
mode:
Diffstat (limited to 'rod/tigen.nim')
-rw-r--r--rod/tigen.nim33
1 files changed, 0 insertions, 33 deletions
diff --git a/rod/tigen.nim b/rod/tigen.nim
deleted file mode 100644
index ef13fe42b..000000000
--- a/rod/tigen.nim
+++ /dev/null
@@ -1,33 +0,0 @@
-#
-#
-#           The Nimrod Compiler
-#        (c) Copyright 2008 Andreas Rumpf
-#
-#    See the file "copying.txt", included in this
-#    distribution, for details about the copyright.
-#
-
-# Type information generator. It transforms types into the AST of walker
-# procs. This is used by the code generators.
-
-import 
-  ast, astalgo, strutils, nhashes, trees, treetab, platform, magicsys, options, 
-  msgs, crc, idents, lists, types, rnimsyn
-
-proc gcWalker*(t: PType): PNode
-proc initWalker*(t: PType): PNode
-proc asgnWalker*(t: PType): PNode
-proc reprWalker*(t: PType): PNode
-# implementation
-
-proc gcWalker(t: PType): PNode = 
-  nil
-
-proc initWalker(t: PType): PNode = 
-  nil
-
-proc asgnWalker(t: PType): PNode = 
-  nil
-
-proc reprWalker(t: PType): PNode = 
-  nil