Lines Matching refs:isNested

25179     RuleSet.prototype.isNested = function () {  method in RuleSet
26923 Parser.prototype._parseStylesheetStatement = function (isNested) { argument
26924 if (isNested === void 0) { isNested = false; }
26926 return this._parseStylesheetAtStatement(isNested);
26928 return this._parseRuleset(isNested);
26930 Parser.prototype._parseStylesheetAtStatement = function (isNested) { argument
26931 if (isNested === void 0) { isNested = false; }
26933 || this._parseMedia(isNested)
26937 || this._parseSupports(isNested)
26943 Parser.prototype._tryParseRuleset = function (isNested) { argument
26945 if (this._parseSelector(isNested)) {
26946 …_cssScanner_js__WEBPACK_IMPORTED_MODULE_0__["TokenType"].Comma) && this._parseSelector(isNested)) {
26951 return this._parseRuleset(isNested);
26957 Parser.prototype._parseRuleset = function (isNested) { argument
26958 if (isNested === void 0) { isNested = false; }
26961 if (!selectors.addChild(this._parseSelector(isNested))) {
26965 if (!selectors.addChild(this._parseSelector(isNested))) {
27066 Parser.prototype._parseSelector = function (isNested) { argument
27069 if (isNested) {
27371 Parser.prototype._parseSupports = function (isNested) { argument
27372 if (isNested === void 0) { isNested = false; }
27380 return this._parseBody(node, this._parseSupportsDeclaration.bind(this, isNested));
27382 Parser.prototype._parseSupportsDeclaration = function (isNested) { argument
27383 if (isNested === void 0) { isNested = false; }
27384 if (isNested) {
27456 Parser.prototype._parseMediaDeclaration = function (isNested) { argument
27457 if (isNested === void 0) { isNested = false; }
27458 if (isNested) {
27466 Parser.prototype._parseMedia = function (isNested) { argument
27467 if (isNested === void 0) { isNested = false; }
27478 return this._parseBody(node, this._parseMediaDeclaration.bind(this, isNested));
29119 LESSParser.prototype._parseStylesheetStatement = function (isNested) { argument
29120 if (isNested === void 0) { isNested = false; }
29124 || _super.prototype._parseStylesheetAtStatement.call(this, isNested); argument
29184 LESSParser.prototype._parseMediaDeclaration = function (isNested) { argument
29185 if (isNested === void 0) { isNested = false; }
29186 return this._tryParseRuleset(isNested)
29191 || this._parseStylesheetStatement(isNested);
29401 LESSParser.prototype._parseSelector = function (isNested) { argument
29405 if (isNested) {
30006 SCSSParser.prototype._parseStylesheetStatement = function (isNested) { argument
30007 if (isNested === void 0) { isNested = false; }
30017 || this._parseRuleset(isNested) // @at-rule
30018 || _super.prototype._parseStylesheetAtStatement.call(this, isNested); argument
31161 … this.getCompletionsForSelector(parentRuleSet, parentRuleSet && parentRuleSet.isNested(), result);
31744 return this.getCompletionsForSelector(ruleSet, ruleSet.isNested(), result);
31748 CSSCompletion.prototype.getCompletionsForSelector = function (ruleSet, isNested, result) { argument
31788 if (!isNested) { // show html tags only for top level
31824 if (ruleSet && ruleSet.isNested()) {
34727 SCSSCompletion.prototype.getCompletionsForSelector = function (ruleSet, isNested, result) { argument
34729 return _super.prototype.getCompletionsForSelector.call(this, ruleSet, isNested, result); argument