Changeset 1774
- Timestamp:
- 11/20/08 04:15:22 (7 weeks ago)
- Location:
- cobra/trunk/Source
- Files:
-
- 2 modified
- 2 moved
-
Cobra.Lang/files.text (modified) (1 diff)
-
Cobra.Lang/Native.cs (moved) (moved from cobra/trunk/Source/CobraLang.cs)
-
Cobra.Lang/NativeExtern.cobra (moved) (moved from cobra/trunk/Source/SystemInterfaces.cobra)
-
Compiler.cobra (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
cobra/trunk/Source/Cobra.Lang/files.text
r1773 r1774 6 6 Extensions.cobra 7 7 Misc.cobra 8 Native.cs 9 NativeExtern.cobra 8 10 ObjectCatalog.cobra 9 11 Set.cobra -
cobra/trunk/Source/Compiler.cobra
r1773 r1774 389 389 390 390 if embedRunTime 391 path = Path.combine(.cobraExeDir, 'SystemInterfaces.cobra')392 assert File.exists(path)393 filenames.insert(1, path)394 395 path = Path.combine(.cobraExeDir, 'CobraLang.cs')396 assert File.exists(path)397 filenames.insert(2, path)398 399 391 paths = .commandLineArgParser.readFilesFile(Path.combine(Path.combine(.cobraExeDir, 'Cobra.Lang'), 'files.text')) 400 392 paths.reverse 401 393 for path in paths 402 filenames.insert( 3, path)394 filenames.insert(1, path) 403 395 404 396 modules = List<of Module>()
