[
Home
]
[ Index:
by date
|
by threads
]
[ Message by date: previous | next ] [ Message in thread: previous | next ] [ Thread: previous | next ]
[ Message by date: previous | next ] [ Message in thread: previous | next ] [ Thread: previous | next ]
| Date: | -- (:) |
| From: | snowfall <marisaquaresma@h...> |
| Subject: | Unbound type constructor |
Hi. I am developing a compiler for a language. I have done the parser, the lexer and the ast. But when I execute the command ocamlc -c parser.mli is shown the error "unbound type constructor abacus_ast.progr". Here is the code of the AST: open Lexing type ident = string ;; ... type progr= ident * (tipo list) * (declaracao_de_variaveis list) * (funcoes list) * (instrucao list) ;; and in the parser I put: % type < Abacus_ast.progr > programa Can anyone tell me what I am doing wrong? Best regards -- View this message in context: http://www.nabble.com/Unbound-type-constructor-tf3647847.html#a10188741 Sent from the Caml Discuss2 mailing list archive at Nabble.com.