(self)
| 2226 | return deps |
| 2227 | |
| 2228 | def recursive_dependencies(self): |
| 2229 | deps = [] |
| 2230 | for tool_name in self.uses: |
| 2231 | tool = find_tool(tool_name) |
| 2232 | if tool: |
| 2233 | deps += [tool] |
| 2234 | deps += tool.recursive_dependencies() |
| 2235 | return deps |
| 2236 | |
| 2237 | |
| 2238 | # A global registry of all known Emscripten SDK tools available in the SDK manifest. |
no test coverage detected