@@ -2604,29 +2604,26 @@ Node ensureLibraryInjected(String resourceName, boolean force) {
2604
2604
node = ast .getFirstChild ()) {
2605
2605
String directive = node .getFirstChild ().getString ();
2606
2606
List <String > words = Splitter .on (' ' ).splitToList (directive );
2607
- switch (words .get (0 )) {
2608
- case "use" :
2609
- // 'use strict' is ignored (and deleted).
2610
- break ;
2611
- case "require" :
2612
- // 'require lib1 lib2'; pulls in the named libraries before this one.
2613
- for (String dependency : words .subList (1 , words .size ())) {
2614
- ensureLibraryInjected (dependency , force );
2615
- }
2616
- break ;
2617
- case "declare" :
2618
- // 'declare name1 name2'; adds the names to the externs (with no type information).
2619
- // Note that we could simply add the entire externs library, but that leads to
2620
- // potentially-surprising behavior when the externs that are present depend on
2621
- // whether or not a polyfill is used.
2622
- for (String extern : words .subList (1 , words .size ())) {
2623
- getSynthesizedExternsInputAtEnd ()
2624
- .getAstRoot (this )
2625
- .addChildToBack (IR .var (IR .name (extern )));
2626
- }
2627
- break ;
2628
- default :
2629
- throw new RuntimeException ("Bad directive: " + directive );
2607
+ String word = words .get (0 );
2608
+ if (word .equals ("use" )) {
2609
+ // 'use strict' is ignored (and deleted).
2610
+ } else if (word .equals ("require" )) {
2611
+ // 'require lib1 lib2'; pulls in the named libraries before this one.
2612
+ for (String dependency : words .subList (1 , words .size ())) {
2613
+ ensureLibraryInjected (dependency , force );
2614
+ }
2615
+ } else if (word .equals ("declare" )) {
2616
+ // 'declare name1 name2'; adds the names to the externs (with no type information).
2617
+ // Note that we could simply add the entire externs library, but that leads to
2618
+ // potentially-surprising behavior when the externs that are present depend on
2619
+ // whether or not a polyfill is used.
2620
+ for (String extern : words .subList (1 , words .size ())) {
2621
+ getSynthesizedExternsInputAtEnd ()
2622
+ .getAstRoot (this )
2623
+ .addChildToBack (IR .var (IR .name (extern )));
2624
+ }
2625
+ } else {
2626
+ throw new RuntimeException ("Bad directive: " + directive );
2630
2627
}
2631
2628
ast .removeChild (node );
2632
2629
}
0 commit comments