()
| 2455 | } |
| 2456 | |
| 2457 | function assume() { |
| 2458 | processenforceall(); |
| 2459 | |
| 2460 | if (state.option.esnext) { |
| 2461 | combine(predefined, vars.newEcmaIdentifiers); |
| 2462 | } |
| 2463 | |
| 2464 | if (state.option.couch) { |
| 2465 | combine(predefined, vars.couch); |
| 2466 | } |
| 2467 | |
| 2468 | if (state.option.qunit) { |
| 2469 | combine(predefined, vars.qunit); |
| 2470 | } |
| 2471 | |
| 2472 | if (state.option.rhino) { |
| 2473 | combine(predefined, vars.rhino); |
| 2474 | } |
| 2475 | |
| 2476 | if (state.option.shelljs) { |
| 2477 | combine(predefined, vars.shelljs); |
| 2478 | combine(predefined, vars.node); |
| 2479 | } |
| 2480 | if (state.option.typed) { |
| 2481 | combine(predefined, vars.typed); |
| 2482 | } |
| 2483 | |
| 2484 | if (state.option.phantom) { |
| 2485 | combine(predefined, vars.phantom); |
| 2486 | } |
| 2487 | |
| 2488 | if (state.option.prototypejs) { |
| 2489 | combine(predefined, vars.prototypejs); |
| 2490 | } |
| 2491 | |
| 2492 | if (state.option.node) { |
| 2493 | combine(predefined, vars.node); |
| 2494 | combine(predefined, vars.typed); |
| 2495 | } |
| 2496 | |
| 2497 | if (state.option.devel) { |
| 2498 | combine(predefined, vars.devel); |
| 2499 | } |
| 2500 | |
| 2501 | if (state.option.dojo) { |
| 2502 | combine(predefined, vars.dojo); |
| 2503 | } |
| 2504 | |
| 2505 | if (state.option.browser) { |
| 2506 | combine(predefined, vars.browser); |
| 2507 | combine(predefined, vars.typed); |
| 2508 | } |
| 2509 | |
| 2510 | if (state.option.browserify) { |
| 2511 | combine(predefined, vars.browser); |
| 2512 | combine(predefined, vars.typed); |
| 2513 | combine(predefined, vars.browserify); |
| 2514 | } |
no test coverage detected