Skip to content

Commit ac1c59a

Browse files
authored
Selector: Rename rcombinators to rleadingCombinator
Closes gh-5208
1 parent 582785e commit ac1c59a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/selector.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ var i,
9292
rwhitespace = new RegExp( whitespace + "+", "g" ),
9393

9494
rcomma = new RegExp( "^" + whitespace + "*," + whitespace + "*" ),
95-
rcombinators = new RegExp( "^" + whitespace + "*([>+~]|" + whitespace + ")" +
95+
rleadingCombinator = new RegExp( "^" + whitespace + "*([>+~]|" + whitespace + ")" +
9696
whitespace + "*" ),
9797
rdescend = new RegExp( whitespace + "|>" ),
9898

@@ -270,7 +270,7 @@ function find( selector, context, results, seed ) {
270270
// as such selectors are not recognized by querySelectorAll.
271271
// Thanks to Andrew Dupont for this technique.
272272
if ( nodeType === 1 &&
273-
( rdescend.test( selector ) || rcombinators.test( selector ) ) ) {
273+
( rdescend.test( selector ) || rleadingCombinator.test( selector ) ) ) {
274274

275275
// Expand context for sibling selectors
276276
newContext = rsibling.test( selector ) && testContext( context.parentNode ) ||
@@ -1527,7 +1527,7 @@ function tokenize( selector, parseOnly ) {
15271527
matched = false;
15281528

15291529
// Combinators
1530-
if ( ( match = rcombinators.exec( soFar ) ) ) {
1530+
if ( ( match = rleadingCombinator.exec( soFar ) ) ) {
15311531
matched = match.shift();
15321532
tokens.push( {
15331533
value: matched,

0 commit comments

Comments
 (0)