InterpreterPackage.config
Russ Atkinson, May 19, 1983 4:07 pm
DIRECTORY
DebugTab: FROM "PPDebugTab",
MesaTab: FROM "PPMesaTab";
InterpreterPackage: CONFIG LINKS: CODE
IMPORTS
from Cedar
AtomsPrivate, CedarScanner, CIFS, Commander, Convert, IO, List, PrintTV, ProcessProps, Real, Rope, RTProcess, SafeStorage, ShowTime, SymTab, UnsafeStorage, UserProfile, WorldVM,
from Pilot
PageFault, PilotLoadStateOps, Process, Runtime, RuntimeInternal, Space, WriteFault,
from AM
AMBridge, AMBridgeExtras, AMEvents, AMModel, AMTypes, AMViewerOps, RTSymbolOps, RTSymbols,
from RTT
RTMiniModel, RTTypesBasic, RTTypesRemotePrivate, RTZones
EXPORTS
BBApply, BBBugOut, BBContext, BBEmptyReturn, BBEval, BBEvalQuote, BBEvalUtil, BBInterp, BBSafety, BBUrpEval, BBZones, Interpreter, PPOps, PPTreeOps, PPUtil, TVGuide
CONTROL
BBZonesImpl,
BBSafetyImpl,
BBBugOutImpl,
BBApplyImpl,
BBContextImpl,
BBEvalImpl,
BBEvalQuoteImpl,
BBEvalUtilImpl,
BBUrpEvalImpl,
BBInterpImpl,
InterpreterImpl,
OctalCommands
= BEGIN
Interpreter veneer
InterpreterImpl;   -- exports Interpreter, TVGuide
OctalCommands;   -- no exports
BugBane proper
BBSafetyImpl;   -- exports BBSafety
BBBugOutImpl;   -- exports BBBugOut
BBInterpImpl;   -- exports BBInterp
BBApplyImpl;   -- exports BBApply
BBEvalImpl;    -- exports BBEval
BBEvalQuoteImpl;  -- exports BBEvalQuote
BBEvalUtilImpl;   -- exports BBEvalUtil, BBEmptyReturn
BBUrpEvalImpl;   -- exports BBUrpEval
BBContextImpl;   -- exports BBContext
BBZonesImpl;   -- exports BBZones
lame duck parsing and pretty-printing
PPScanner;    -- exports PPComData, PPP1
PPParser;     -- exports PPP1
PPPass1T;     -- exports PPP1
PPCommentTableImpl; -- exports PPCommentTable
PPTreeImpl;    -- exports PPTreeOps
PPHelperImpl;   -- exports PPHelper
PPPretty;     -- exports PPUtil
PPDebug;     -- exports PPUtil
PPReader;    -- exports PPOps, PPUtil
tables used in parsing
MesaTab LINKS: FRAME;
DebugTab LINKS: FRAME;
END.