Exemplo n.º 1
0
        private static WordCollection MakeLinkedWords(
            ItemSelectableCollection <RelocatableModule> relModules)
        {
            WordCollection linkedWords = new WordCollection();

            relModules.ForEach((relModule) => linkedWords.Add(relModule.Words));
            return(linkedWords);
        }
Exemplo n.º 2
0
 private static ItemSelectableCollection <RelocatableModule> ResolveLabelReferences(
     this ItemSelectableCollection <RelocatableModule> relModules, EntryPointTable entryPointTable)
 {
     relModules.ForEach((relModule) => relModule.ResolveLabelReferences(entryPointTable));
     return(relModules);
 }
Exemplo n.º 3
0
 private static ItemSelectableCollection <RelocatableModule> RegisterEntryPoints(
     this ItemSelectableCollection <RelocatableModule> relModules, EntryPointTable entryPointTable)
 {
     relModules.ForEach((relModule) => relModule.RegisterEntryPointTo(entryPointTable));
     return(relModules);
 }