Changeset 1559
- Timestamp:
- 07/26/08 21:49:03 (5 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
cobra/trunk/Source/CobraMain-ObjectExplorer-WinForms.cobra
r1515 r1559 36 36 pass 37 37 38 compiler = commandLine.compiler 39 38 40 # Now explore the results: 39 41 Application.enableVisualStyles … … 42 44 if exc, form.addKeyValue('Exception', exc) 43 45 form.addKeyValue('CommandLine', commandLine) 44 form.addKeyValue('Compiler', commandLine.compiler) 45 form.addKeyValue('Messages', commandLine.compiler.messages) 46 form.addKeyValue('Compiler', compiler) 47 48 topDecls = List<of INode>() 49 for decl in compiler.globalNS.declsInOrder 50 topDecls.add(decl) 51 form.addKeyValue('Declarations (Global)', topDecls) 52 53 form.addKeyValue('Messages', compiler.messages) 46 54 47 55 topNameSpaces = List<of NameSpace>() 48 for module in commandLine.compiler.modules 56 topNameSpaces.add(compiler.globalNS) 57 for module in compiler.modules 49 58 if module inherits CobraModule 50 59 if not module.isCobraLibrary
