calabash-android 0.4.0.pre11 → 0.4.0.pre15

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,4 +1,4 @@
1
- // $ANTLR 3.4 antlr/UIQuery.g 2013-01-24 10:28:02
1
+ // $ANTLR 3.4 antlr/UIQuery.g 2013-01-31 12:10:57
2
2
 
3
3
  package sh.calaba.instrumentationbackend.query.antlr;
4
4
 
@@ -64,24 +64,6 @@ public TreeAdaptor getTreeAdaptor() {
64
64
  public String getGrammarFileName() { return "antlr/UIQuery.g"; }
65
65
 
66
66
 
67
- public String getErrorMessage(RecognitionException e, String[] tokenNames)
68
- {
69
- List stack = getRuleInvocationStack(e, this.getClass().getName());
70
- String msg = null;
71
- if ( e instanceof NoViableAltException ) {
72
- NoViableAltException nvae = (NoViableAltException)e;
73
- msg = " no viable alt; token="+e.token+" (decision="+nvae.decisionNumber+" state "+nvae.stateNumber+")"+" decision=<<"+nvae.grammarDecisionDescription+">>";
74
- }
75
- else {
76
- msg = super.getErrorMessage(e, tokenNames);
77
- }
78
- return stack+" "+msg;
79
- }
80
- public String getTokenErrorDisplay(Token t) {
81
- return t.toString();
82
- }
83
-
84
-
85
67
  public static class query_return extends ParserRuleReturnScope {
86
68
  CommonTree tree;
87
69
  public Object getTree() { return tree; }
@@ -89,7 +71,7 @@ public TreeAdaptor getTreeAdaptor() {
89
71
 
90
72
 
91
73
  // $ANTLR start "query"
92
- // antlr/UIQuery.g:34:1: query : expr ( WHITE ! expr )* ;
74
+ // antlr/UIQuery.g:35:1: query : expr ( WHITE ! expr )* ;
93
75
  public final UIQueryParser.query_return query() throws RecognitionException {
94
76
  UIQueryParser.query_return retval = new UIQueryParser.query_return();
95
77
  retval.start = input.LT(1);
@@ -106,20 +88,20 @@ public TreeAdaptor getTreeAdaptor() {
106
88
  CommonTree WHITE2_tree=null;
107
89
 
108
90
  try {
109
- // antlr/UIQuery.g:34:7: ( expr ( WHITE ! expr )* )
110
- // antlr/UIQuery.g:34:9: expr ( WHITE ! expr )*
91
+ // antlr/UIQuery.g:35:7: ( expr ( WHITE ! expr )* )
92
+ // antlr/UIQuery.g:35:9: expr ( WHITE ! expr )*
111
93
  {
112
94
  root_0 = (CommonTree)adaptor.nil();
113
95
 
114
96
 
115
- pushFollow(FOLLOW_expr_in_query53);
97
+ pushFollow(FOLLOW_expr_in_query56);
116
98
  expr1=expr();
117
99
 
118
100
  state._fsp--;
119
101
 
120
102
  adaptor.addChild(root_0, expr1.getTree());
121
103
 
122
- // antlr/UIQuery.g:34:14: ( WHITE ! expr )*
104
+ // antlr/UIQuery.g:35:14: ( WHITE ! expr )*
123
105
  loop1:
124
106
  do {
125
107
  int alt1=2;
@@ -132,11 +114,11 @@ public TreeAdaptor getTreeAdaptor() {
132
114
 
133
115
  switch (alt1) {
134
116
  case 1 :
135
- // antlr/UIQuery.g:34:15: WHITE ! expr
117
+ // antlr/UIQuery.g:35:15: WHITE ! expr
136
118
  {
137
- WHITE2=(Token)match(input,WHITE,FOLLOW_WHITE_in_query56);
119
+ WHITE2=(Token)match(input,WHITE,FOLLOW_WHITE_in_query59);
138
120
 
139
- pushFollow(FOLLOW_expr_in_query59);
121
+ pushFollow(FOLLOW_expr_in_query62);
140
122
  expr3=expr();
141
123
 
142
124
  state._fsp--;
@@ -183,7 +165,7 @@ public TreeAdaptor getTreeAdaptor() {
183
165
 
184
166
 
185
167
  // $ANTLR start "expr"
186
- // antlr/UIQuery.g:38:1: expr : ( className | filter | visibility | predicate ) ;
168
+ // antlr/UIQuery.g:39:1: expr : ( className | filter | visibility | predicate ) ;
187
169
  public final UIQueryParser.expr_return expr() throws RecognitionException {
188
170
  UIQueryParser.expr_return retval = new UIQueryParser.expr_return();
189
171
  retval.start = input.LT(1);
@@ -202,13 +184,13 @@ public TreeAdaptor getTreeAdaptor() {
202
184
 
203
185
 
204
186
  try {
205
- // antlr/UIQuery.g:38:6: ( ( className | filter | visibility | predicate ) )
206
- // antlr/UIQuery.g:38:8: ( className | filter | visibility | predicate )
187
+ // antlr/UIQuery.g:39:6: ( ( className | filter | visibility | predicate ) )
188
+ // antlr/UIQuery.g:39:8: ( className | filter | visibility | predicate )
207
189
  {
208
190
  root_0 = (CommonTree)adaptor.nil();
209
191
 
210
192
 
211
- // antlr/UIQuery.g:38:8: ( className | filter | visibility | predicate )
193
+ // antlr/UIQuery.g:39:8: ( className | filter | visibility | predicate )
212
194
  int alt2=4;
213
195
  switch ( input.LA(1) ) {
214
196
  case QUALIFIED_NAME:
@@ -257,9 +239,9 @@ public TreeAdaptor getTreeAdaptor() {
257
239
 
258
240
  switch (alt2) {
259
241
  case 1 :
260
- // antlr/UIQuery.g:38:9: className
242
+ // antlr/UIQuery.g:39:9: className
261
243
  {
262
- pushFollow(FOLLOW_className_in_expr77);
244
+ pushFollow(FOLLOW_className_in_expr80);
263
245
  className4=className();
264
246
 
265
247
  state._fsp--;
@@ -269,9 +251,9 @@ public TreeAdaptor getTreeAdaptor() {
269
251
  }
270
252
  break;
271
253
  case 2 :
272
- // antlr/UIQuery.g:38:21: filter
254
+ // antlr/UIQuery.g:39:21: filter
273
255
  {
274
- pushFollow(FOLLOW_filter_in_expr81);
256
+ pushFollow(FOLLOW_filter_in_expr84);
275
257
  filter5=filter();
276
258
 
277
259
  state._fsp--;
@@ -281,9 +263,9 @@ public TreeAdaptor getTreeAdaptor() {
281
263
  }
282
264
  break;
283
265
  case 3 :
284
- // antlr/UIQuery.g:38:30: visibility
266
+ // antlr/UIQuery.g:39:30: visibility
285
267
  {
286
- pushFollow(FOLLOW_visibility_in_expr85);
268
+ pushFollow(FOLLOW_visibility_in_expr88);
287
269
  visibility6=visibility();
288
270
 
289
271
  state._fsp--;
@@ -293,9 +275,9 @@ public TreeAdaptor getTreeAdaptor() {
293
275
  }
294
276
  break;
295
277
  case 4 :
296
- // antlr/UIQuery.g:38:43: predicate
278
+ // antlr/UIQuery.g:39:43: predicate
297
279
  {
298
- pushFollow(FOLLOW_predicate_in_expr89);
280
+ pushFollow(FOLLOW_predicate_in_expr92);
299
281
  predicate7=predicate();
300
282
 
301
283
  state._fsp--;
@@ -339,7 +321,7 @@ public TreeAdaptor getTreeAdaptor() {
339
321
 
340
322
 
341
323
  // $ANTLR start "className"
342
- // antlr/UIQuery.g:41:1: className : ( WILDCARD ^| NAME ^| QUALIFIED_NAME ^) ;
324
+ // antlr/UIQuery.g:42:1: className : ( WILDCARD ^| NAME ^| QUALIFIED_NAME ^) ;
343
325
  public final UIQueryParser.className_return className() throws RecognitionException {
344
326
  UIQueryParser.className_return retval = new UIQueryParser.className_return();
345
327
  retval.start = input.LT(1);
@@ -356,13 +338,13 @@ public TreeAdaptor getTreeAdaptor() {
356
338
  CommonTree QUALIFIED_NAME10_tree=null;
357
339
 
358
340
  try {
359
- // antlr/UIQuery.g:41:13: ( ( WILDCARD ^| NAME ^| QUALIFIED_NAME ^) )
360
- // antlr/UIQuery.g:41:17: ( WILDCARD ^| NAME ^| QUALIFIED_NAME ^)
341
+ // antlr/UIQuery.g:42:13: ( ( WILDCARD ^| NAME ^| QUALIFIED_NAME ^) )
342
+ // antlr/UIQuery.g:42:17: ( WILDCARD ^| NAME ^| QUALIFIED_NAME ^)
361
343
  {
362
344
  root_0 = (CommonTree)adaptor.nil();
363
345
 
364
346
 
365
- // antlr/UIQuery.g:41:17: ( WILDCARD ^| NAME ^| QUALIFIED_NAME ^)
347
+ // antlr/UIQuery.g:42:17: ( WILDCARD ^| NAME ^| QUALIFIED_NAME ^)
366
348
  int alt3=3;
367
349
  switch ( input.LA(1) ) {
368
350
  case WILDCARD:
@@ -390,9 +372,9 @@ public TreeAdaptor getTreeAdaptor() {
390
372
 
391
373
  switch (alt3) {
392
374
  case 1 :
393
- // antlr/UIQuery.g:41:18: WILDCARD ^
375
+ // antlr/UIQuery.g:42:18: WILDCARD ^
394
376
  {
395
- WILDCARD8=(Token)match(input,WILDCARD,FOLLOW_WILDCARD_in_className107);
377
+ WILDCARD8=(Token)match(input,WILDCARD,FOLLOW_WILDCARD_in_className110);
396
378
  WILDCARD8_tree =
397
379
  (CommonTree)adaptor.create(WILDCARD8)
398
380
  ;
@@ -402,9 +384,9 @@ public TreeAdaptor getTreeAdaptor() {
402
384
  }
403
385
  break;
404
386
  case 2 :
405
- // antlr/UIQuery.g:41:30: NAME ^
387
+ // antlr/UIQuery.g:42:30: NAME ^
406
388
  {
407
- NAME9=(Token)match(input,NAME,FOLLOW_NAME_in_className112);
389
+ NAME9=(Token)match(input,NAME,FOLLOW_NAME_in_className115);
408
390
  NAME9_tree =
409
391
  (CommonTree)adaptor.create(NAME9)
410
392
  ;
@@ -414,9 +396,9 @@ public TreeAdaptor getTreeAdaptor() {
414
396
  }
415
397
  break;
416
398
  case 3 :
417
- // antlr/UIQuery.g:41:38: QUALIFIED_NAME ^
399
+ // antlr/UIQuery.g:42:38: QUALIFIED_NAME ^
418
400
  {
419
- QUALIFIED_NAME10=(Token)match(input,QUALIFIED_NAME,FOLLOW_QUALIFIED_NAME_in_className117);
401
+ QUALIFIED_NAME10=(Token)match(input,QUALIFIED_NAME,FOLLOW_QUALIFIED_NAME_in_className120);
420
402
  QUALIFIED_NAME10_tree =
421
403
  (CommonTree)adaptor.create(QUALIFIED_NAME10)
422
404
  ;
@@ -460,7 +442,7 @@ public TreeAdaptor getTreeAdaptor() {
460
442
 
461
443
 
462
444
  // $ANTLR start "visibility"
463
- // antlr/UIQuery.g:47:1: visibility : ( ALL ^| VISIBLE ^) ;
445
+ // antlr/UIQuery.g:48:1: visibility : ( ALL ^| VISIBLE ^) ;
464
446
  public final UIQueryParser.visibility_return visibility() throws RecognitionException {
465
447
  UIQueryParser.visibility_return retval = new UIQueryParser.visibility_return();
466
448
  retval.start = input.LT(1);
@@ -475,13 +457,13 @@ public TreeAdaptor getTreeAdaptor() {
475
457
  CommonTree VISIBLE12_tree=null;
476
458
 
477
459
  try {
478
- // antlr/UIQuery.g:47:14: ( ( ALL ^| VISIBLE ^) )
479
- // antlr/UIQuery.g:47:18: ( ALL ^| VISIBLE ^)
460
+ // antlr/UIQuery.g:48:14: ( ( ALL ^| VISIBLE ^) )
461
+ // antlr/UIQuery.g:48:18: ( ALL ^| VISIBLE ^)
480
462
  {
481
463
  root_0 = (CommonTree)adaptor.nil();
482
464
 
483
465
 
484
- // antlr/UIQuery.g:47:18: ( ALL ^| VISIBLE ^)
466
+ // antlr/UIQuery.g:48:18: ( ALL ^| VISIBLE ^)
485
467
  int alt4=2;
486
468
  int LA4_0 = input.LA(1);
487
469
 
@@ -500,9 +482,9 @@ public TreeAdaptor getTreeAdaptor() {
500
482
  }
501
483
  switch (alt4) {
502
484
  case 1 :
503
- // antlr/UIQuery.g:47:19: ALL ^
485
+ // antlr/UIQuery.g:48:19: ALL ^
504
486
  {
505
- ALL11=(Token)match(input,ALL,FOLLOW_ALL_in_visibility155);
487
+ ALL11=(Token)match(input,ALL,FOLLOW_ALL_in_visibility158);
506
488
  ALL11_tree =
507
489
  (CommonTree)adaptor.create(ALL11)
508
490
  ;
@@ -512,9 +494,9 @@ public TreeAdaptor getTreeAdaptor() {
512
494
  }
513
495
  break;
514
496
  case 2 :
515
- // antlr/UIQuery.g:47:26: VISIBLE ^
497
+ // antlr/UIQuery.g:48:26: VISIBLE ^
516
498
  {
517
- VISIBLE12=(Token)match(input,VISIBLE,FOLLOW_VISIBLE_in_visibility160);
499
+ VISIBLE12=(Token)match(input,VISIBLE,FOLLOW_VISIBLE_in_visibility163);
518
500
  VISIBLE12_tree =
519
501
  (CommonTree)adaptor.create(VISIBLE12)
520
502
  ;
@@ -558,7 +540,7 @@ public TreeAdaptor getTreeAdaptor() {
558
540
 
559
541
 
560
542
  // $ANTLR start "filter"
561
- // antlr/UIQuery.g:54:1: filter : NAME FILTER_COLON ^ ( INT | STRING | BOOL | NIL ) ;
543
+ // antlr/UIQuery.g:55:1: filter : NAME FILTER_COLON ^ ( INT | STRING | BOOL | NIL ) ;
562
544
  public final UIQueryParser.filter_return filter() throws RecognitionException {
563
545
  UIQueryParser.filter_return retval = new UIQueryParser.filter_return();
564
546
  retval.start = input.LT(1);
@@ -575,20 +557,20 @@ public TreeAdaptor getTreeAdaptor() {
575
557
  CommonTree set15_tree=null;
576
558
 
577
559
  try {
578
- // antlr/UIQuery.g:54:8: ( NAME FILTER_COLON ^ ( INT | STRING | BOOL | NIL ) )
579
- // antlr/UIQuery.g:54:10: NAME FILTER_COLON ^ ( INT | STRING | BOOL | NIL )
560
+ // antlr/UIQuery.g:55:8: ( NAME FILTER_COLON ^ ( INT | STRING | BOOL | NIL ) )
561
+ // antlr/UIQuery.g:55:10: NAME FILTER_COLON ^ ( INT | STRING | BOOL | NIL )
580
562
  {
581
563
  root_0 = (CommonTree)adaptor.nil();
582
564
 
583
565
 
584
- NAME13=(Token)match(input,NAME,FOLLOW_NAME_in_filter187);
566
+ NAME13=(Token)match(input,NAME,FOLLOW_NAME_in_filter190);
585
567
  NAME13_tree =
586
568
  (CommonTree)adaptor.create(NAME13)
587
569
  ;
588
570
  adaptor.addChild(root_0, NAME13_tree);
589
571
 
590
572
 
591
- FILTER_COLON14=(Token)match(input,FILTER_COLON,FOLLOW_FILTER_COLON_in_filter189);
573
+ FILTER_COLON14=(Token)match(input,FILTER_COLON,FOLLOW_FILTER_COLON_in_filter192);
592
574
  FILTER_COLON14_tree =
593
575
  (CommonTree)adaptor.create(FILTER_COLON14)
594
576
  ;
@@ -641,7 +623,7 @@ public TreeAdaptor getTreeAdaptor() {
641
623
 
642
624
 
643
625
  // $ANTLR start "predicate"
644
- // antlr/UIQuery.g:59:1: predicate : BEGINPRED ^ NAME WHITE ! RELATION WHITE ! ( INT | STRING | BOOL | NIL ) ENDPRED !;
626
+ // antlr/UIQuery.g:60:1: predicate : BEGINPRED ^ NAME WHITE ! RELATION WHITE ! ( INT | STRING | BOOL | NIL ) ENDPRED !;
645
627
  public final UIQueryParser.predicate_return predicate() throws RecognitionException {
646
628
  UIQueryParser.predicate_return retval = new UIQueryParser.predicate_return();
647
629
  retval.start = input.LT(1);
@@ -666,36 +648,36 @@ public TreeAdaptor getTreeAdaptor() {
666
648
  CommonTree ENDPRED22_tree=null;
667
649
 
668
650
  try {
669
- // antlr/UIQuery.g:59:11: ( BEGINPRED ^ NAME WHITE ! RELATION WHITE ! ( INT | STRING | BOOL | NIL ) ENDPRED !)
670
- // antlr/UIQuery.g:59:13: BEGINPRED ^ NAME WHITE ! RELATION WHITE ! ( INT | STRING | BOOL | NIL ) ENDPRED !
651
+ // antlr/UIQuery.g:60:11: ( BEGINPRED ^ NAME WHITE ! RELATION WHITE ! ( INT | STRING | BOOL | NIL ) ENDPRED !)
652
+ // antlr/UIQuery.g:60:13: BEGINPRED ^ NAME WHITE ! RELATION WHITE ! ( INT | STRING | BOOL | NIL ) ENDPRED !
671
653
  {
672
654
  root_0 = (CommonTree)adaptor.nil();
673
655
 
674
656
 
675
- BEGINPRED16=(Token)match(input,BEGINPRED,FOLLOW_BEGINPRED_in_predicate225);
657
+ BEGINPRED16=(Token)match(input,BEGINPRED,FOLLOW_BEGINPRED_in_predicate228);
676
658
  BEGINPRED16_tree =
677
659
  (CommonTree)adaptor.create(BEGINPRED16)
678
660
  ;
679
661
  root_0 = (CommonTree)adaptor.becomeRoot(BEGINPRED16_tree, root_0);
680
662
 
681
663
 
682
- NAME17=(Token)match(input,NAME,FOLLOW_NAME_in_predicate228);
664
+ NAME17=(Token)match(input,NAME,FOLLOW_NAME_in_predicate231);
683
665
  NAME17_tree =
684
666
  (CommonTree)adaptor.create(NAME17)
685
667
  ;
686
668
  adaptor.addChild(root_0, NAME17_tree);
687
669
 
688
670
 
689
- WHITE18=(Token)match(input,WHITE,FOLLOW_WHITE_in_predicate230);
671
+ WHITE18=(Token)match(input,WHITE,FOLLOW_WHITE_in_predicate233);
690
672
 
691
- RELATION19=(Token)match(input,RELATION,FOLLOW_RELATION_in_predicate233);
673
+ RELATION19=(Token)match(input,RELATION,FOLLOW_RELATION_in_predicate236);
692
674
  RELATION19_tree =
693
675
  (CommonTree)adaptor.create(RELATION19)
694
676
  ;
695
677
  adaptor.addChild(root_0, RELATION19_tree);
696
678
 
697
679
 
698
- WHITE20=(Token)match(input,WHITE,FOLLOW_WHITE_in_predicate235);
680
+ WHITE20=(Token)match(input,WHITE,FOLLOW_WHITE_in_predicate238);
699
681
 
700
682
  set21=(Token)input.LT(1);
701
683
 
@@ -712,7 +694,7 @@ public TreeAdaptor getTreeAdaptor() {
712
694
  }
713
695
 
714
696
 
715
- ENDPRED22=(Token)match(input,ENDPRED,FOLLOW_ENDPRED_in_predicate254);
697
+ ENDPRED22=(Token)match(input,ENDPRED,FOLLOW_ENDPRED_in_predicate257);
716
698
 
717
699
  }
718
700
 
@@ -742,27 +724,27 @@ public TreeAdaptor getTreeAdaptor() {
742
724
 
743
725
 
744
726
 
745
- public static final BitSet FOLLOW_expr_in_query53 = new BitSet(new long[]{0x0000000000100002L});
746
- public static final BitSet FOLLOW_WHITE_in_query56 = new BitSet(new long[]{0x0000000000289030L});
747
- public static final BitSet FOLLOW_expr_in_query59 = new BitSet(new long[]{0x0000000000100002L});
748
- public static final BitSet FOLLOW_className_in_expr77 = new BitSet(new long[]{0x0000000000000002L});
749
- public static final BitSet FOLLOW_filter_in_expr81 = new BitSet(new long[]{0x0000000000000002L});
750
- public static final BitSet FOLLOW_visibility_in_expr85 = new BitSet(new long[]{0x0000000000000002L});
751
- public static final BitSet FOLLOW_predicate_in_expr89 = new BitSet(new long[]{0x0000000000000002L});
752
- public static final BitSet FOLLOW_WILDCARD_in_className107 = new BitSet(new long[]{0x0000000000000002L});
753
- public static final BitSet FOLLOW_NAME_in_className112 = new BitSet(new long[]{0x0000000000000002L});
754
- public static final BitSet FOLLOW_QUALIFIED_NAME_in_className117 = new BitSet(new long[]{0x0000000000000002L});
755
- public static final BitSet FOLLOW_ALL_in_visibility155 = new BitSet(new long[]{0x0000000000000002L});
756
- public static final BitSet FOLLOW_VISIBLE_in_visibility160 = new BitSet(new long[]{0x0000000000000002L});
757
- public static final BitSet FOLLOW_NAME_in_filter187 = new BitSet(new long[]{0x0000000000000200L});
758
- public static final BitSet FOLLOW_FILTER_COLON_in_filter189 = new BitSet(new long[]{0x0000000000022840L});
759
- public static final BitSet FOLLOW_set_in_filter192 = new BitSet(new long[]{0x0000000000000002L});
760
- public static final BitSet FOLLOW_BEGINPRED_in_predicate225 = new BitSet(new long[]{0x0000000000001000L});
761
- public static final BitSet FOLLOW_NAME_in_predicate228 = new BitSet(new long[]{0x0000000000100000L});
762
- public static final BitSet FOLLOW_WHITE_in_predicate230 = new BitSet(new long[]{0x0000000000010000L});
763
- public static final BitSet FOLLOW_RELATION_in_predicate233 = new BitSet(new long[]{0x0000000000100000L});
764
- public static final BitSet FOLLOW_WHITE_in_predicate235 = new BitSet(new long[]{0x0000000000022840L});
765
- public static final BitSet FOLLOW_set_in_predicate238 = new BitSet(new long[]{0x0000000000000080L});
766
- public static final BitSet FOLLOW_ENDPRED_in_predicate254 = new BitSet(new long[]{0x0000000000000002L});
727
+ public static final BitSet FOLLOW_expr_in_query56 = new BitSet(new long[]{0x0000000000100002L});
728
+ public static final BitSet FOLLOW_WHITE_in_query59 = new BitSet(new long[]{0x0000000000289030L});
729
+ public static final BitSet FOLLOW_expr_in_query62 = new BitSet(new long[]{0x0000000000100002L});
730
+ public static final BitSet FOLLOW_className_in_expr80 = new BitSet(new long[]{0x0000000000000002L});
731
+ public static final BitSet FOLLOW_filter_in_expr84 = new BitSet(new long[]{0x0000000000000002L});
732
+ public static final BitSet FOLLOW_visibility_in_expr88 = new BitSet(new long[]{0x0000000000000002L});
733
+ public static final BitSet FOLLOW_predicate_in_expr92 = new BitSet(new long[]{0x0000000000000002L});
734
+ public static final BitSet FOLLOW_WILDCARD_in_className110 = new BitSet(new long[]{0x0000000000000002L});
735
+ public static final BitSet FOLLOW_NAME_in_className115 = new BitSet(new long[]{0x0000000000000002L});
736
+ public static final BitSet FOLLOW_QUALIFIED_NAME_in_className120 = new BitSet(new long[]{0x0000000000000002L});
737
+ public static final BitSet FOLLOW_ALL_in_visibility158 = new BitSet(new long[]{0x0000000000000002L});
738
+ public static final BitSet FOLLOW_VISIBLE_in_visibility163 = new BitSet(new long[]{0x0000000000000002L});
739
+ public static final BitSet FOLLOW_NAME_in_filter190 = new BitSet(new long[]{0x0000000000000200L});
740
+ public static final BitSet FOLLOW_FILTER_COLON_in_filter192 = new BitSet(new long[]{0x0000000000022840L});
741
+ public static final BitSet FOLLOW_set_in_filter195 = new BitSet(new long[]{0x0000000000000002L});
742
+ public static final BitSet FOLLOW_BEGINPRED_in_predicate228 = new BitSet(new long[]{0x0000000000001000L});
743
+ public static final BitSet FOLLOW_NAME_in_predicate231 = new BitSet(new long[]{0x0000000000100000L});
744
+ public static final BitSet FOLLOW_WHITE_in_predicate233 = new BitSet(new long[]{0x0000000000010000L});
745
+ public static final BitSet FOLLOW_RELATION_in_predicate236 = new BitSet(new long[]{0x0000000000100000L});
746
+ public static final BitSet FOLLOW_WHITE_in_predicate238 = new BitSet(new long[]{0x0000000000022840L});
747
+ public static final BitSet FOLLOW_set_in_predicate241 = new BitSet(new long[]{0x0000000000000080L});
748
+ public static final BitSet FOLLOW_ENDPRED_in_predicate257 = new BitSet(new long[]{0x0000000000000002L});
767
749
 
768
750
  }
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: calabash-android
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0.pre11
4
+ version: 0.4.0.pre15
5
5
  prerelease: 6
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-01-26 00:00:00.000000000 Z
12
+ date: 2013-02-03 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: cucumber
@@ -170,6 +170,7 @@ files:
170
170
  - lib/calabash-android/steps/spinner_steps.rb
171
171
  - lib/calabash-android/steps/time_picker_steps.rb
172
172
  - lib/calabash-android/version.rb
173
+ - lib/calabash-android/wait_helpers.rb
173
174
  - test-server/AndroidManifest.xml
174
175
  - test-server/build.xml
175
176
  - test-server/instrumentation-backend/.classpath
@@ -292,6 +293,9 @@ files:
292
293
  - test-server/instrumentation-backend/src/sh/calaba/instrumentationbackend/actions/HttpServer.java
293
294
  - test-server/instrumentation-backend/src/sh/calaba/instrumentationbackend/actions/NanoHTTPD.java
294
295
  - test-server/instrumentation-backend/src/sh/calaba/instrumentationbackend/actions/NullAction.java
296
+ - test-server/instrumentation-backend/src/sh/calaba/instrumentationbackend/actions/activity/FinishOpenedActivities.java
297
+ - test-server/instrumentation-backend/src/sh/calaba/instrumentationbackend/actions/activity/GetOpenedActivities.java
298
+ - test-server/instrumentation-backend/src/sh/calaba/instrumentationbackend/actions/activity/GoBackToActivity.java
295
299
  - test-server/instrumentation-backend/src/sh/calaba/instrumentationbackend/actions/activity/SetActivityOrientation.java
296
300
  - test-server/instrumentation-backend/src/sh/calaba/instrumentationbackend/actions/button/PressButtonNumber.java
297
301
  - test-server/instrumentation-backend/src/sh/calaba/instrumentationbackend/actions/button/PressButtonText.java
@@ -305,6 +309,7 @@ files:
305
309
  - test-server/instrumentation-backend/src/sh/calaba/instrumentationbackend/actions/contextmenu/LongPressTextAndSelectFromMenuByText.java
306
310
  - test-server/instrumentation-backend/src/sh/calaba/instrumentationbackend/actions/gestures/ClickOnScreen.java
307
311
  - test-server/instrumentation-backend/src/sh/calaba/instrumentationbackend/actions/gestures/Drag.java
312
+ - test-server/instrumentation-backend/src/sh/calaba/instrumentationbackend/actions/gestures/DragCoordinates.java
308
313
  - test-server/instrumentation-backend/src/sh/calaba/instrumentationbackend/actions/gestures/Swipe.java
309
314
  - test-server/instrumentation-backend/src/sh/calaba/instrumentationbackend/actions/gestures/TouchCoordinates.java
310
315
  - test-server/instrumentation-backend/src/sh/calaba/instrumentationbackend/actions/helpers/InspectCurrentDialog.java
@@ -353,6 +358,7 @@ files:
353
358
  - test-server/instrumentation-backend/src/sh/calaba/instrumentationbackend/actions/time/SetDateByIndex.java
354
359
  - test-server/instrumentation-backend/src/sh/calaba/instrumentationbackend/actions/time/SetTimeByContentDescription.java
355
360
  - test-server/instrumentation-backend/src/sh/calaba/instrumentationbackend/actions/time/SetTimeByIndex.java
361
+ - test-server/instrumentation-backend/src/sh/calaba/instrumentationbackend/actions/version/Version.java
356
362
  - test-server/instrumentation-backend/src/sh/calaba/instrumentationbackend/actions/view/AssertViewProperty.java
357
363
  - test-server/instrumentation-backend/src/sh/calaba/instrumentationbackend/actions/view/ClickOnViewByDescription.java
358
364
  - test-server/instrumentation-backend/src/sh/calaba/instrumentationbackend/actions/view/ClickOnViewById.java