-- TestBinder.config
-- Last edited by Satterthwaite on December 22, 1982 12:47 pm

DIRECTORY
  Parser: FROM "BcdParser",
  Scanner: FROM "BcdScanner",
  TreePack: FROM "BcdTreePack";

TestBinder: CONFIG LINKS: CODE
    IMPORTS
      Directory, Exec, ExecOps, File, FileStream, Heap, Inline, KernelFile,
      LongString, ProcessorFace, Runtime, Space, Stream, Strings, Time,
      Transaction, TTY, Volume
    CONTROL TestBinderImpl = {
  
  SymCache: CONFIG
      IMPORTS File, Heap, LongString, Space, Strings, Transaction
      EXPORTS SymbolTable
      CONTROL SymbolCache = {
     SymbolPack;
     SymbolCache};

  InterfaceBinder: CONFIG
      IMPORTS 
        Alloc, CharIO, ExecOps, File, FileStream, Heap, Inline, LongString,
	OSMiscOps, Runtime, Space, Stream, Strings, SymbolTable,
	Time, Transaction
      EXPORTS ExecOps, TemporarySpecialExecOps, BcdControl = {

    BcdComData;
    BcdControl;
    BcdTreeBuild;
    BcdSEBuild;
    BcdLoad;
    BcdBind;
    BcdWrite;

    CommandPack;
    Scanner;
    Parser;
    TreePack;
    HashTab;
    BcdParseData;

    BcdSymbolPack;
    BcdUtilities;
    BcdFileLookup;
    BcdLiteralsImpl;
    RCMapBuilderImpl;
    BcdDebug;
    BindErrors};

 -- service modules

  AllocImpl;
  CharIOImpl;
  OSMiscOpsImpl;
  SymCache;
  
 -- the Binder proper
 
  InterfaceBinder;
  TestBinderImpl;
    
  }.