@@ -11,8 +11,8 @@ var handle = zwitch('nestingOperator')
1111var handlers = handle . handlers
1212
1313handle . unknown = unknownNesting
14- handle . invalid = topScan /* `undefined` is the top query selector. */
15- handlers . null = descendant /* `null` is the descendant combinator. */
14+ handle . invalid = topScan // `undefined` is the top query selector.
15+ handlers . null = descendant // `null` is the descendant combinator.
1616handlers [ '>' ] = child
1717handlers [ '+' ] = adjacentSibling
1818handlers [ '~' ] = generalSibling
@@ -94,7 +94,7 @@ function generalSibling(query, node, index, parent, state) {
9494 . done ( )
9595}
9696
97- /* Handles typeIndex and typeCount properties for every walker. */
97+ // Handles typeIndex and typeCount properties for every walker.
9898function walkIterator ( query , parent , state ) {
9999 var nodes = parent . children
100100 var typeIndex = state . index ? createTypeIndex ( ) : null
@@ -149,7 +149,7 @@ function walkIterator(query, parent, state) {
149149 pushNode ( )
150150 }
151151
152- /* Stop if we’re looking for one node and it’s already found. */
152+ // Stop if we’re looking for one node and it’s already found.
153153 if ( state . one && state . found ) {
154154 return this
155155 }
@@ -203,7 +203,7 @@ function createTypeIndex() {
203203 counts [ type ] = 0
204204 }
205205
206- /* Note: ++ is intended to be postfixed! */
206+ // Note: ++ is intended to be postfixed!
207207 return counts [ type ] ++
208208 }
209209
0 commit comments