Chapter 29: Compiler messages
This chapter lists the messages produced by the Aldor compiler.
Each message has a name and text. For example, one message
has the name ``ALDOR_E_TinOpMeans'' and the text
``Operator has %d possible types.''
The name of this message has four parts:
ALDOR | indicates this message is for the Aldor compiler, |
E | indicates this is an error message, |
Tin | indicates the message arises in type inference, |
OpMeans | identifies the particular message. |
F | fatal errors --- compiler stops |
E | soft errors --- compiler keeps going |
W | warnings |
R | remarks |
H | help |
M | interactive loop messages |
N | notes --- cross references to other source lines |
D | details for another message |
P | punctuation |
ALDOR_H_HelpCmd | ALDOR_H_HelpFileTypes |
ALDOR_H_HelpOptionSummary | ALDOR_H_HelpHelpOpt |
ALDOR_H_HelpArgOpt | ALDOR_H_HelpDirOpt |
ALDOR_H_HelpFileOpt | ALDOR_H_HelpGoOpt |
ALDOR_H_HelpOptimOpt | ALDOR_H_HelpDebugOpt |
ALDOR_H_HelpCOpt | ALDOR_H_HelpLispOpt |
ALDOR_H_HelpMsgOpt | ALDOR_H_HelpDevOpt |
ALDOR_H_HelpMenuPointer |
ALDOR_E_ExplicitMsg | %s |
ALDOR_N_ExplicitMsg | %s |
ALDOR_N_Here | |
ALDOR_F_CmdBadOption | Improper use of `%s' option. Type `%s -help' for help. |
ALDOR_F_CmdNoOption | `%s' is not an option. Type `%s -help' for help. |
ALDOR_F_CmdCantUseEntry | Could not use file `%s' as the main file. |
ALDOR_F_CmdNoOutputDir | The specified output directory does not exist. |
ALDOR_W_CmdFunnyEntry | Bogus main file name `%s' ignored. |
ALDOR_F_MsgTooManyErrors | Too many errors (use `-M emax=n' or `-M no-emax' to change the limit). |
ALDOR_R_MsgCountMessages | This file had %d errors, %d warnings and %d remarks. |
ALDOR_R_MsgAdviseDetails | Use `aldor -M<n>' to get more or less detail. |
ALDOR_R_MsgCondolences | Sorry, your file did not compile. |
ALDOR_R_MsgCongratulations | Congratulations, your file compiled!! |
ALDOR_P_MsgTagRemark | (Remark) |
ALDOR_P_MsgTagWarning | (Warning) |
ALDOR_P_MsgTagError | (Error) |
ALDOR_P_MsgTagFatal | (Fatal Error) |
ALDOR_P_MsgTagNote | (Note %d) |
ALDOR_P_MsgPreview | (Message Preview) |
ALDOR_P_MsgAfterMacEx | (After Macro Expansion) |
ALDOR_P_MsgExpandedExpr | Expanded expression was: |
ALDOR_P_MsgSposFileLine | "%s", line %d: |
ALDOR_P_MsgSposLineChar | [L%d C%d] |
ALDOR_P_MsgNote | Note %d |
ALDOR_P_MsgSeeNote | (see %s) |
ALDOR_P_MsgCfNote | (cf. L%d C%d) |
ALDOR_P_MsgCfFarNote | (cf. "%s" L%d C%d) |
ALDOR_P_MsgConjunction | and |
ALDOR_E_InclBadUnassert | Unassert: property unknown: `%s'. |
ALDOR_E_InclIfEof | End of file encountered in `#if'. |
ALDOR_E_InclInfinite | Circular include files: %s. |
ALDOR_E_InclUnbalElse | Unbalanced `#else'. |
ALDOR_E_InclUnbalElseif | Unbalanced `#elseif'. |
ALDOR_E_InclUnbalEndif | Unbalanced `#endif'. |
ALDOR_E_SysCmdBad | Improper use of `%s' system command. |
ALDOR_W_SysCmdUnknown | Unknown system command. |
ALDOR_E_ScanBadAftRad | Improper number (after radix specification). |
ALDOR_E_ScanBadChar | Bad character in input. |
ALDOR_E_ScanBadExpon | Improper number (no digits in exponent). |
ALDOR_E_ScanNoDigits | Improper number (no digits). |
ALDOR_E_ScanOpenString | String not closed. |
ALDOR_E_NormMacDecl | Macros must not be given return types. |
ALDOR_E_NormMacBadBody | Improper body in `macro' statement. |
ALDOR_W_NormNoId | Couldn't find identifier for documentation |
ALDOR_E_MacBadDefn | Improper form for macro definition. |
ALDOR_E_MacBadParam | Improper macro parameter (should be an identifier). |
ALDOR_E_MacBadParamDecl | Macro parameters must not have type declarations. |
ALDOR_E_MacBadArgc | Macro used with incorrect number of arguments. |
ALDOR_E_MacBadArg | Macro cannot match the given argument. |
ALDOR_E_MacInfinite | Circular macro expansion: %s. |
ALDOR_F_SyntaxOverflow | Parser stack overflow (in state %d). |
ALDOR_E_SyntaxError | Syntax error. |
ALDOR_E_SyntaxErrorDebug | Syntax error (in state %d). |
ALDOR_E_SyntaxErrorHuh | %s. |
ALDOR_E_SyntaxNoRecovery | Cannot recover from earlier syntax errors. |
ALDOR_E_LinUnbalanced | Unbalanced `%s' -- missing `%s'. |
ALDOR_W_LinUnbalanced | Unbalanced `%s' -- missing `%s'. |
ALDOR_F_LoadNotAbSyn | This is not an abstract syntax operator. |
ALDOR_F_LoadNotFoam | This is not a Foam operator. |
ALDOR_F_LoadNotList | Expecting a (parenthesized) list here. |
ALDOR_F_LoadNotUnary | Expecting exactly one argument. |
ALDOR_F_LoadNotString | Expecting a "quoted" string here. |
ALDOR_F_LoadNotSymbol | Expecting a symbol here. |
ALDOR_F_LoadNotInteger | Expecting an integer. |
ALDOR_F_LoadNotFloat | Expecting a float. |
ALDOR_E_ChkBadAssign | Incorrect left-hand side of an assignment. |
ALDOR_E_ChkBadDeclare | Improper form appearing within a declaration. |
ALDOR_E_ChkBadDefine | Incorrect left-hand side of a definition. Check indentation of succeeding definitions, if any. |
ALDOR_E_ChkBadFor | Expecting an identifier or single declaration after `for'. |
ALDOR_E_ChkBadForm | Improper form appearing in `%s' statement. |
ALDOR_E_ChkBadGoto | A goto must have a label's identifier as its target. |
ALDOR_E_ChkBadLabel | A label must consist of a single identifier. |
ALDOR_E_ChkBadMLambda | Improper macro expansion. |
ALDOR_E_ChkBadMacro | Improper macro definition. |
ALDOR_E_ChkBadParams | Expecting a comma separated list of parameters. |
ALDOR_E_ChkBadParamsDups | Improper duplicate use of parameter name. |
ALDOR_E_ChkBadQualification | Improper LHS in $-qualification. |
ALDOR_E_ChkBadRecordOrUnion | Duplicate selector/type pair within Record or Union. |
ALDOR_E_ChkMissingRetType | Function return type must be specified. |
ALDOR_D_ChkUseFromHint | Maybe you want to use `import from ...'. |
ALDOR_E_ChkSelectSeq | `select <E> in' must be followed by a sequence. |
ALDOR_E_ChkSelectExits | Unexpected `=>' in select |
ALDOR_W_FunnyJuxta | Suspicious juxtaposition. Check for missing `;'. Check indentation if you are using `#pile'. |
ALDOR_W_FunnyColon | Suspicious `:'. Do you mean `local' or `default'? |
ALDOR_W_FunnyEquals | Suspicious `='. Do you mean `==' or `:=' ? |
ALDOR_W_FunnyEscape | Escape character ignored. Do you mean '__'? |
ALDOR_E_ScoAssAndDef | Cannot both assign and define `%s' in the same scope. Choose `==', `:=', or use as a `for' variable. |
ALDOR_E_ScoAssTypeId | `%s' is used in a type, so must be constant, and so cannot be assigned to. |
ALDOR_E_ScoBadLexConst | A local constant may not have the same name as an outer variable or parameter. |
ALDOR_E_ScoFluidShadow | A fluid variable cannot shadow an outer non-fluid binding. |
ALDOR_E_ScoBadLoopAss | Cannot explicitly assign a `for' variable. |
ALDOR_E_ScoBadParameter | Improper form appearing in a parameter context. |
ALDOR_E_ScoBadTypeFree | Free variable `%s' is bound elsewhere with a different type. |
ALDOR_E_ScoDupDefine | Constant `%s' cannot be redefined. |
ALDOR_E_ScoFreeAndLoc | Cannot declare `%s' both free and local. |
ALDOR_E_ScoFreeConst | A constant declared free in an inner scope (`%s') cannot be defined in that scope. |
ALDOR_E_ScoLateFreeLocal | It is illegal to declare an identifier free or local once it has already been used, defined or assigned. |
ALDOR_E_ScoLibrary | Cannot assign to or redefine library or archive constant `%s'. |
ALDOR_E_ScoNoFree | A built-in or foreign function cannot be declared `free' or `local'. |
ALDOR_E_ScoNoParm | A built-in or foreign function cannot have the same signature as a parameter. |
ALDOR_E_ScoNoSet | A built-in or foreign function cannot be assigned to or defined. |
ALDOR_E_ScoNotBuiltin | Unknown built-in. |
ALDOR_E_ScoParmLocFree | Parameters cannot be declared local or free. |
ALDOR_E_ScoSameSig | A built-in function cannot have the same signature as a foreign function. |
ALDOR_E_ScoParmType | Parameter type (for %s) must be specified explicitly or with default. |
ALDOR_E_ScoVarOverload | Variables cannot have different types in the same scope. |
ALDOR_E_ScoUnknownFree | Cannot find scope in which free variable `%s' is bound. |
ALDOR_W_ScoNotProtocol | Unknown foreign interface protocol. |
ALDOR_W_ScoBadLocal | Implicit local `%s' is a parameter, local or explicit free in an outer scope. Add a `local' declaration if this is what you intended. |
ALDOR_W_ScoBadUse | Local `%s' is used without being assigned or defined. |
ALDOR_W_ScoLocalNoUse | Local `%s' is not assigned, defined, or used. |
ALDOR_W_ScoVarDefault | `%s' has a default type and a different explicit type declaration. |
ALDOR_R_ScoMeaning | Introducing %s meaning for %s with type %s. |
ALDOR_E_StabDupLabels | Cannot use label `%s' more than once in a given scope. |
ALDOR_R_StabImporting | Importing %s. |
ALDOR_R_StabImportingQual | The import was restricted to: %s. |
ALDOR_W_StabNotImporting | Ignoring explicit import from %s. |
ALDOR_F_LibOutOfDate | The file `%s.ao' is newer than `%s.ao'. |
ALDOR_F_LibBadVersion | Library format (obsolete version) in file `%s'. Current library format version %d.%d. Found library format version %d.%d. |
ALDOR_F_LibExportNotFound | Looking for `%s' with code `%d'. Export not found. |
ALDOR_E_LibBadMagic | Library format (bad magic number) in file `%s'. |
ALDOR_E_LibBadNumSect | Library format (bad number of sections) in file `%s'. |
ALDOR_E_LibBadSectHdr | Library format (bad section header) in file `%s'. |
ALDOR_E_LibBadSectName | Library format (bad section name) in file `%s'. |
ALDOR_E_LibSectDup | Library format (duplicate section) in file `%s'. |
ALDOR_E_LibSectLimit | Library format (too many sections) in file `%s'. |
ALDOR_E_LibSectOffset | Library format (offset out of range) in file `%s'. |
ALDOR_W_LibRedefined | Redefinition of library symbol `%s'. |
ALDOR_E_TinNoMeaningForId | No meaning for identifier `%s'. |
ALDOR_E_TinNoMeaningForLit | No meaning for %s-style literal `%s'. |
ALDOR_E_TinBadDeclare | Improper form appearing within a declaration. |
ALDOR_E_TinIfMeans | The `if' expression has %d possible types. |
ALDOR_E_TinAssMeans | Assignment has %d meanings. |
ALDOR_E_TinDefnMeans | Definition has %d meanings. |
ALDOR_E_TinCantSplitRHS | This right hand side cannot be split for multiple assignment. |
ALDOR_E_TinAssignCreatesDepType | The type of this variable includes a variable, '%s'. Consider using '==' instead of ':=' |
ALDOR_E_TinExprMeans | Have determined %d possible types for the expression. |
ALDOR_E_TinNMeanings | There are %d meanings for `%s' in this context. |
ALDOR_E_TinBadGoto | A goto must have a label's identifier as its target. |
ALDOR_E_TinOpMeans | Operator has %d possible types. |
ALDOR_E_TinWildExit | The `=>' is not inside a sequence. |
ALDOR_E_TinWildReturn | The `return' is not inside a function. |
ALDOR_E_TinWildYield | The `yield' is not inside a `generate'. |
ALDOR_E_TinContextExit | A value is needed but `=>' does not produce one. |
ALDOR_E_TinContextIf | A value is needed but `if' expression has no `else'. |
ALDOR_E_TinContextRepeat | A value is needed but `repeat' does not produce one. |
ALDOR_E_TinContextSeq | A value is needed but an empty sequence does not produce one. |
ALDOR_E_TinCantInferLhs | The type of the assignment cannot be inferred. |
ALDOR_E_TinNoGoodOp | There are no suitable meanings for the operator `%s'. |
ALDOR_E_TinNoGoodInterp | There is no suitable interpretation for the expression %s |
ALDOR_E_TinFirstExitType | The possible type for this %s is %s. |
ALDOR_E_TinFirstExitTypes | The possible types for this %s are: |
ALDOR_E_TinTypeConstIntro | The interpretation of the type expression |
ALDOR_X_TinTypeConstFailed | failed to satisfy the condition that |
ALDOR_E_TinCantBeAnalyzed | Cannot determine the meaning of this expression because the type of one of its subexpressions cannot yet be completely analyzed. |
ALDOR_E_TinEmbeddedSet | Implicit set within a multi-assign is not yet implemented. |
ALDOR_E_TinMultiTry | try expressions must yield a single value (will be fixed later). |
ALDOR_D_TinNoGoodInterp | There is no suitable interpretation for the expression %s |
ALDOR_D_TinNoMeaningForId | No meaning for identifier `%s'. |
ALDOR_D_TinSubexprMeans | Subexpression `%s': |
ALDOR_D_TinPossTypesLhs | The possible types of the left hand side are: |
ALDOR_D_TinPossTypes | The possible types were: |
ALDOR_D_TinPossInterps | The possible interpretations of `%s' are: |
ALDOR_D_TinPossTypesRhs | The possible types of the right hand side (`%s') are: |
ALDOR_D_TinAlternativeMeanings | The following could be suitable if imported: |
ALDOR_D_TinOneMeaning | Meaning %d: %s |
ALDOR_D_TinContextType | The context requires an expression of type %s. |
ALDOR_D_TinMissingExports | The domain is missing some exports. |
ALDOR_D_TinMissingExport | Missing %s: %s |
ALDOR_D_TinRejectedTypes | These possible types were rejected: |
ALDOR_X_TinNoArgumentMatch | rejected because argument %d did not match `%s'. |
ALDOR_X_TinParameterMissing | rejected because parameter %d (%s) is missing. |
ALDOR_X_TinBadArgumentNumber | rejected because it cannot take %d arguments. |
ALDOR_X_TinBadFnType | rejected because the context requires type `%s'. |
ALDOR_D_TinRejectedType | The rejected type is %s. |
ALDOR_D_TinRejectedTypesForRhs | These possible types for the right hand side were rejected: |
ALDOR_D_TinRejectedTypeForRhs | The rejected type for the right hand side is %s. |
ALDOR_D_TinShouldUseDoubleEq | You should use %s==%s and not %s. |
ALDOR_D_TinAvailableTypesForArg | The available types for argument %d were: |
ALDOR_D_TinArgNoMatchParTypes | Argument %d of `%s' did not match any possible parameter type. |
ALDOR_D_TinOperatorNoMatch | Operator (argument %d of apply) did not match any possible parameter type. |
ALDOR_D_TinMoreMeanings | There are %d meanings for the operator `%s'. |
ALDOR_D_TinRetTypesCantContext | No one possible return type satisfies the context type. |
ALDOR_D_TinExpectedType | Expected type %s. |
ALDOR_D_TinExpectedTypes | Expected one of: |
ALDOR_D_TinRejectedRetTypes | These possible return types were rejected: |
ALDOR_D_TinOtherDiffArgNum | There are other meanings rejected due to different number of arguments. |
ALDOR_D_TinPossSelectorTypes | Possible types for the selector `%s' were: |
ALDOR_D_TinPossRetTypeSetBang | Possible return types for `set!' expression were: |
ALDOR_D_TinPossTypesForSetBang | No `set!' found for any of the possible types for `%s': |
ALDOR_D_TinSetBangBadArgNum | There is no `set!' definition with this number of arguments. |
ALDOR_D_TinOneImpMeaning | %s: %s from %s |
ALDOR_D_TinOneLexMeaning | %s: %s, a local |
ALDOR_D_TinOneLibMeaning | %s: %s, a library |
ALDOR_D_TinOneMeaning0 | (...): %s |
ALDOR_D_TinFirstExitCant | This is not compatible with the types of the other %ss. |
ALDOR_N_TinOtherExitType | Here the %s type is %s. |
ALDOR_N_TinOtherExitTypes | Here the %s types are: |
ALDOR_W_TinNoValReturn | The `return' gives a value but none is expected. |
ALDOR_R_TinInferring | Inferring %s: %s. |
ALDOR_M_FintBreakHandler | Execution terminated: use #quit if you want to quit. |
ALDOR_M_FintBreakHandler0 | Use '#quit' to quit Aldor. |
ALDOR_M_FintYesOrNo | Please, answer y or n. |
ALDOR_M_FintRedefined | %s redefined. |
ALDOR_M_FintOptionState | %s is %s. |
ALDOR_M_FintOptionValue | %s is %d. |
ALDOR_M_FintUnknownOpt | Unrecognized option. Type #int %s for help. |
ALDOR_M_FintTimings | Comp: %d msec, Interp: %d msec |
ALDOR_M_FintGbcStart | Garbage collection... |
ALDOR_M_FintGbcEnd | done. |
ALDOR_M_FintIntOptionsNoFile | Cannot give files, such as `%s', with `#int options' |
ALDOR_M_ShellSyntax | The correct syntax is: #int %s "<shell-command>" |
ALDOR_M_CdSyntax | The correct syntax is: #int %s <directory> |
ALDOR_M_InvalidDir | Invalid directory. |
ALDOR_M_FintOptions |
Available options: #int %s [on|off] print the value of an evaluated expression. #int %s [on|off] try to wrap an assignment around the current line. #int %s [on|off] ask for confirmation before redefining something. #int %s [on|off] display timings after every input. #int %s [num] set the limit size of some messages; 0 for no-limit. #int %s ... reset command line options. #int %s perform garbage collection. #int %s "<command>" execute a shell command. #int %s <directory> change current directory. #int %s display this message. #quit quit the interactive loop. |
ALDOR_F_CdFailed | Could not change working directory to `%s'. |
ALDOR_F_CcFailed | C compile failed. Command was: %s |
ALDOR_F_LinkFailed | Linker failed. Command was: %s |
ALDOR_F_BadFType | Cannot handle file `%s' of type `%s'. Try using file type `%s'. |
ALDOR_F_WdClobberIn | Output would clobber input file `%s'. |
ALDOR_F_WdClobberFile | Output would clobber the source file `%s'. |
ALDOR_W_WillObsolete | The file `%s' will now be out of date. |
ALDOR_W_RemovingFile | Removing file `%s'. |
ALDOR_W_NotCreatingFile | Cannot create file `%s' from input file. |
ALDOR_W_NoFiles | No files! Type `%s -help' for help. |
ALDOR_F_NoConfig | Could not find aldor.conf |
ALDOR_F_NoFNameProperty | Fortran naming scheme field (%s) is not specified in aldor.conf |
ALDOR_F_BadFNameValue | Unrecognised Fortran naming scheme (%s) specified in aldor.conf |
ALDOR_F_NoFCmplxProperty | Fortran complex functions field (%s) is not specified in aldor.conf |
ALDOR_F_BadFCmplxValue | Unrecognised Fortran complex functions field value (%s) specified in aldor.conf |
ALDOR_M_BreakEnter | Aldor compiler break ------------------------------------------------------ |
ALDOR_M_BreakExit | ---------------------------------------------------------------------- |
ALDOR_M_BreakNoMsg | No message. |
ALDOR_M_BreakNoCmd | Unrecognized command: `%s'. |
ALDOR_M_BreakMsgPrompt | ::: |
ALDOR_M_BreakMsgHelpAvail | Help is available. |
ALDOR_M_BreakMsgBadNode | Bad node. |
ALDOR_M_BreakMsgNoNode | No node. |
ALDOR_M_BreakMsgNoStab | No symbol table. |
ALDOR_M_BreakMsgNoTypeInfo | No type info yet. |
ALDOR_M_BreakMsgAtTop | At top. |
ALDOR_M_BreakMsgAtLeaf | At leaf. |
ALDOR_M_BreakMsgNoPrev | No prev. |
ALDOR_M_BreakMsgNoNext | No next. |
ALDOR_M_BreakMsgCantSelect | No such selection. |
ALDOR_M_BreakMsgNTypes | The expression has %d possible types. |
ALDOR_M_BreakMsg1Type | The expression has the unique type: |
ALDOR_M_BreakMsgUsedContext | Used in `%s' context. |
ALDOR_M_BreakMsgNotId | Can only ask for meanings of an identifier. |
ALDOR_M_BreakHelp | Commands are:
|
ALDOR_H_HelpConfigOpt | Configuration options:
|
ALDOR_H_HelpProductInfo | Contact infodesk@nag.co.uk for product support and information. Use the aldorbug program for reporting any bugs. |
ALDOR_E_SigAbrt | Program fault (abort process). |
ALDOR_E_SigBus | Program fault (bus error). |
ALDOR_E_SigEmt | Program fault (emulator instruction). |
ALDOR_E_SigFpe | Program fault (arithmetic exception). |
ALDOR_E_SigHup | User break (hangup). |
ALDOR_E_SigIll | Program fault (illegal instruction). |
ALDOR_E_SigInt | User break (interrupt). |
ALDOR_E_SigPipe | Program fault (write on a pipe with no one to read it). |
ALDOR_E_SigDanger | Program fault (paging space low) |
ALDOR_E_SigQuit | User break (quit). |
ALDOR_E_SigSegv | Program fault (segmentation violation). |
ALDOR_E_SigSys | Program fault (bad argument to system call). |
ALDOR_E_SigTerm | User break (software termination signal). |
ALDOR_E_SigTrap | Program fault (trace trap). |
ALDOR_E_SigXcpu | Exceeded time limit imposed by operating system. |
ALDOR_E_SigXfsz | Exceeded file size limit imposed by operating system. |
ALDOR_E_SigUnknown | Unexpected signal (%d). |
ALDOR_F_SxAlreadyShare | Share label #nn= previously defined. |
ALDOR_F_SxBadArgumentTo | Inappropriate argument to function `%s'. |
ALDOR_F_SxBadChar | Illegal character 0x%x. |
ALDOR_F_SxBadCharName | Improper character name after #\\. |
ALDOR_F_SxBadComplexNum | Improper complex number #C.... |
ALDOR_F_SxBadFeatureForm | Improper feature form following #+ or #-. |
ALDOR_F_SxBadPotNum | Meaningless potential number `%s'. |
ALDOR_F_SxBadPunct | Misplaced `%s'. |
ALDOR_F_SxBadToken | Missing escape in token. |
ALDOR_F_SxBadUninterned | Package given with `#:' |
ALDOR_F_SxCantMacroArg | Macro #%c does not take a numeric argument. |
ALDOR_F_SxCantShare | Share label #nn= not previously defined. |
ALDOR_F_SxInternNeeds | Intern requires a string. |
ALDOR_F_SxMacroIlleg | Illegal macro character `#%c'. |
ALDOR_F_SxMacroUndef | Undefined macro character `#%c'. |
ALDOR_F_SxMacroUnimp | Unimplemented macro character `#%c'. |
ALDOR_F_SxMustMacroArg | Macro #n%c requires a numeric argument. |
ALDOR_F_SxNReverseNeeds | NReverse requires the last cdr of a list to be nil. |
ALDOR_F_SxNumDenNeeds | %s requires an integer or ratio. |
ALDOR_F_SxPackageExists | A package with the name %s already exists. |
ALDOR_F_SxReadEOF | End of file during read. |
ALDOR_F_SxTooManyElts | Number of elements greater than given size. |
ALDOR_F_StoCantBuild | Storage allocation error (can't build internal structure). |
ALDOR_F_StoOutOfMemory | Storage allocation error (out of memory). |
ALDOR_F_StoUsedNonalloc | Storage allocation error (using non-allocated space). |
ALDOR_F_CantOpen | Could not open file `%s'. |
ALDOR_F_CantOpenMode | Could not open file `%s' with mode `%s'. |
ALDOR_F_CantFindTemp | Could not find unused temporary file names. |
ALDOR_W_CantUseObject | Could not use object file `%s'. |
ALDOR_W_CantUseLibrary | Could not use library file `%s'. |
ALDOR_W_CantUseArchive | Could not use archive file `%s'. |
ALDOR_W_OverRideLibraryFile | Current file over-rides existing library in `%s'. |
ALDOR_I_PreRelease | This is a pre-release of %s. `aldor -h info' for more details. |
ALDOR_I_DemoExpiry | This is a demo version of %s. `aldor -h info' for information. This program should not be used after %s |
ALDOR_S_Syme_Label | label |
ALDOR_S_Syme_Param | parameter" |
ALDOR_S_Syme_LexVar | lexical variable |
ALDOR_S_Syme_LexConst | lexical constant |
ALDOR_S_Syme_Import | import |
ALDOR_S_Syme_Export | export |
ALDOR_S_Syme_Extend | extend |
ALDOR_S_Syme_Library | library |
ALDOR_S_Syme_Archive | archive |
ALDOR_S_Syme_Builtin | builtin |
ALDOR_S_Syme_Foreign | foreign |
ALDOR_S_Syme_Fluid | fluid variable |
ALDOR_S_Syme_Trigger | trigger |
ALDOR_S_Syme_Temp | temporary |