SCM Repository
View of /trunk/src/ast/var.sml
Parent Directory
|
Revision Log
Revision 72 -
(download)
(annotate)
Sat May 22 22:48:47 2010 UTC (10 years, 9 months ago) by jhr
File size: 441 byte(s)
Sat May 22 22:48:47 2010 UTC (10 years, 9 months ago) by jhr
File size: 441 byte(s)
Working on typechecker
(* var.sml * * COPYRIGHT (c) 2010 The Diderot Project (http://diderot.cs.uchicago.edu) * All rights reserved. *) structure Var = struct datatype var = datatype AST.var datatype var_kind = datatype AST.var_kind fun typeOf (V{ty, ...}) = ty fun kindOf (V{kind, ...}) = kind fun new (name, kind, ty) = let val id = Stamp.new() in V{name=Atom.toString name, id=id, kind=kind, ty=([], ty)} end end
root@smlnj-gforge.cs.uchicago.edu | ViewVC Help |
Powered by ViewVC 1.0.0 |