/* module owner: Ronny Wichers Schreur */ definition module frontend from scanner import ::SearchPaths from general import ::Optional (Yes, No) import checksupport, overloading from partition import ::Component(..),::ComponentMembers :: FrontEndOptions = { feo_up_to_phase :: !FrontEndPhase , feo_generics :: !Bool , feo_fusion :: !Bool , feo_strip_unused :: !Bool , feo_generate_sapl :: !Bool , feo_generate_ctags :: !Bool , feo_tonic :: !Bool } :: FrontEndSyntaxTree = { fe_icl :: !IclModule , fe_dcls :: !{#DclModule} , fe_components :: !{!Component} , fe_arrayInstances :: !ArrayAndListInstances } :: FrontEndPhase = FrontEndPhaseCheck | FrontEndPhaseTypeCheck | FrontEndPhaseConvertDynamics | FrontEndPhaseTransformGroups | FrontEndPhaseConvertModules | FrontEndPhaseAll :: ListTypesKind = ListTypesNone | ListTypesInferred | ListTypesStrictExports | ListTypesAll :: ListTypesOption = { lto_showAttributes :: Bool , lto_listTypesKind :: ListTypesKind } instance == ListTypesKind frontEndInterface :: !(Optional (*File,{#Char},{#Char})) !FrontEndOptions !Ident !SearchPaths !{#DclModule} !*{#*{#FunDef}} !(Optional Bool) !*PredefinedSymbols !*HashTable (ModTimeFunction *Files) !*Files !*File !*File !*File !(Optional *File) !*Heaps -> ( !Optional *FrontEndSyntaxTree,!*{#*{#FunDef}},!{#DclModule},!Int,!*PredefinedSymbols, !*HashTable, !*Files, !*File, !*File, !*File, !Optional *File, !*Heaps)