logtalk_compile/1


Description

logtalk_compile(Entities)

Compiles to disk a list of entities (objects, protocols, or categories) using the default compiler options specified in the Logtalk configuration file. The Logtalk file name extension (by default, .lgt) should be omitted. Note that the argument is a list of entity/file names, not file paths. In other words, the files must exist in your current working directory.

Note that only the errors related to problems in the predicate argument are listed below. Other exceptions may be thrown by the compiler if any of the compiled entities contain errors.

Template and modes

logtalk_compile(+atom_list)

Errors

Entities is a variable:
instantiation_error
Entities is neither a variable nor a proper list:
type_error(list, Entities)
One of the entities is not an atom:
type_error(atom, Entity)
One of the entities does not exist in the current working directory:
existence_error(entity, Entity)

Examples

| ?- logtalk_compile([tree]).

| ?- logtalk_compile([listp, list]).

Previous | Next | Table of Contents | Bibliography | Glossary

Last updated on: July 29, 2002