()
| 2600 | } |
| 2601 | |
| 2602 | function assume() { |
| 2603 | processenforceall(); |
| 2604 | |
| 2605 | if (!state.option.es3) { |
| 2606 | combine(predefined, vars.ecmaIdentifiers[5]); |
| 2607 | } |
| 2608 | |
| 2609 | if (state.option.esnext) { |
| 2610 | combine(predefined, vars.ecmaIdentifiers[6]); |
| 2611 | } |
| 2612 | |
| 2613 | if (state.option.couch) { |
| 2614 | combine(predefined, vars.couch); |
| 2615 | } |
| 2616 | |
| 2617 | if (state.option.qunit) { |
| 2618 | combine(predefined, vars.qunit); |
| 2619 | } |
| 2620 | |
| 2621 | if (state.option.rhino) { |
| 2622 | combine(predefined, vars.rhino); |
| 2623 | } |
| 2624 | |
| 2625 | if (state.option.shelljs) { |
| 2626 | combine(predefined, vars.shelljs); |
| 2627 | combine(predefined, vars.node); |
| 2628 | } |
| 2629 | if (state.option.typed) { |
| 2630 | combine(predefined, vars.typed); |
| 2631 | } |
| 2632 | |
| 2633 | if (state.option.phantom) { |
| 2634 | combine(predefined, vars.phantom); |
| 2635 | } |
| 2636 | |
| 2637 | if (state.option.prototypejs) { |
| 2638 | combine(predefined, vars.prototypejs); |
| 2639 | } |
| 2640 | |
| 2641 | if (state.option.node) { |
| 2642 | combine(predefined, vars.node); |
| 2643 | combine(predefined, vars.typed); |
| 2644 | } |
| 2645 | |
| 2646 | if (state.option.devel) { |
| 2647 | combine(predefined, vars.devel); |
| 2648 | } |
| 2649 | |
| 2650 | if (state.option.dojo) { |
| 2651 | combine(predefined, vars.dojo); |
| 2652 | } |
| 2653 | |
| 2654 | if (state.option.browser) { |
| 2655 | combine(predefined, vars.browser); |
| 2656 | combine(predefined, vars.typed); |
| 2657 | } |
| 2658 | |
| 2659 | if (state.option.browserify) { |
no test coverage detected