()
| 851 | } |
| 852 | |
| 853 | function makeRetainedCompilerSettings() { |
| 854 | const ret = {}; |
| 855 | for (const name of PUBLIC_SETTINGS) { |
| 856 | ret[name] = globalThis[name]; |
| 857 | } |
| 858 | return ret; |
| 859 | } |
| 860 | |
| 861 | // Receives a function as text, and a function that constructs a modified |
| 862 | // function, to which we pass the parsed-out arguments, body, and possible |