@@ -73,6 +73,7 @@ var CountByResult = function() {};
73
73
CountByResult . prototype . asJSON ;
74
74
75
75
var col = function ( ) { } ;
76
+ var lit = function ( ) { } ;
76
77
77
78
var Value = function ( ) { } ;
78
79
/** @type {? } */
@@ -83,26 +84,35 @@ Value.prototype.lteq;
83
84
Value . prototype . eq ;
84
85
85
86
var Col = function ( ) { } ;
86
-
87
- var Literal = function ( ) { } ;
88
-
87
+ /** @type {? } */
88
+ Col . prototype . bind ;
89
+ var Or = function ( ) { } ;
90
+ var And = function ( ) { } ;
89
91
var GTeq = function ( ) { } ;
90
92
/** @type {? } */
91
93
GTeq . prototype . and ;
92
94
/** @type {? } */
93
95
GTeq . prototype . or ;
94
-
95
96
var LTeq = function ( ) { } ;
96
97
/** @type {? } */
97
98
LTeq . prototype . and ;
98
99
/** @type {? } */
99
100
LTeq . prototype . or ;
100
-
101
101
var Equals = function ( ) { } ;
102
102
/** @type {? } */
103
103
Equals . prototype . and ;
104
104
/** @type {? } */
105
105
Equals . prototype . or ;
106
+ var Predicate = function ( ) { } ;
107
+ /** @type {? } */
108
+ Predicate . prototype . bind ;
109
+ /** @type {? } */
110
+ Predicate . prototype . and ;
111
+ /** @type {? } */
112
+ Predicate . prototype . or ;
113
+ /** @type {? } */
114
+ Predicate . prototype . ands ;
115
+ var Literal = function ( ) { } ;
106
116
107
117
var TableToStringIterator = function ( ) { } ;
108
118
/** @type {? } */
@@ -142,8 +152,6 @@ Vector.prototype.get;
142
152
/** @type {? } */
143
153
Vector . prototype . set ;
144
154
/** @type {? } */
145
- Vector . prototype . setData ;
146
- /** @type {? } */
147
155
Vector . prototype . toArray ;
148
156
/** @type {? } */
149
157
Vector . prototype . concat ;
@@ -465,97 +473,125 @@ var FlatView = function() {};
465
473
/** @type {? } */
466
474
FlatView . prototype . get ;
467
475
/** @type {? } */
476
+ FlatView . prototype . clone ;
477
+ /** @type {? } */
468
478
FlatView . prototype . isValid ;
469
479
/** @type {? } */
470
480
FlatView . prototype . toArray ;
471
481
/** @type {? } */
472
482
FlatView . prototype . set ;
483
+
484
+ var PrimitiveView = function ( ) { } ;
473
485
/** @type {? } */
474
- FlatView . prototype . setData ;
486
+ PrimitiveView . prototype . size ;
487
+ /** @type {? } */
488
+ PrimitiveView . prototype . clone ;
475
489
476
490
var NullView = function ( ) { } ;
477
491
/** @type {? } */
478
492
NullView . prototype . get ;
479
493
/** @type {? } */
494
+ NullView . prototype . clone ;
495
+ /** @type {? } */
480
496
NullView . prototype . isValid ;
481
497
/** @type {? } */
482
498
NullView . prototype . toArray ;
483
499
/** @type {? } */
484
500
NullView . prototype . set ;
485
- /** @type {? } */
486
- NullView . prototype . setData ;
487
501
488
502
var BoolView = function ( ) { } ;
489
503
/** @type {? } */
490
504
BoolView . prototype . get ;
491
505
/** @type {? } */
506
+ BoolView . prototype . clone ;
507
+ /** @type {? } */
492
508
BoolView . prototype . isValid ;
493
509
/** @type {? } */
494
510
BoolView . prototype . toArray ;
495
511
/** @type {? } */
496
512
BoolView . prototype . set ;
497
- /** @type {? } */
498
- BoolView . prototype . setData ;
499
513
500
514
var ValidityView = function ( ) { } ;
501
515
/** @type {? } */
502
516
ValidityView . prototype . get ;
503
517
/** @type {? } */
518
+ ValidityView . prototype . clone ;
519
+ /** @type {? } */
504
520
ValidityView . prototype . isValid ;
505
521
/** @type {? } */
506
522
ValidityView . prototype . toArray ;
507
523
/** @type {? } */
508
524
ValidityView . prototype . set ;
509
- /** @type {? } */
510
- ValidityView . prototype . setData ;
511
525
512
526
var DictionaryView = function ( ) { } ;
513
527
/** @type {? } */
514
528
DictionaryView . prototype . get ;
515
529
/** @type {? } */
530
+ DictionaryView . prototype . clone ;
531
+ /** @type {? } */
516
532
DictionaryView . prototype . isValid ;
517
533
/** @type {? } */
518
534
DictionaryView . prototype . toArray ;
519
535
/** @type {? } */
520
536
DictionaryView . prototype . set ;
521
- /** @type {? } */
522
- DictionaryView . prototype . setData ;
523
537
524
538
var ListViewBase = function ( ) { } ;
525
539
/** @type {? } */
526
540
ListViewBase . prototype . get ;
527
541
/** @type {? } */
542
+ ListViewBase . prototype . clone ;
543
+ /** @type {? } */
528
544
ListViewBase . prototype . isValid ;
529
545
/** @type {? } */
530
546
ListViewBase . prototype . toArray ;
531
547
/** @type {? } */
532
548
ListViewBase . prototype . set ;
533
- /** @type {? } */
534
- ListViewBase . prototype . setData ;
535
549
536
550
var NestedView = function ( ) { } ;
537
551
/** @type {? } */
538
552
NestedView . prototype . get ;
539
553
/** @type {? } */
554
+ NestedView . prototype . clone ;
555
+ /** @type {? } */
540
556
NestedView . prototype . isValid ;
541
557
/** @type {? } */
542
558
NestedView . prototype . toArray ;
543
559
/** @type {? } */
544
560
NestedView . prototype . set ;
545
- /** @type {? } */
546
- NestedView . prototype . setData ;
547
561
548
562
var ChunkedView = function ( ) { } ;
549
563
/** @type {? } */
550
564
ChunkedView . prototype . get ;
551
565
/** @type {? } */
566
+ ChunkedView . prototype . clone ;
567
+ /** @type {? } */
552
568
ChunkedView . prototype . isValid ;
553
569
/** @type {? } */
554
570
ChunkedView . prototype . toArray ;
555
571
/** @type {? } */
556
572
ChunkedView . prototype . set ;
557
- /** @type {? } */
558
- ChunkedView . prototype . setData ;
573
+
574
+ var ListView = function ( ) { } ;
575
+ var FixedSizeListView = function ( ) { } ;
576
+ var BinaryView = function ( ) { } ;
577
+ var Utf8View = function ( ) { } ;
578
+ var UnionView = function ( ) { } ;
579
+ var DenseUnionView = function ( ) { } ;
580
+ var StructView = function ( ) { } ;
581
+ var MapView = function ( ) { } ;
582
+ var NullView = function ( ) { } ;
583
+ var FixedSizeView = function ( ) { } ;
584
+ var Float16View = function ( ) { } ;
585
+ var DateDayView = function ( ) { } ;
586
+ var DateMillisecondView = function ( ) { } ;
587
+ var TimestampDayView = function ( ) { } ;
588
+ var TimestampSecondView = function ( ) { } ;
589
+ var TimestampMillisecondView = function ( ) { } ;
590
+ var TimestampMicrosecondView = function ( ) { } ;
591
+ var TimestampNanosecondView = function ( ) { } ;
592
+ var IntervalYearMonthView = function ( ) { } ;
593
+ var IntervalYearView = function ( ) { } ;
594
+ var IntervalMonthView = function ( ) { } ;
559
595
560
596
var TypeVisitor = function ( ) { } ;
561
597
/** @type {? } */
0 commit comments