(modules)
| 1074 | } |
| 1075 | |
| 1076 | function processEngineModules(modules) { |
| 1077 | // Math shows up as "Math" because of it's aliasing from CesiumMath and namespace collision with actual Math |
| 1078 | // It fails the above regex so just add it directly here. |
| 1079 | modules.add("Math"); |
| 1080 | return modules; |
| 1081 | } |
| 1082 | |
| 1083 | /** |
| 1084 | * Process the given typescript source. |
nothing calls this directly
no test coverage detected
searching dependent graphs…