Searched +full:block +full:- +full:scoped +full:- +full:var (Results 1 – 25 of 112) sorted by relevance
12345
| /third_party/node/tools/node_modules/eslint/lib/rules/ |
| D | block-scoped-var.js | 2 * @fileoverview Rule to check for "block scoped" variables by binding context 7 //------------------------------------------------------------------------------ 9 //------------------------------------------------------------------------------ 19 url: "https://eslint.org/docs/rules/block-scoped-var" 33 * Makes a block scope. 42 * Pops the last block scope. 51 * @param {eslint-scope.Reference} reference A reference to report. 66 if (node.kind !== "var") { 71 const scopeRange = stack[stack.length - 1];
|
| D | no-else-return.js | 8 //------------------------------------------------------------------------------ 10 //------------------------------------------------------------------------------ 12 const astUtils = require("./utils/ast-utils"); 13 const FixTracker = require("./utils/fix-tracker"); 15 //------------------------------------------------------------------------------ 17 //------------------------------------------------------------------------------ 27 url: "https://eslint.org/docs/rules/no-else-return" 50 //-------------------------------------------------------------------------- 52 //-------------------------------------------------------------------------- 55 * Checks whether the given names can be safely used to declare block-scoped variables [all …]
|
| D | index.js | 2 …* @fileoverview Collects the built-in rules into a map structure so that they can be imported all … 3 * using the file-system directly. 9 /* eslint sort-keys: ["error", "asc"] */ 11 const { LazyLoadingRuleMap } = require("./utils/lazy-loading-rule-map"); 15 "accessor-pairs": () => require("./accessor-pairs"), 16 "array-bracket-newline": () => require("./array-bracket-newline"), 17 "array-bracket-spacing": () => require("./array-bracket-spacing"), 18 "array-callback-return": () => require("./array-callback-return"), 19 "array-element-newline": () => require("./array-element-newline"), 20 "arrow-body-style": () => require("./arrow-body-style"), [all …]
|
| /third_party/node/deps/npm/docs/public/using-npm/scope/ |
| D | index.html | 1 …var i=(window.location.pathname.match(/^(\/(?:ipfs|ipns)\/[^/]+)/)||[])[1]||"";window.__GATSBY_IPF… 2 /* sc-component-id: links__NavLink-sc-19vgq0o-1 */ 3 …-weight:500;-webkit-text-decoration:none;text-decoration:none;-webkit-letter-spacing:.3px;-moz-let… 4 /* sc-component-id: links__BasicNavLink-sc-19vgq0o-2 */ 5 …-weight:500;-webkit-text-decoration:none;text-decoration:none;-webkit-letter-spacing:.3px;-moz-let… 6 /* sc-component-id: links__SidebarLink-sc-19vgq0o-3 */ 7 …-weight:500;-webkit-text-decoration:none;text-decoration:none;-webkit-letter-spacing:.3px;-moz-let… 8 /* sc-component-id: Accordion__SectionButton-i8yhwx-0 */ 9 …-color:transparent;cursor:pointer;color:red;border:none;font-size:18px;font-weight:bold;padding:5p… 10 /* sc-component-id: DocLinks__LinkDesc-sc-1vrw6od-0 */ [all …]
|
| /third_party/node/deps/npm/node_modules/fast-json-stable-stringify/ |
| D | .eslintrc.yml | 6 block-scoped-var: 2 7 callback-return: 2 8 dot-notation: 2 10 linebreak-style: [2, unix] 11 new-cap: 2 12 no-console: [2, allow: [warn, error]] 13 no-else-return: 2 14 no-eq-null: 2 15 no-fallthrough: 2 16 no-invalid-this: 2 [all …]
|
| /third_party/node/deps/npm/node_modules/har-validator/node_modules/json-schema-traverse/ |
| D | .eslintrc.yml | 6 block-scoped-var: 2 8 curly: [2, multi-or-nest, consistent] 9 dot-location: [2, property] 10 dot-notation: 2 12 linebreak-style: [2, unix] 13 new-cap: 2 14 no-console: [2, allow: [warn, error]] 15 no-else-return: 2 16 no-eq-null: 2 17 no-fallthrough: 2 [all …]
|
| /third_party/node/tools/node_modules/babel-eslint/node_modules/@babel/types/lib/constants/ |
| D | index.js | 17 const UPDATE_OPERATORS = ["++", "--"]; 27 const NUMBER_BINARY_OPERATORS = ["-", "/", "%", "*", "**", "&", "|", ">>", ">>>", "<<", "^"]; 33 const NUMBER_UNARY_OPERATORS = ["+", "-", "~"]; 44 const BLOCK_SCOPED_SYMBOL = Symbol.for("var used to be block scoped");
|
| /third_party/node/ |
| D | .eslintrc.js | 3 /* eslint-env node */ 8 const NodePlugin = require('./tools/node_modules/eslint-plugin-node-core'); 9 NodePlugin.RULES_DIR = path.resolve(__dirname, 'tools', 'eslint-rules'); 12 // if invoked by a globally-installed ESLint or ESLint installed elsewhere 17 'eslint-plugin-node-core', 18 'eslint-plugin-markdown', 19 'babel-eslint', 28 // eslint-disable-next-line no-unused-vars 39 plugins: ['markdown', 'node-core'], 40 parser: 'babel-eslint', [all …]
|
| /third_party/node/tools/node_modules/eslint/node_modules/eslint-scope/lib/ |
| D | scope.js | 26 /* eslint-disable no-underscore-dangle */ 27 /* eslint-disable no-undefined */ 38 * @param {Scope} scope - scope 39 * @param {Block} block - block 40 * @param {boolean} isMethodDefinition - is method definition 41 * @param {boolean} useDirective - use directive 44 function isStrictScope(scope, block, isMethodDefinition, useDirective) { argument 60 if (scope.type === "block" || scope.type === "switch") { 65 … if (block.type === Syntax.ArrowFunctionExpression && block.body.type !== Syntax.BlockStatement) { 69 if (block.type === Syntax.Program) { [all …]
|
| D | referencer.js | 26 /* eslint-disable no-underscore-dangle */ 27 /* eslint-disable no-undefined */ 33 const PatternVisitor = require("./pattern-visitor"); 42 * @param {Object} options - options 43 * @param {pattern} rootPattern - root pattern 44 * @param {Refencer} referencer - referencer 45 * @param {callback} callback - callback 62 // http://people.mozilla.org/~jorendorff/es6-draft.html#sec-moduledeclarationinstantiation 128 while (this.currentScope() && node === this.currentScope().block) { 183 // in ES6, FunctionDeclaration should be block scoped. [all …]
|
| /third_party/node/deps/npm/docs/public/cli-commands/npm-access/ |
| D | index.html | 1 …var i=(window.location.pathname.match(/^(\/(?:ipfs|ipns)\/[^/]+)/)||[])[1]||"";window.__GATSBY_IPF… 2 /* sc-component-id: links__NavLink-sc-19vgq0o-1 */ 3 …-weight:500;-webkit-text-decoration:none;text-decoration:none;-webkit-letter-spacing:.3px;-moz-let… 4 /* sc-component-id: links__BasicNavLink-sc-19vgq0o-2 */ 5 …-weight:500;-webkit-text-decoration:none;text-decoration:none;-webkit-letter-spacing:.3px;-moz-let… 6 /* sc-component-id: links__SidebarLink-sc-19vgq0o-3 */ 7 …-weight:500;-webkit-text-decoration:none;text-decoration:none;-webkit-letter-spacing:.3px;-moz-let… 8 /* sc-component-id: Accordion__SectionButton-i8yhwx-0 */ 9 …-color:transparent;cursor:pointer;color:red;border:none;font-size:18px;font-weight:bold;padding:5p… 10 /* sc-component-id: DocLinks__LinkDesc-sc-1vrw6od-0 */ [all …]
|
| /third_party/boost/tools/quickbook/src/ |
| D | main_grammar.cpp | 23 #include "scoped.hpp" 42 nested_block // Nested in a block element. 117 // Mask used to determine whether or not an element is a block 137 bool still_in_block; // Inside a syntatic block 370 // clang-format off in init_main() 372 // phrase/phrase_start is used for an entirely self-contained in init_main() 399 // extended_phrase is like a paragraph_phrase but allows some block in init_main() 440 // Phrase templates can contain block tags, but can't contain in init_main() 478 >> ( cl::eps_p(ph::var(local.block_type) == block_types::code) in init_main() 480 | cl::eps_p(ph::var(local.block_type) == block_types::list) in init_main() [all …]
|
| /third_party/node/deps/npm/docs/public/cli-commands/npm-publish/ |
| D | index.html | 1 …var i=(window.location.pathname.match(/^(\/(?:ipfs|ipns)\/[^/]+)/)||[])[1]||"";window.__GATSBY_IPF… 2 /* sc-component-id: links__NavLink-sc-19vgq0o-1 */ 3 …-weight:500;-webkit-text-decoration:none;text-decoration:none;-webkit-letter-spacing:.3px;-moz-let… 4 /* sc-component-id: links__BasicNavLink-sc-19vgq0o-2 */ 5 …-weight:500;-webkit-text-decoration:none;text-decoration:none;-webkit-letter-spacing:.3px;-moz-let… 6 /* sc-component-id: links__SidebarLink-sc-19vgq0o-3 */ 7 …-weight:500;-webkit-text-decoration:none;text-decoration:none;-webkit-letter-spacing:.3px;-moz-let… 8 /* sc-component-id: Accordion__SectionButton-i8yhwx-0 */ 9 …-color:transparent;cursor:pointer;color:red;border:none;font-size:18px;font-weight:bold;padding:5p… 10 /* sc-component-id: DocLinks__LinkDesc-sc-1vrw6od-0 */ [all …]
|
| /third_party/node/deps/npm/docs/public/cli-commands/npm-pack/ |
| D | index.html | 1 …var i=(window.location.pathname.match(/^(\/(?:ipfs|ipns)\/[^/]+)/)||[])[1]||"";window.__GATSBY_IPF… 2 /* sc-component-id: links__NavLink-sc-19vgq0o-1 */ 3 …-weight:500;-webkit-text-decoration:none;text-decoration:none;-webkit-letter-spacing:.3px;-moz-let… 4 /* sc-component-id: links__BasicNavLink-sc-19vgq0o-2 */ 5 …-weight:500;-webkit-text-decoration:none;text-decoration:none;-webkit-letter-spacing:.3px;-moz-let… 6 /* sc-component-id: links__SidebarLink-sc-19vgq0o-3 */ 7 …-weight:500;-webkit-text-decoration:none;text-decoration:none;-webkit-letter-spacing:.3px;-moz-let… 8 /* sc-component-id: Accordion__SectionButton-i8yhwx-0 */ 9 …-color:transparent;cursor:pointer;color:red;border:none;font-size:18px;font-weight:bold;padding:5p… 10 /* sc-component-id: DocLinks__LinkDesc-sc-1vrw6od-0 */ [all …]
|
| /third_party/node/deps/npm/docs/public/cli-commands/npm-init/ |
| D | index.html | 1 …var i=(window.location.pathname.match(/^(\/(?:ipfs|ipns)\/[^/]+)/)||[])[1]||"";window.__GATSBY_IPF… 2 /* sc-component-id: links__NavLink-sc-19vgq0o-1 */ 3 …-weight:500;-webkit-text-decoration:none;text-decoration:none;-webkit-letter-spacing:.3px;-moz-let… 4 /* sc-component-id: links__BasicNavLink-sc-19vgq0o-2 */ 5 …-weight:500;-webkit-text-decoration:none;text-decoration:none;-webkit-letter-spacing:.3px;-moz-let… 6 /* sc-component-id: links__SidebarLink-sc-19vgq0o-3 */ 7 …-weight:500;-webkit-text-decoration:none;text-decoration:none;-webkit-letter-spacing:.3px;-moz-let… 8 /* sc-component-id: Accordion__SectionButton-i8yhwx-0 */ 9 …-color:transparent;cursor:pointer;color:red;border:none;font-size:18px;font-weight:bold;padding:5p… 10 /* sc-component-id: DocLinks__LinkDesc-sc-1vrw6od-0 */ [all …]
|
| /third_party/node/deps/npm/docs/public/cli-commands/npm-link/ |
| D | index.html | 1 …var i=(window.location.pathname.match(/^(\/(?:ipfs|ipns)\/[^/]+)/)||[])[1]||"";window.__GATSBY_IPF… 2 /* sc-component-id: links__NavLink-sc-19vgq0o-1 */ 3 …-weight:500;-webkit-text-decoration:none;text-decoration:none;-webkit-letter-spacing:.3px;-moz-let… 4 /* sc-component-id: links__BasicNavLink-sc-19vgq0o-2 */ 5 …-weight:500;-webkit-text-decoration:none;text-decoration:none;-webkit-letter-spacing:.3px;-moz-let… 6 /* sc-component-id: links__SidebarLink-sc-19vgq0o-3 */ 7 …-weight:500;-webkit-text-decoration:none;text-decoration:none;-webkit-letter-spacing:.3px;-moz-let… 8 /* sc-component-id: Accordion__SectionButton-i8yhwx-0 */ 9 …-color:transparent;cursor:pointer;color:red;border:none;font-size:18px;font-weight:bold;padding:5p… 10 /* sc-component-id: DocLinks__LinkDesc-sc-1vrw6od-0 */ [all …]
|
| /third_party/ninja/doc/ |
| D | manual.asciidoc | 7 ------------ 18 non-recursive Makefiles) would take ten seconds to start building 24 Where other build systems are high-level languages, Ninja aims to be 28 in a edit-compile cycle you want it to be as fast as possible -- you 40 incremental builds stay fast. Going beyond autotools, even build-time 42 build a debug or release-mode binary?" belong in the `.ninja` file 54 higher-level build systems have different opinions about how code 65 source code you need to use gcc's `-M` flags for header 70 Some explicit _non-goals_: 76 * built-in rules. _Out of the box, Ninja has no rules for [all …]
|
| /third_party/node/deps/npm/docs/public/using-npm/registry/ |
| D | index.html | 1 …var i=(window.location.pathname.match(/^(\/(?:ipfs|ipns)\/[^/]+)/)||[])[1]||"";window.__GATSBY_IPF… 2 /* sc-component-id: links__NavLink-sc-19vgq0o-1 */ 3 …-weight:500;-webkit-text-decoration:none;text-decoration:none;-webkit-letter-spacing:.3px;-moz-let… 4 /* sc-component-id: links__BasicNavLink-sc-19vgq0o-2 */ 5 …-weight:500;-webkit-text-decoration:none;text-decoration:none;-webkit-letter-spacing:.3px;-moz-let… 6 /* sc-component-id: links__SidebarLink-sc-19vgq0o-3 */ 7 …-weight:500;-webkit-text-decoration:none;text-decoration:none;-webkit-letter-spacing:.3px;-moz-let… 8 /* sc-component-id: Accordion__SectionButton-i8yhwx-0 */ 9 …-color:transparent;cursor:pointer;color:red;border:none;font-size:18px;font-weight:bold;padding:5p… 10 /* sc-component-id: DocLinks__LinkDesc-sc-1vrw6od-0 */ [all …]
|
| /third_party/node/deps/npm/docs/public/configuring-npm/npmrc/ |
| D | index.html | 1 …var i=(window.location.pathname.match(/^(\/(?:ipfs|ipns)\/[^/]+)/)||[])[1]||"";window.__GATSBY_IPF… 2 /* sc-component-id: links__NavLink-sc-19vgq0o-1 */ 3 …-weight:500;-webkit-text-decoration:none;text-decoration:none;-webkit-letter-spacing:.3px;-moz-let… 4 /* sc-component-id: links__BasicNavLink-sc-19vgq0o-2 */ 5 …-weight:500;-webkit-text-decoration:none;text-decoration:none;-webkit-letter-spacing:.3px;-moz-let… 6 /* sc-component-id: links__SidebarLink-sc-19vgq0o-3 */ 7 …-weight:500;-webkit-text-decoration:none;text-decoration:none;-webkit-letter-spacing:.3px;-moz-let… 8 /* sc-component-id: Accordion__SectionButton-i8yhwx-0 */ 9 …-color:transparent;cursor:pointer;color:red;border:none;font-size:18px;font-weight:bold;padding:5p… 10 /* sc-component-id: DocLinks__LinkDesc-sc-1vrw6od-0 */ [all …]
|
| /third_party/node/deps/npm/docs/public/cli-commands/npm-install-ci-test/ |
| D | index.html | 1 …var i=(window.location.pathname.match(/^(\/(?:ipfs|ipns)\/[^/]+)/)||[])[1]||"";window.__GATSBY_IPF… 2 /* sc-component-id: links__NavLink-sc-19vgq0o-1 */ 3 …-weight:500;-webkit-text-decoration:none;text-decoration:none;-webkit-letter-spacing:.3px;-moz-let… 4 /* sc-component-id: links__BasicNavLink-sc-19vgq0o-2 */ 5 …-weight:500;-webkit-text-decoration:none;text-decoration:none;-webkit-letter-spacing:.3px;-moz-let… 6 /* sc-component-id: links__SidebarLink-sc-19vgq0o-3 */ 7 …-weight:500;-webkit-text-decoration:none;text-decoration:none;-webkit-letter-spacing:.3px;-moz-let… 8 /* sc-component-id: Accordion__SectionButton-i8yhwx-0 */ 9 …-color:transparent;cursor:pointer;color:red;border:none;font-size:18px;font-weight:bold;padding:5p… 10 /* sc-component-id: DocLinks__LinkDesc-sc-1vrw6od-0 */ [all …]
|
| /third_party/node/deps/npm/docs/public/cli-commands/npm-prefix/ |
| D | index.html | 1 …var i=(window.location.pathname.match(/^(\/(?:ipfs|ipns)\/[^/]+)/)||[])[1]||"";window.__GATSBY_IPF… 2 /* sc-component-id: links__NavLink-sc-19vgq0o-1 */ 3 …-weight:500;-webkit-text-decoration:none;text-decoration:none;-webkit-letter-spacing:.3px;-moz-let… 4 /* sc-component-id: links__BasicNavLink-sc-19vgq0o-2 */ 5 …-weight:500;-webkit-text-decoration:none;text-decoration:none;-webkit-letter-spacing:.3px;-moz-let… 6 /* sc-component-id: links__SidebarLink-sc-19vgq0o-3 */ 7 …-weight:500;-webkit-text-decoration:none;text-decoration:none;-webkit-letter-spacing:.3px;-moz-let… 8 /* sc-component-id: Accordion__SectionButton-i8yhwx-0 */ 9 …-color:transparent;cursor:pointer;color:red;border:none;font-size:18px;font-weight:bold;padding:5p… 10 /* sc-component-id: DocLinks__LinkDesc-sc-1vrw6od-0 */ [all …]
|
| /third_party/node/deps/npm/docs/public/cli-commands/npm-test/ |
| D | index.html | 1 …var i=(window.location.pathname.match(/^(\/(?:ipfs|ipns)\/[^/]+)/)||[])[1]||"";window.__GATSBY_IPF… 2 /* sc-component-id: links__NavLink-sc-19vgq0o-1 */ 3 …-weight:500;-webkit-text-decoration:none;text-decoration:none;-webkit-letter-spacing:.3px;-moz-let… 4 /* sc-component-id: links__BasicNavLink-sc-19vgq0o-2 */ 5 …-weight:500;-webkit-text-decoration:none;text-decoration:none;-webkit-letter-spacing:.3px;-moz-let… 6 /* sc-component-id: links__SidebarLink-sc-19vgq0o-3 */ 7 …-weight:500;-webkit-text-decoration:none;text-decoration:none;-webkit-letter-spacing:.3px;-moz-let… 8 /* sc-component-id: Accordion__SectionButton-i8yhwx-0 */ 9 …-color:transparent;cursor:pointer;color:red;border:none;font-size:18px;font-weight:bold;padding:5p… 10 /* sc-component-id: DocLinks__LinkDesc-sc-1vrw6od-0 */ [all …]
|
| /third_party/node/deps/npm/docs/public/cli-commands/npm-stop/ |
| D | index.html | 1 …var i=(window.location.pathname.match(/^(\/(?:ipfs|ipns)\/[^/]+)/)||[])[1]||"";window.__GATSBY_IPF… 2 /* sc-component-id: links__NavLink-sc-19vgq0o-1 */ 3 …-weight:500;-webkit-text-decoration:none;text-decoration:none;-webkit-letter-spacing:.3px;-moz-let… 4 /* sc-component-id: links__BasicNavLink-sc-19vgq0o-2 */ 5 …-weight:500;-webkit-text-decoration:none;text-decoration:none;-webkit-letter-spacing:.3px;-moz-let… 6 /* sc-component-id: links__SidebarLink-sc-19vgq0o-3 */ 7 …-weight:500;-webkit-text-decoration:none;text-decoration:none;-webkit-letter-spacing:.3px;-moz-let… 8 /* sc-component-id: Accordion__SectionButton-i8yhwx-0 */ 9 …-color:transparent;cursor:pointer;color:red;border:none;font-size:18px;font-weight:bold;padding:5p… 10 /* sc-component-id: DocLinks__LinkDesc-sc-1vrw6od-0 */ [all …]
|
| /third_party/node/deps/npm/docs/public/cli-commands/npm-bin/ |
| D | index.html | 1 …var i=(window.location.pathname.match(/^(\/(?:ipfs|ipns)\/[^/]+)/)||[])[1]||"";window.__GATSBY_IPF… 2 /* sc-component-id: links__NavLink-sc-19vgq0o-1 */ 3 …-weight:500;-webkit-text-decoration:none;text-decoration:none;-webkit-letter-spacing:.3px;-moz-let… 4 /* sc-component-id: links__BasicNavLink-sc-19vgq0o-2 */ 5 …-weight:500;-webkit-text-decoration:none;text-decoration:none;-webkit-letter-spacing:.3px;-moz-let… 6 /* sc-component-id: links__SidebarLink-sc-19vgq0o-3 */ 7 …-weight:500;-webkit-text-decoration:none;text-decoration:none;-webkit-letter-spacing:.3px;-moz-let… 8 /* sc-component-id: Accordion__SectionButton-i8yhwx-0 */ 9 …-color:transparent;cursor:pointer;color:red;border:none;font-size:18px;font-weight:bold;padding:5p… 10 /* sc-component-id: DocLinks__LinkDesc-sc-1vrw6od-0 */ [all …]
|
| /third_party/node/deps/npm/docs/public/cli-commands/npm-ping/ |
| D | index.html | 1 …var i=(window.location.pathname.match(/^(\/(?:ipfs|ipns)\/[^/]+)/)||[])[1]||"";window.__GATSBY_IPF… 2 /* sc-component-id: links__NavLink-sc-19vgq0o-1 */ 3 …-weight:500;-webkit-text-decoration:none;text-decoration:none;-webkit-letter-spacing:.3px;-moz-let… 4 /* sc-component-id: links__BasicNavLink-sc-19vgq0o-2 */ 5 …-weight:500;-webkit-text-decoration:none;text-decoration:none;-webkit-letter-spacing:.3px;-moz-let… 6 /* sc-component-id: links__SidebarLink-sc-19vgq0o-3 */ 7 …-weight:500;-webkit-text-decoration:none;text-decoration:none;-webkit-letter-spacing:.3px;-moz-let… 8 /* sc-component-id: Accordion__SectionButton-i8yhwx-0 */ 9 …-color:transparent;cursor:pointer;color:red;border:none;font-size:18px;font-weight:bold;padding:5p… 10 /* sc-component-id: DocLinks__LinkDesc-sc-1vrw6od-0 */ [all …]
|
12345