isomorfeus-preact 10.5.1 → 10.5.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/LICENSE +29 -0
- data/lib/isomorfeus/preact/config.rb +19 -33
- data/lib/isomorfeus/preact/imports.rb +30 -0
- data/lib/isomorfeus/preact_view_helper.rb +26 -34
- data/lib/isomorfeus-preact.rb +6 -4
- data/lib/lucid_app/context.rb +9 -9
- data/lib/preact/version.rb +1 -1
- data/node_modules/.bin/loose-envify +12 -0
- data/node_modules/.bin/loose-envify.cmd +17 -0
- data/node_modules/.bin/loose-envify.ps1 +28 -0
- data/node_modules/.package-lock.json +278 -0
- data/node_modules/@babel/runtime/LICENSE +22 -0
- data/node_modules/@babel/runtime/README.md +19 -0
- data/node_modules/@babel/runtime/helpers/AsyncGenerator.js +99 -0
- data/node_modules/@babel/runtime/helpers/AwaitValue.js +6 -0
- data/node_modules/@babel/runtime/helpers/applyDecoratedDescriptor.js +31 -0
- data/node_modules/@babel/runtime/helpers/arrayLikeToArray.js +12 -0
- data/node_modules/@babel/runtime/helpers/arrayWithHoles.js +6 -0
- data/node_modules/@babel/runtime/helpers/arrayWithoutHoles.js +8 -0
- data/node_modules/@babel/runtime/helpers/assertThisInitialized.js +10 -0
- data/node_modules/@babel/runtime/helpers/asyncGeneratorDelegate.js +57 -0
- data/node_modules/@babel/runtime/helpers/asyncIterator.js +16 -0
- data/node_modules/@babel/runtime/helpers/asyncToGenerator.js +38 -0
- data/node_modules/@babel/runtime/helpers/awaitAsyncGenerator.js +8 -0
- data/node_modules/@babel/runtime/helpers/checkPrivateRedeclaration.js +8 -0
- data/node_modules/@babel/runtime/helpers/classApplyDescriptorDestructureSet.js +23 -0
- data/node_modules/@babel/runtime/helpers/classApplyDescriptorGet.js +10 -0
- data/node_modules/@babel/runtime/helpers/classApplyDescriptorSet.js +14 -0
- data/node_modules/@babel/runtime/helpers/classCallCheck.js +8 -0
- data/node_modules/@babel/runtime/helpers/classCheckPrivateStaticAccess.js +8 -0
- data/node_modules/@babel/runtime/helpers/classCheckPrivateStaticFieldDescriptor.js +8 -0
- data/node_modules/@babel/runtime/helpers/classExtractFieldDescriptor.js +10 -0
- data/node_modules/@babel/runtime/helpers/classNameTDZError.js +6 -0
- data/node_modules/@babel/runtime/helpers/classPrivateFieldDestructureSet.js +11 -0
- data/node_modules/@babel/runtime/helpers/classPrivateFieldGet.js +11 -0
- data/node_modules/@babel/runtime/helpers/classPrivateFieldInitSpec.js +9 -0
- data/node_modules/@babel/runtime/helpers/classPrivateFieldLooseBase.js +10 -0
- data/node_modules/@babel/runtime/helpers/classPrivateFieldLooseKey.js +8 -0
- data/node_modules/@babel/runtime/helpers/classPrivateFieldSet.js +12 -0
- data/node_modules/@babel/runtime/helpers/classPrivateMethodGet.js +10 -0
- data/node_modules/@babel/runtime/helpers/classPrivateMethodInitSpec.js +9 -0
- data/node_modules/@babel/runtime/helpers/classPrivateMethodSet.js +6 -0
- data/node_modules/@babel/runtime/helpers/classStaticPrivateFieldDestructureSet.js +14 -0
- data/node_modules/@babel/runtime/helpers/classStaticPrivateFieldSpecGet.js +14 -0
- data/node_modules/@babel/runtime/helpers/classStaticPrivateFieldSpecSet.js +15 -0
- data/node_modules/@babel/runtime/helpers/classStaticPrivateMethodGet.js +9 -0
- data/node_modules/@babel/runtime/helpers/classStaticPrivateMethodSet.js +6 -0
- data/node_modules/@babel/runtime/helpers/construct.js +26 -0
- data/node_modules/@babel/runtime/helpers/createClass.js +18 -0
- data/node_modules/@babel/runtime/helpers/createForOfIteratorHelper.js +61 -0
- data/node_modules/@babel/runtime/helpers/createForOfIteratorHelperLoose.js +25 -0
- data/node_modules/@babel/runtime/helpers/createSuper.js +25 -0
- data/node_modules/@babel/runtime/helpers/decorate.js +401 -0
- data/node_modules/@babel/runtime/helpers/defaults.js +17 -0
- data/node_modules/@babel/runtime/helpers/defineEnumerableProperties.js +25 -0
- data/node_modules/@babel/runtime/helpers/defineProperty.js +17 -0
- data/node_modules/@babel/runtime/helpers/esm/AsyncGenerator.js +95 -0
- data/node_modules/@babel/runtime/helpers/esm/AwaitValue.js +3 -0
- data/node_modules/@babel/runtime/helpers/esm/applyDecoratedDescriptor.js +28 -0
- data/node_modules/@babel/runtime/helpers/esm/arrayLikeToArray.js +9 -0
- data/node_modules/@babel/runtime/helpers/esm/arrayWithHoles.js +3 -0
- data/node_modules/@babel/runtime/helpers/esm/arrayWithoutHoles.js +4 -0
- data/node_modules/@babel/runtime/helpers/esm/assertThisInitialized.js +7 -0
- data/node_modules/@babel/runtime/helpers/esm/asyncGeneratorDelegate.js +54 -0
- data/node_modules/@babel/runtime/helpers/esm/asyncIterator.js +13 -0
- data/node_modules/@babel/runtime/helpers/esm/asyncToGenerator.js +35 -0
- data/node_modules/@babel/runtime/helpers/esm/awaitAsyncGenerator.js +4 -0
- data/node_modules/@babel/runtime/helpers/esm/checkPrivateRedeclaration.js +5 -0
- data/node_modules/@babel/runtime/helpers/esm/classApplyDescriptorDestructureSet.js +20 -0
- data/node_modules/@babel/runtime/helpers/esm/classApplyDescriptorGet.js +7 -0
- data/node_modules/@babel/runtime/helpers/esm/classApplyDescriptorSet.js +11 -0
- data/node_modules/@babel/runtime/helpers/esm/classCallCheck.js +5 -0
- data/node_modules/@babel/runtime/helpers/esm/classCheckPrivateStaticAccess.js +5 -0
- data/node_modules/@babel/runtime/helpers/esm/classCheckPrivateStaticFieldDescriptor.js +5 -0
- data/node_modules/@babel/runtime/helpers/esm/classExtractFieldDescriptor.js +7 -0
- data/node_modules/@babel/runtime/helpers/esm/classNameTDZError.js +3 -0
- data/node_modules/@babel/runtime/helpers/esm/classPrivateFieldDestructureSet.js +6 -0
- data/node_modules/@babel/runtime/helpers/esm/classPrivateFieldGet.js +6 -0
- data/node_modules/@babel/runtime/helpers/esm/classPrivateFieldInitSpec.js +5 -0
- data/node_modules/@babel/runtime/helpers/esm/classPrivateFieldLooseBase.js +7 -0
- data/node_modules/@babel/runtime/helpers/esm/classPrivateFieldLooseKey.js +4 -0
- data/node_modules/@babel/runtime/helpers/esm/classPrivateFieldSet.js +7 -0
- data/node_modules/@babel/runtime/helpers/esm/classPrivateMethodGet.js +7 -0
- data/node_modules/@babel/runtime/helpers/esm/classPrivateMethodInitSpec.js +5 -0
- data/node_modules/@babel/runtime/helpers/esm/classPrivateMethodSet.js +3 -0
- data/node_modules/@babel/runtime/helpers/esm/classStaticPrivateFieldDestructureSet.js +8 -0
- data/node_modules/@babel/runtime/helpers/esm/classStaticPrivateFieldSpecGet.js +8 -0
- data/node_modules/@babel/runtime/helpers/esm/classStaticPrivateFieldSpecSet.js +9 -0
- data/node_modules/@babel/runtime/helpers/esm/classStaticPrivateMethodGet.js +5 -0
- data/node_modules/@babel/runtime/helpers/esm/classStaticPrivateMethodSet.js +3 -0
- data/node_modules/@babel/runtime/helpers/esm/construct.js +18 -0
- data/node_modules/@babel/runtime/helpers/esm/createClass.js +15 -0
- data/node_modules/@babel/runtime/helpers/esm/createForOfIteratorHelper.js +57 -0
- data/node_modules/@babel/runtime/helpers/esm/createForOfIteratorHelperLoose.js +21 -0
- data/node_modules/@babel/runtime/helpers/esm/createSuper.js +19 -0
- data/node_modules/@babel/runtime/helpers/esm/decorate.js +396 -0
- data/node_modules/@babel/runtime/helpers/esm/defaults.js +14 -0
- data/node_modules/@babel/runtime/helpers/esm/defineEnumerableProperties.js +22 -0
- data/node_modules/@babel/runtime/helpers/esm/defineProperty.js +14 -0
- data/node_modules/@babel/runtime/helpers/esm/extends.js +17 -0
- data/node_modules/@babel/runtime/helpers/esm/get.js +20 -0
- data/node_modules/@babel/runtime/helpers/esm/getPrototypeOf.js +6 -0
- data/node_modules/@babel/runtime/helpers/esm/inherits.js +15 -0
- data/node_modules/@babel/runtime/helpers/esm/inheritsLoose.js +6 -0
- data/node_modules/@babel/runtime/helpers/esm/initializerDefineProperty.js +9 -0
- data/node_modules/@babel/runtime/helpers/esm/initializerWarningHelper.js +3 -0
- data/node_modules/@babel/runtime/helpers/esm/instanceof.js +7 -0
- data/node_modules/@babel/runtime/helpers/esm/interopRequireDefault.js +5 -0
- data/node_modules/@babel/runtime/helpers/esm/interopRequireWildcard.js +51 -0
- data/node_modules/@babel/runtime/helpers/esm/isNativeFunction.js +3 -0
- data/node_modules/@babel/runtime/helpers/esm/isNativeReflectConstruct.js +12 -0
- data/node_modules/@babel/runtime/helpers/esm/iterableToArray.js +3 -0
- data/node_modules/@babel/runtime/helpers/esm/iterableToArrayLimit.js +29 -0
- data/node_modules/@babel/runtime/helpers/esm/iterableToArrayLimitLoose.js +14 -0
- data/node_modules/@babel/runtime/helpers/esm/jsx.js +46 -0
- data/node_modules/@babel/runtime/helpers/esm/maybeArrayLike.js +9 -0
- data/node_modules/@babel/runtime/helpers/esm/newArrowCheck.js +5 -0
- data/node_modules/@babel/runtime/helpers/esm/nonIterableRest.js +3 -0
- data/node_modules/@babel/runtime/helpers/esm/nonIterableSpread.js +3 -0
- data/node_modules/@babel/runtime/helpers/esm/objectDestructuringEmpty.js +3 -0
- data/node_modules/@babel/runtime/helpers/esm/objectSpread.js +19 -0
- data/node_modules/@babel/runtime/helpers/esm/objectSpread2.js +39 -0
- data/node_modules/@babel/runtime/helpers/esm/objectWithoutProperties.js +19 -0
- data/node_modules/@babel/runtime/helpers/esm/objectWithoutPropertiesLoose.js +14 -0
- data/node_modules/@babel/runtime/helpers/esm/package.json +3 -0
- data/node_modules/@babel/runtime/helpers/esm/possibleConstructorReturn.js +11 -0
- data/node_modules/@babel/runtime/helpers/esm/readOnlyError.js +3 -0
- data/node_modules/@babel/runtime/helpers/esm/set.js +51 -0
- data/node_modules/@babel/runtime/helpers/esm/setPrototypeOf.js +8 -0
- data/node_modules/@babel/runtime/helpers/esm/skipFirstGeneratorNext.js +7 -0
- data/node_modules/@babel/runtime/helpers/esm/slicedToArray.js +7 -0
- data/node_modules/@babel/runtime/helpers/esm/slicedToArrayLoose.js +7 -0
- data/node_modules/@babel/runtime/helpers/esm/superPropBase.js +9 -0
- data/node_modules/@babel/runtime/helpers/esm/taggedTemplateLiteral.js +11 -0
- data/node_modules/@babel/runtime/helpers/esm/taggedTemplateLiteralLoose.js +8 -0
- data/node_modules/@babel/runtime/helpers/esm/tdz.js +3 -0
- data/node_modules/@babel/runtime/helpers/esm/temporalRef.js +5 -0
- data/node_modules/@babel/runtime/helpers/esm/temporalUndefined.js +1 -0
- data/node_modules/@babel/runtime/helpers/esm/toArray.js +7 -0
- data/node_modules/@babel/runtime/helpers/esm/toConsumableArray.js +7 -0
- data/node_modules/@babel/runtime/helpers/esm/toPrimitive.js +13 -0
- data/node_modules/@babel/runtime/helpers/esm/toPropertyKey.js +6 -0
- data/node_modules/@babel/runtime/helpers/esm/typeof.js +15 -0
- data/node_modules/@babel/runtime/helpers/esm/unsupportedIterableToArray.js +9 -0
- data/node_modules/@babel/runtime/helpers/esm/wrapAsyncGenerator.js +6 -0
- data/node_modules/@babel/runtime/helpers/esm/wrapNativeSuper.js +37 -0
- data/node_modules/@babel/runtime/helpers/esm/wrapRegExp.js +65 -0
- data/node_modules/@babel/runtime/helpers/esm/writeOnlyError.js +3 -0
- data/node_modules/@babel/runtime/helpers/extends.js +21 -0
- data/node_modules/@babel/runtime/helpers/get.js +27 -0
- data/node_modules/@babel/runtime/helpers/getPrototypeOf.js +10 -0
- data/node_modules/@babel/runtime/helpers/inherits.js +19 -0
- data/node_modules/@babel/runtime/helpers/inheritsLoose.js +10 -0
- data/node_modules/@babel/runtime/helpers/initializerDefineProperty.js +12 -0
- data/node_modules/@babel/runtime/helpers/initializerWarningHelper.js +6 -0
- data/node_modules/@babel/runtime/helpers/instanceof.js +10 -0
- data/node_modules/@babel/runtime/helpers/interopRequireDefault.js +8 -0
- data/node_modules/@babel/runtime/helpers/interopRequireWildcard.js +54 -0
- data/node_modules/@babel/runtime/helpers/isNativeFunction.js +6 -0
- data/node_modules/@babel/runtime/helpers/isNativeReflectConstruct.js +15 -0
- data/node_modules/@babel/runtime/helpers/iterableToArray.js +6 -0
- data/node_modules/@babel/runtime/helpers/iterableToArrayLimit.js +32 -0
- data/node_modules/@babel/runtime/helpers/iterableToArrayLimitLoose.js +17 -0
- data/node_modules/@babel/runtime/helpers/jsx.js +50 -0
- data/node_modules/@babel/runtime/helpers/maybeArrayLike.js +13 -0
- data/node_modules/@babel/runtime/helpers/newArrowCheck.js +8 -0
- data/node_modules/@babel/runtime/helpers/nonIterableRest.js +6 -0
- data/node_modules/@babel/runtime/helpers/nonIterableSpread.js +6 -0
- data/node_modules/@babel/runtime/helpers/objectDestructuringEmpty.js +6 -0
- data/node_modules/@babel/runtime/helpers/objectSpread.js +23 -0
- data/node_modules/@babel/runtime/helpers/objectSpread2.js +42 -0
- data/node_modules/@babel/runtime/helpers/objectWithoutProperties.js +23 -0
- data/node_modules/@babel/runtime/helpers/objectWithoutPropertiesLoose.js +17 -0
- data/node_modules/@babel/runtime/helpers/possibleConstructorReturn.js +16 -0
- data/node_modules/@babel/runtime/helpers/readOnlyError.js +6 -0
- data/node_modules/@babel/runtime/helpers/set.js +55 -0
- data/node_modules/@babel/runtime/helpers/setPrototypeOf.js +12 -0
- data/node_modules/@babel/runtime/helpers/skipFirstGeneratorNext.js +10 -0
- data/node_modules/@babel/runtime/helpers/slicedToArray.js +14 -0
- data/node_modules/@babel/runtime/helpers/slicedToArrayLoose.js +14 -0
- data/node_modules/@babel/runtime/helpers/superPropBase.js +13 -0
- data/node_modules/@babel/runtime/helpers/taggedTemplateLiteral.js +14 -0
- data/node_modules/@babel/runtime/helpers/taggedTemplateLiteralLoose.js +11 -0
- data/node_modules/@babel/runtime/helpers/tdz.js +6 -0
- data/node_modules/@babel/runtime/helpers/temporalRef.js +10 -0
- data/node_modules/@babel/runtime/helpers/temporalUndefined.js +4 -0
- data/node_modules/@babel/runtime/helpers/toArray.js +14 -0
- data/node_modules/@babel/runtime/helpers/toConsumableArray.js +14 -0
- data/node_modules/@babel/runtime/helpers/toPrimitive.js +17 -0
- data/node_modules/@babel/runtime/helpers/toPropertyKey.js +11 -0
- data/node_modules/@babel/runtime/helpers/typeof.js +22 -0
- data/node_modules/@babel/runtime/helpers/unsupportedIterableToArray.js +13 -0
- data/node_modules/@babel/runtime/helpers/wrapAsyncGenerator.js +10 -0
- data/node_modules/@babel/runtime/helpers/wrapNativeSuper.js +45 -0
- data/node_modules/@babel/runtime/helpers/wrapRegExp.js +72 -0
- data/node_modules/@babel/runtime/helpers/writeOnlyError.js +6 -0
- data/node_modules/@babel/runtime/package.json +848 -0
- data/node_modules/@babel/runtime/regenerator/index.js +1 -0
- data/node_modules/css-in-js-utils/Changelog.md +16 -0
- data/node_modules/css-in-js-utils/LICENSE +21 -0
- data/node_modules/css-in-js-utils/README.md +241 -0
- data/node_modules/css-in-js-utils/lib/__tests__/assignStyle-test.js +117 -0
- data/node_modules/css-in-js-utils/lib/__tests__/camelCaseProperty-test.js +15 -0
- data/node_modules/css-in-js-utils/lib/__tests__/cssifyDeclaration-test.js +15 -0
- data/node_modules/css-in-js-utils/lib/__tests__/cssifyObject-test.js +31 -0
- data/node_modules/css-in-js-utils/lib/__tests__/isPrefixedProperty-test.js +19 -0
- data/node_modules/css-in-js-utils/lib/__tests__/isPrefixedValue-test.js +19 -0
- data/node_modules/css-in-js-utils/lib/__tests__/isUnitlessProperty-test.js +43 -0
- data/node_modules/css-in-js-utils/lib/__tests__/normalizeProperty-test.js +21 -0
- data/node_modules/css-in-js-utils/lib/__tests__/resolveArrayValue-test.js +17 -0
- data/node_modules/css-in-js-utils/lib/__tests__/unprefixProperty-test.js +19 -0
- data/node_modules/css-in-js-utils/lib/__tests__/unprefixValue-test.js +20 -0
- data/node_modules/css-in-js-utils/lib/assignStyle.js +37 -0
- data/node_modules/css-in-js-utils/lib/camelCaseProperty.js +15 -0
- data/node_modules/css-in-js-utils/lib/cssifyDeclaration.js +17 -0
- data/node_modules/css-in-js-utils/lib/cssifyObject.js +34 -0
- data/node_modules/css-in-js-utils/lib/hyphenateProperty.js +17 -0
- data/node_modules/css-in-js-utils/lib/index.js +71 -0
- data/node_modules/css-in-js-utils/lib/isPrefixedProperty.js +12 -0
- data/node_modules/css-in-js-utils/lib/isPrefixedValue.js +12 -0
- data/node_modules/css-in-js-utils/lib/isUnitlessProperty.js +64 -0
- data/node_modules/css-in-js-utils/lib/normalizeProperty.js +21 -0
- data/node_modules/css-in-js-utils/lib/resolveArrayValue.js +19 -0
- data/node_modules/css-in-js-utils/lib/unprefixProperty.js +13 -0
- data/node_modules/css-in-js-utils/lib/unprefixValue.js +16 -0
- data/node_modules/css-in-js-utils/package.json +56 -0
- data/node_modules/css-tree/CHANGELOG.md +590 -0
- data/node_modules/css-tree/LICENSE +19 -0
- data/node_modules/css-tree/README.md +130 -0
- data/node_modules/css-tree/data/index.js +103 -0
- data/node_modules/css-tree/data/patch.json +721 -0
- data/node_modules/css-tree/dist/csstree.js +12606 -0
- data/node_modules/css-tree/dist/csstree.min.js +1 -0
- data/node_modules/css-tree/lib/common/List.js +576 -0
- data/node_modules/css-tree/lib/common/OffsetToLocation.js +91 -0
- data/node_modules/css-tree/lib/common/SyntaxError.js +82 -0
- data/node_modules/css-tree/lib/common/TokenStream.js +219 -0
- data/node_modules/css-tree/lib/common/adopt-buffer.js +10 -0
- data/node_modules/css-tree/lib/convertor/create.js +28 -0
- data/node_modules/css-tree/lib/convertor/index.js +3 -0
- data/node_modules/css-tree/lib/definition-syntax/SyntaxError.js +14 -0
- data/node_modules/css-tree/lib/definition-syntax/generate.js +129 -0
- data/node_modules/css-tree/lib/definition-syntax/index.js +6 -0
- data/node_modules/css-tree/lib/definition-syntax/parse.js +568 -0
- data/node_modules/css-tree/lib/definition-syntax/tokenizer.js +55 -0
- data/node_modules/css-tree/lib/definition-syntax/walk.js +52 -0
- data/node_modules/css-tree/lib/generator/create.js +66 -0
- data/node_modules/css-tree/lib/generator/index.js +4 -0
- data/node_modules/css-tree/lib/generator/sourceMap.js +95 -0
- data/node_modules/css-tree/lib/index.js +1 -0
- data/node_modules/css-tree/lib/lexer/Lexer.js +466 -0
- data/node_modules/css-tree/lib/lexer/error.js +127 -0
- data/node_modules/css-tree/lib/lexer/generic-an-plus-b.js +236 -0
- data/node_modules/css-tree/lib/lexer/generic-urange.js +159 -0
- data/node_modules/css-tree/lib/lexer/generic.js +585 -0
- data/node_modules/css-tree/lib/lexer/index.js +3 -0
- data/node_modules/css-tree/lib/lexer/match-graph.js +455 -0
- data/node_modules/css-tree/lib/lexer/match.js +639 -0
- data/node_modules/css-tree/lib/lexer/prepare-tokens.js +73 -0
- data/node_modules/css-tree/lib/lexer/search.js +65 -0
- data/node_modules/css-tree/lib/lexer/structure.js +163 -0
- data/node_modules/css-tree/lib/lexer/trace.js +79 -0
- data/node_modules/css-tree/lib/parser/create.js +304 -0
- data/node_modules/css-tree/lib/parser/index.js +4 -0
- data/node_modules/css-tree/lib/parser/sequence.js +54 -0
- data/node_modules/css-tree/lib/syntax/atrule/font-face.js +8 -0
- data/node_modules/css-tree/lib/syntax/atrule/import.js +40 -0
- data/node_modules/css-tree/lib/syntax/atrule/index.js +7 -0
- data/node_modules/css-tree/lib/syntax/atrule/media.js +12 -0
- data/node_modules/css-tree/lib/syntax/atrule/page.js +12 -0
- data/node_modules/css-tree/lib/syntax/atrule/supports.js +89 -0
- data/node_modules/css-tree/lib/syntax/config/lexer.js +9 -0
- data/node_modules/css-tree/lib/syntax/config/mix.js +140 -0
- data/node_modules/css-tree/lib/syntax/config/parser.js +25 -0
- data/node_modules/css-tree/lib/syntax/config/walker.js +3 -0
- data/node_modules/css-tree/lib/syntax/create.js +77 -0
- data/node_modules/css-tree/lib/syntax/function/expression.js +7 -0
- data/node_modules/css-tree/lib/syntax/function/var.js +43 -0
- data/node_modules/css-tree/lib/syntax/index.js +21 -0
- data/node_modules/css-tree/lib/syntax/node/AnPlusB.js +297 -0
- data/node_modules/css-tree/lib/syntax/node/Atrule.js +107 -0
- data/node_modules/css-tree/lib/syntax/node/AtrulePrelude.js +51 -0
- data/node_modules/css-tree/lib/syntax/node/AttributeSelector.js +165 -0
- data/node_modules/css-tree/lib/syntax/node/Block.js +91 -0
- data/node_modules/css-tree/lib/syntax/node/Brackets.js +34 -0
- data/node_modules/css-tree/lib/syntax/node/CDC.js +19 -0
- data/node_modules/css-tree/lib/syntax/node/CDO.js +19 -0
- data/node_modules/css-tree/lib/syntax/node/ClassSelector.js +29 -0
- data/node_modules/css-tree/lib/syntax/node/Combinator.js +55 -0
- data/node_modules/css-tree/lib/syntax/node/Comment.js +36 -0
- data/node_modules/css-tree/lib/syntax/node/Declaration.js +169 -0
- data/node_modules/css-tree/lib/syntax/node/DeclarationList.js +49 -0
- data/node_modules/css-tree/lib/syntax/node/Dimension.js +29 -0
- data/node_modules/css-tree/lib/syntax/node/Function.js +40 -0
- data/node_modules/css-tree/lib/syntax/node/Hash.js +26 -0
- data/node_modules/css-tree/lib/syntax/node/IdSelector.js +27 -0
- data/node_modules/css-tree/lib/syntax/node/Identifier.js +20 -0
- data/node_modules/css-tree/lib/syntax/node/MediaFeature.js +76 -0
- data/node_modules/css-tree/lib/syntax/node/MediaQuery.js +68 -0
- data/node_modules/css-tree/lib/syntax/node/MediaQueryList.js +36 -0
- data/node_modules/css-tree/lib/syntax/node/Nth.js +51 -0
- data/node_modules/css-tree/lib/syntax/node/Number.js +18 -0
- data/node_modules/css-tree/lib/syntax/node/Operator.js +21 -0
- data/node_modules/css-tree/lib/syntax/node/Parentheses.js +34 -0
- data/node_modules/css-tree/lib/syntax/node/Percentage.js +27 -0
- data/node_modules/css-tree/lib/syntax/node/PseudoClassSelector.js +61 -0
- data/node_modules/css-tree/lib/syntax/node/PseudoElementSelector.js +62 -0
- data/node_modules/css-tree/lib/syntax/node/Ratio.js +66 -0
- data/node_modules/css-tree/lib/syntax/node/Raw.js +87 -0
- data/node_modules/css-tree/lib/syntax/node/Rule.js +54 -0
- data/node_modules/css-tree/lib/syntax/node/Selector.js +32 -0
- data/node_modules/css-tree/lib/syntax/node/SelectorList.js +39 -0
- data/node_modules/css-tree/lib/syntax/node/String.js +18 -0
- data/node_modules/css-tree/lib/syntax/node/StyleSheet.js +81 -0
- data/node_modules/css-tree/lib/syntax/node/TypeSelector.js +53 -0
- data/node_modules/css-tree/lib/syntax/node/UnicodeRange.js +173 -0
- data/node_modules/css-tree/lib/syntax/node/Url.js +69 -0
- data/node_modules/css-tree/lib/syntax/node/Value.js +19 -0
- data/node_modules/css-tree/lib/syntax/node/WhiteSpace.js +26 -0
- data/node_modules/css-tree/lib/syntax/node/index.js +42 -0
- data/node_modules/css-tree/lib/syntax/pseudo/common/nth.js +9 -0
- data/node_modules/css-tree/lib/syntax/pseudo/common/nthWithOfClause.js +9 -0
- data/node_modules/css-tree/lib/syntax/pseudo/common/selectorList.js +7 -0
- data/node_modules/css-tree/lib/syntax/pseudo/dir.js +7 -0
- data/node_modules/css-tree/lib/syntax/pseudo/has.js +7 -0
- data/node_modules/css-tree/lib/syntax/pseudo/index.js +12 -0
- data/node_modules/css-tree/lib/syntax/pseudo/lang.js +7 -0
- data/node_modules/css-tree/lib/syntax/pseudo/matches.js +1 -0
- data/node_modules/css-tree/lib/syntax/pseudo/not.js +1 -0
- data/node_modules/css-tree/lib/syntax/pseudo/nth-child.js +1 -0
- data/node_modules/css-tree/lib/syntax/pseudo/nth-last-child.js +1 -0
- data/node_modules/css-tree/lib/syntax/pseudo/nth-last-of-type.js +1 -0
- data/node_modules/css-tree/lib/syntax/pseudo/nth-of-type.js +1 -0
- data/node_modules/css-tree/lib/syntax/pseudo/slotted.js +7 -0
- data/node_modules/css-tree/lib/syntax/scope/atrulePrelude.js +3 -0
- data/node_modules/css-tree/lib/syntax/scope/default.js +87 -0
- data/node_modules/css-tree/lib/syntax/scope/index.js +5 -0
- data/node_modules/css-tree/lib/syntax/scope/selector.js +80 -0
- data/node_modules/css-tree/lib/syntax/scope/value.js +5 -0
- data/node_modules/css-tree/lib/tokenizer/char-code-definitions.js +249 -0
- data/node_modules/css-tree/lib/tokenizer/const.js +40 -0
- data/node_modules/css-tree/lib/tokenizer/index.js +591 -0
- data/node_modules/css-tree/lib/tokenizer/utils.js +243 -0
- data/node_modules/css-tree/lib/utils/clone.js +21 -0
- data/node_modules/css-tree/lib/utils/createCustomError.js +17 -0
- data/node_modules/css-tree/lib/utils/names.js +104 -0
- data/node_modules/css-tree/lib/walker/create.js +284 -0
- data/node_modules/css-tree/lib/walker/index.js +4 -0
- data/node_modules/css-tree/package.json +60 -0
- data/node_modules/csstype/LICENSE +19 -0
- data/node_modules/csstype/README.md +273 -0
- data/node_modules/csstype/index.d.ts +20553 -0
- data/node_modules/csstype/index.js.flow +6278 -0
- data/node_modules/csstype/package.json +62 -0
- data/node_modules/error-stack-parser/CHANGELOG.md +53 -0
- data/node_modules/error-stack-parser/LICENSE +19 -0
- data/node_modules/error-stack-parser/README.md +44 -0
- data/node_modules/error-stack-parser/dist/error-stack-parser.js +202 -0
- data/node_modules/error-stack-parser/dist/error-stack-parser.min.js +2 -0
- data/node_modules/error-stack-parser/dist/error-stack-parser.min.js.map +1 -0
- data/node_modules/error-stack-parser/error-stack-parser.d.ts +66 -0
- data/node_modules/error-stack-parser/error-stack-parser.js +202 -0
- data/node_modules/error-stack-parser/package.json +63 -0
- data/node_modules/fastest-stable-stringify/.eslintrc.yml +26 -0
- data/node_modules/fastest-stable-stringify/.travis.yml +7 -0
- data/node_modules/fastest-stable-stringify/LICENSE +18 -0
- data/node_modules/fastest-stable-stringify/README.md +44 -0
- data/node_modules/fastest-stable-stringify/benchmark/index.js +32 -0
- data/node_modules/fastest-stable-stringify/benchmark/test.json +215 -0
- data/node_modules/fastest-stable-stringify/example/key_cmp.js +7 -0
- data/node_modules/fastest-stable-stringify/example/nested.js +3 -0
- data/node_modules/fastest-stable-stringify/example/str.js +3 -0
- data/node_modules/fastest-stable-stringify/example/value_cmp.js +7 -0
- data/node_modules/fastest-stable-stringify/index.js +60 -0
- data/node_modules/fastest-stable-stringify/package.json +54 -0
- data/node_modules/fastest-stable-stringify/test/bench.js +20 -0
- data/node_modules/fastest-stable-stringify/test/nested.js +24 -0
- data/node_modules/fastest-stable-stringify/test/str.js +52 -0
- data/node_modules/fastest-stable-stringify/test/to-json.js +22 -0
- data/node_modules/hyphenate-style-name/LICENSE +28 -0
- data/node_modules/hyphenate-style-name/README.md +28 -0
- data/node_modules/hyphenate-style-name/index.cjs.js +21 -0
- data/node_modules/hyphenate-style-name/index.js +19 -0
- data/node_modules/hyphenate-style-name/package.json +42 -0
- data/node_modules/inline-style-prefixer/CHANGELOG.md +195 -0
- data/node_modules/inline-style-prefixer/LICENSE +22 -0
- data/node_modules/inline-style-prefixer/README.md +100 -0
- data/node_modules/inline-style-prefixer/es/createPrefixer.js +47 -0
- data/node_modules/inline-style-prefixer/es/data.js +12 -0
- data/node_modules/inline-style-prefixer/es/generator/generatePluginList.js +21 -0
- data/node_modules/inline-style-prefixer/es/generator/generatePrefixMap.js +75 -0
- data/node_modules/inline-style-prefixer/es/generator/index.js +69 -0
- data/node_modules/inline-style-prefixer/es/generator/maps/pluginMap.js +108 -0
- data/node_modules/inline-style-prefixer/es/generator/maps/propertyMap.js +38 -0
- data/node_modules/inline-style-prefixer/es/index.js +26 -0
- data/node_modules/inline-style-prefixer/es/plugins/backgroundClip.js +7 -0
- data/node_modules/inline-style-prefixer/es/plugins/calc.js +11 -0
- data/node_modules/inline-style-prefixer/es/plugins/crossFade.js +12 -0
- data/node_modules/inline-style-prefixer/es/plugins/cursor.js +16 -0
- data/node_modules/inline-style-prefixer/es/plugins/filter.js +12 -0
- data/node_modules/inline-style-prefixer/es/plugins/flex.js +10 -0
- data/node_modules/inline-style-prefixer/es/plugins/flexboxIE.js +67 -0
- data/node_modules/inline-style-prefixer/es/plugins/flexboxOld.js +33 -0
- data/node_modules/inline-style-prefixer/es/plugins/gradient.js +14 -0
- data/node_modules/inline-style-prefixer/es/plugins/grid.js +129 -0
- data/node_modules/inline-style-prefixer/es/plugins/imageSet.js +12 -0
- data/node_modules/inline-style-prefixer/es/plugins/index.js +17 -0
- data/node_modules/inline-style-prefixer/es/plugins/logical.js +35 -0
- data/node_modules/inline-style-prefixer/es/plugins/position.js +5 -0
- data/node_modules/inline-style-prefixer/es/plugins/sizing.js +26 -0
- data/node_modules/inline-style-prefixer/es/plugins/transition.js +75 -0
- data/node_modules/inline-style-prefixer/es/utils/addNewValuesOnly.js +15 -0
- data/node_modules/inline-style-prefixer/es/utils/capitalizeString.js +3 -0
- data/node_modules/inline-style-prefixer/es/utils/isObject.js +3 -0
- data/node_modules/inline-style-prefixer/es/utils/prefixProperty.js +22 -0
- data/node_modules/inline-style-prefixer/es/utils/prefixValue.js +11 -0
- data/node_modules/inline-style-prefixer/lib/createPrefixer.js +66 -0
- data/node_modules/inline-style-prefixer/lib/data.js +17 -0
- data/node_modules/inline-style-prefixer/lib/generator/generatePluginList.js +32 -0
- data/node_modules/inline-style-prefixer/lib/generator/generatePrefixMap.js +86 -0
- data/node_modules/inline-style-prefixer/lib/generator/index.js +85 -0
- data/node_modules/inline-style-prefixer/lib/generator/maps/pluginMap.js +113 -0
- data/node_modules/inline-style-prefixer/lib/generator/maps/propertyMap.js +43 -0
- data/node_modules/inline-style-prefixer/lib/index.js +78 -0
- data/node_modules/inline-style-prefixer/lib/plugins/backgroundClip.js +13 -0
- data/node_modules/inline-style-prefixer/lib/plugins/calc.js +21 -0
- data/node_modules/inline-style-prefixer/lib/plugins/crossFade.js +22 -0
- data/node_modules/inline-style-prefixer/lib/plugins/cursor.js +22 -0
- data/node_modules/inline-style-prefixer/lib/plugins/filter.js +22 -0
- data/node_modules/inline-style-prefixer/lib/plugins/flex.js +16 -0
- data/node_modules/inline-style-prefixer/lib/plugins/flexboxIE.js +73 -0
- data/node_modules/inline-style-prefixer/lib/plugins/flexboxOld.js +39 -0
- data/node_modules/inline-style-prefixer/lib/plugins/gradient.js +26 -0
- data/node_modules/inline-style-prefixer/lib/plugins/grid.js +136 -0
- data/node_modules/inline-style-prefixer/lib/plugins/imageSet.js +22 -0
- data/node_modules/inline-style-prefixer/lib/plugins/index.js +69 -0
- data/node_modules/inline-style-prefixer/lib/plugins/logical.js +41 -0
- data/node_modules/inline-style-prefixer/lib/plugins/position.js +11 -0
- data/node_modules/inline-style-prefixer/lib/plugins/sizing.js +32 -0
- data/node_modules/inline-style-prefixer/lib/plugins/transition.js +92 -0
- data/node_modules/inline-style-prefixer/lib/utils/addNewValuesOnly.js +21 -0
- data/node_modules/inline-style-prefixer/lib/utils/capitalizeString.js +9 -0
- data/node_modules/inline-style-prefixer/lib/utils/isObject.js +9 -0
- data/node_modules/inline-style-prefixer/lib/utils/prefixProperty.js +32 -0
- data/node_modules/inline-style-prefixer/lib/utils/prefixValue.js +17 -0
- data/node_modules/inline-style-prefixer/package.json +79 -0
- data/node_modules/isobject/LICENSE +21 -0
- data/node_modules/isobject/README.md +122 -0
- data/node_modules/isobject/index.d.ts +5 -0
- data/node_modules/isobject/index.js +12 -0
- data/node_modules/isobject/package.json +74 -0
- data/node_modules/js-tokens/CHANGELOG.md +151 -0
- data/node_modules/js-tokens/LICENSE +21 -0
- data/node_modules/js-tokens/README.md +240 -0
- data/node_modules/js-tokens/index.js +23 -0
- data/node_modules/js-tokens/package.json +30 -0
- data/node_modules/loose-envify/LICENSE +21 -0
- data/node_modules/loose-envify/README.md +45 -0
- data/node_modules/loose-envify/cli.js +16 -0
- data/node_modules/loose-envify/custom.js +4 -0
- data/node_modules/loose-envify/index.js +3 -0
- data/node_modules/loose-envify/loose-envify.js +36 -0
- data/node_modules/loose-envify/package.json +36 -0
- data/node_modules/loose-envify/replace.js +65 -0
- data/node_modules/mdn-data/LICENSE +116 -0
- data/node_modules/mdn-data/README.md +56 -0
- data/node_modules/mdn-data/api/index.js +3 -0
- data/node_modules/mdn-data/api/inheritance.json +2681 -0
- data/node_modules/mdn-data/api/inheritance.schema.json +31 -0
- data/node_modules/mdn-data/css/at-rules.json +560 -0
- data/node_modules/mdn-data/css/at-rules.schema.json +132 -0
- data/node_modules/mdn-data/css/definitions.json +77 -0
- data/node_modules/mdn-data/css/index.js +8 -0
- data/node_modules/mdn-data/css/properties.json +9163 -0
- data/node_modules/mdn-data/css/properties.schema.json +402 -0
- data/node_modules/mdn-data/css/selectors.json +927 -0
- data/node_modules/mdn-data/css/selectors.schema.json +36 -0
- data/node_modules/mdn-data/css/syntaxes.json +761 -0
- data/node_modules/mdn-data/css/syntaxes.schema.json +15 -0
- data/node_modules/mdn-data/css/types.json +265 -0
- data/node_modules/mdn-data/css/types.schema.json +32 -0
- data/node_modules/mdn-data/css/units.json +199 -0
- data/node_modules/mdn-data/css/units.schema.json +28 -0
- data/node_modules/mdn-data/index.js +5 -0
- data/node_modules/mdn-data/l10n/css.json +1567 -0
- data/node_modules/mdn-data/l10n/index.js +3 -0
- data/node_modules/mdn-data/package.json +39 -0
- data/node_modules/nano-css/.circleci/config.yml +85 -0
- data/node_modules/nano-css/.eslintrc.yml +27 -0
- data/node_modules/nano-css/.github/FUNDING.yml +3 -0
- data/node_modules/nano-css/.github/workflows/nodejs.yml +23 -0
- data/node_modules/nano-css/CHANGELOG.md +362 -0
- data/node_modules/nano-css/LICENSE +24 -0
- data/node_modules/nano-css/README.md +70 -0
- data/node_modules/nano-css/addon/__dev__/warnOnMissingDependencies.js +25 -0
- data/node_modules/nano-css/addon/__tests__/__snapshots__/reset.test.js.snap +407 -0
- data/node_modules/nano-css/addon/__tests__/__snapshots__/tachyons.test.js.snap +43 -0
- data/node_modules/nano-css/addon/__tests__/amp.server.dev.test.js +6 -0
- data/node_modules/nano-css/addon/__tests__/amp.server.test.js +223 -0
- data/node_modules/nano-css/addon/__tests__/atoms.dev.test.js +5 -0
- data/node_modules/nano-css/addon/__tests__/atoms.server.dev.test.js +8 -0
- data/node_modules/nano-css/addon/__tests__/atoms.server.test.js +6 -0
- data/node_modules/nano-css/addon/__tests__/atoms.test.js +49 -0
- data/node_modules/nano-css/addon/__tests__/cssom.server.test.js +12 -0
- data/node_modules/nano-css/addon/__tests__/emmet/emmet.dev.test.js +5 -0
- data/node_modules/nano-css/addon/__tests__/emmet/emmet.server.dev.test.js +8 -0
- data/node_modules/nano-css/addon/__tests__/emmet/emmet.server.test.js +6 -0
- data/node_modules/nano-css/addon/__tests__/emmet/emmet.test.js +219 -0
- data/node_modules/nano-css/addon/__tests__/env.js +6 -0
- data/node_modules/nano-css/addon/__tests__/extract.server.test.js +159 -0
- data/node_modules/nano-css/addon/__tests__/index.server.dev.test.js +6 -0
- data/node_modules/nano-css/addon/__tests__/index.server.test.js +4 -0
- data/node_modules/nano-css/addon/__tests__/index.test.js +257 -0
- data/node_modules/nano-css/addon/__tests__/jsx.dev.test.js +5 -0
- data/node_modules/nano-css/addon/__tests__/jsx.server.dev.test.js +6 -0
- data/node_modules/nano-css/addon/__tests__/jsx.server.test.js +4 -0
- data/node_modules/nano-css/addon/__tests__/jsx.test.js +33 -0
- data/node_modules/nano-css/addon/__tests__/keyframes.dev.test.js +5 -0
- data/node_modules/nano-css/addon/__tests__/keyframes.server.dev.test.js +6 -0
- data/node_modules/nano-css/addon/__tests__/keyframes.server.test.js +4 -0
- data/node_modules/nano-css/addon/__tests__/keyframes.test.js +131 -0
- data/node_modules/nano-css/addon/__tests__/limit.server.test.js +54 -0
- data/node_modules/nano-css/addon/__tests__/nesting.test.js +85 -0
- data/node_modules/nano-css/addon/__tests__/prefixer.test.js +121 -0
- data/node_modules/nano-css/addon/__tests__/put.dev.test.js +5 -0
- data/node_modules/nano-css/addon/__tests__/put.server.dev.test.js +6 -0
- data/node_modules/nano-css/addon/__tests__/put.server.test.js +4 -0
- data/node_modules/nano-css/addon/__tests__/put.test.js +75 -0
- data/node_modules/nano-css/addon/__tests__/reset.test.js +38 -0
- data/node_modules/nano-css/addon/__tests__/rule.dev.test.js +5 -0
- data/node_modules/nano-css/addon/__tests__/rule.server.dev.test.js +7 -0
- data/node_modules/nano-css/addon/__tests__/rule.server.test.js +5 -0
- data/node_modules/nano-css/addon/__tests__/rule.test.js +57 -0
- data/node_modules/nano-css/addon/__tests__/setup.js +7 -0
- data/node_modules/nano-css/addon/__tests__/sheet.test.js +74 -0
- data/node_modules/nano-css/addon/__tests__/snake.test.js +124 -0
- data/node_modules/nano-css/addon/__tests__/tachyons.test.js +45 -0
- data/node_modules/nano-css/addon/__tests__/units.dev.test.js +5 -0
- data/node_modules/nano-css/addon/__tests__/units.server.dev.test.js +6 -0
- data/node_modules/nano-css/addon/__tests__/units.server.test.js +4 -0
- data/node_modules/nano-css/addon/__tests__/units.test.js +41 -0
- data/node_modules/nano-css/addon/__tests__/validate.dev.test.js +5 -0
- data/node_modules/nano-css/addon/__tests__/validate.test.js +69 -0
- data/node_modules/nano-css/addon/__tests__/vcssom.server.test.js +14 -0
- data/node_modules/nano-css/addon/__tests__/virtual.dev.test.js +5 -0
- data/node_modules/nano-css/addon/__tests__/virtual.server.dev.test.js +6 -0
- data/node_modules/nano-css/addon/__tests__/virtual.server.test.js +4 -0
- data/node_modules/nano-css/addon/__tests__/virtual.test.js +225 -0
- data/node_modules/nano-css/addon/amp.d.ts +5 -0
- data/node_modules/nano-css/addon/amp.js +156 -0
- data/node_modules/nano-css/addon/animate/fadeIn.js +22 -0
- data/node_modules/nano-css/addon/animate/fadeInDown.js +25 -0
- data/node_modules/nano-css/addon/animate/fadeInScale.js +25 -0
- data/node_modules/nano-css/addon/animate/fadeOut.js +23 -0
- data/node_modules/nano-css/addon/animate/fadeOutScale.js +21 -0
- data/node_modules/nano-css/addon/array.d.ts +5 -0
- data/node_modules/nano-css/addon/array.js +33 -0
- data/node_modules/nano-css/addon/atoms.d.ts +243 -0
- data/node_modules/nano-css/addon/atoms.js +63 -0
- data/node_modules/nano-css/addon/cache.d.ts +8 -0
- data/node_modules/nano-css/addon/cache.js +17 -0
- data/node_modules/nano-css/addon/component.d.ts +7 -0
- data/node_modules/nano-css/addon/component.js +26 -0
- data/node_modules/nano-css/addon/cssom.d.ts +17 -0
- data/node_modules/nano-css/addon/cssom.js +36 -0
- data/node_modules/nano-css/addon/decorator.d.ts +7 -0
- data/node_modules/nano-css/addon/decorator.js +43 -0
- data/node_modules/nano-css/addon/drule.d.ts +8 -0
- data/node_modules/nano-css/addon/drule.js +27 -0
- data/node_modules/nano-css/addon/dsheet.d.ts +8 -0
- data/node_modules/nano-css/addon/dsheet.js +36 -0
- data/node_modules/nano-css/addon/emmet.d.ts +614 -0
- data/node_modules/nano-css/addon/emmet.js +177 -0
- data/node_modules/nano-css/addon/extract.d.ts +5 -0
- data/node_modules/nano-css/addon/extract.js +59 -0
- data/node_modules/nano-css/addon/global.d.ts +8 -0
- data/node_modules/nano-css/addon/global.js +19 -0
- data/node_modules/nano-css/addon/googleFont.d.ts +8 -0
- data/node_modules/nano-css/addon/googleFont.js +43 -0
- data/node_modules/nano-css/addon/hydrate.d.ts +7 -0
- data/node_modules/nano-css/addon/hydrate.js +28 -0
- data/node_modules/nano-css/addon/hyperstyle.js +27 -0
- data/node_modules/nano-css/addon/important.js +38 -0
- data/node_modules/nano-css/addon/jsx.js +60 -0
- data/node_modules/nano-css/addon/keyframes.d.ts +34 -0
- data/node_modules/nano-css/addon/keyframes.js +61 -0
- data/node_modules/nano-css/addon/limit.js +26 -0
- data/node_modules/nano-css/addon/nesting.js +37 -0
- data/node_modules/nano-css/addon/pipe.js +57 -0
- data/node_modules/nano-css/addon/prefixer.js +79 -0
- data/node_modules/nano-css/addon/ref.js +87 -0
- data/node_modules/nano-css/addon/reset/EricMeyer.js +48 -0
- data/node_modules/nano-css/addon/reset/EricMeyerCondensed.js +44 -0
- data/node_modules/nano-css/addon/reset/Minimalistic.js +16 -0
- data/node_modules/nano-css/addon/reset/Minimalistic2.js +17 -0
- data/node_modules/nano-css/addon/reset/Minimalistic3.js +18 -0
- data/node_modules/nano-css/addon/reset/Normalize.js +83 -0
- data/node_modules/nano-css/addon/reset/PoorMan.js +25 -0
- data/node_modules/nano-css/addon/reset/ShaunInman.js +42 -0
- data/node_modules/nano-css/addon/reset/Siolon.js +34 -0
- data/node_modules/nano-css/addon/reset/Tantek.js +31 -0
- data/node_modules/nano-css/addon/reset/Tripoli.js +75 -0
- data/node_modules/nano-css/addon/reset/Universal.js +23 -0
- data/node_modules/nano-css/addon/reset/Yahoo.js +43 -0
- data/node_modules/nano-css/addon/reset-font.js +24 -0
- data/node_modules/nano-css/addon/rtl.js +15 -0
- data/node_modules/nano-css/addon/rule.d.ts +26 -0
- data/node_modules/nano-css/addon/rule.js +39 -0
- data/node_modules/nano-css/addon/sheet.d.ts +22 -0
- data/node_modules/nano-css/addon/sheet.js +45 -0
- data/node_modules/nano-css/addon/snake.js +141 -0
- data/node_modules/nano-css/addon/sourcemaps.js +96 -0
- data/node_modules/nano-css/addon/spread.js +23 -0
- data/node_modules/nano-css/addon/stable.js +7 -0
- data/node_modules/nano-css/addon/style.js +33 -0
- data/node_modules/nano-css/addon/styled.js +161 -0
- data/node_modules/nano-css/addon/stylis/plugin-onRule.js +43 -0
- data/node_modules/nano-css/addon/stylis.js +28 -0
- data/node_modules/nano-css/addon/tachyons.js +215 -0
- data/node_modules/nano-css/addon/unitless.js +78 -0
- data/node_modules/nano-css/addon/units.d.ts +89 -0
- data/node_modules/nano-css/addon/units.js +27 -0
- data/node_modules/nano-css/addon/useStyles.js +24 -0
- data/node_modules/nano-css/addon/util/cloneElement.js +11 -0
- data/node_modules/nano-css/addon/util/transformComponentDynamic.js +50 -0
- data/node_modules/nano-css/addon/util/transformComponentStatic.js +26 -0
- data/node_modules/nano-css/addon/validate.js +82 -0
- data/node_modules/nano-css/addon/vcssom/__tests__/cssToTree.test.js +159 -0
- data/node_modules/nano-css/addon/vcssom/cssToTree.d.ts +15 -0
- data/node_modules/nano-css/addon/vcssom/cssToTree.js +42 -0
- data/node_modules/nano-css/addon/vcssom/removeRule.d.ts +3 -0
- data/node_modules/nano-css/addon/vcssom/removeRule.js +15 -0
- data/node_modules/nano-css/addon/vcssom.d.ts +72 -0
- data/node_modules/nano-css/addon/vcssom.js +97 -0
- data/node_modules/nano-css/addon/virtual.js +107 -0
- data/node_modules/nano-css/addon/withStyles.js +32 -0
- data/node_modules/nano-css/index.d.ts +4 -0
- data/node_modules/nano-css/index.js +138 -0
- data/node_modules/nano-css/package.json +145 -0
- data/node_modules/nano-css/preset/react.js +43 -0
- data/node_modules/nano-css/preset/sheet.d.ts +5 -0
- data/node_modules/nano-css/preset/sheet.js +27 -0
- data/node_modules/nano-css/preset/vdom.js +40 -0
- data/node_modules/nano-css/prettier.config.js +13 -0
- data/node_modules/nano-css/renovate.json +3 -0
- data/node_modules/nano-css/types/common.d.ts +14 -0
- data/node_modules/nano-css/types/demo.ts +7 -0
- data/node_modules/nano-css/types/nano.d.ts +171 -0
- data/node_modules/object-assign/index.js +90 -0
- data/node_modules/object-assign/license +21 -0
- data/node_modules/object-assign/package.json +42 -0
- data/node_modules/object-assign/readme.md +61 -0
- data/node_modules/preact/LICENSE +21 -0
- data/node_modules/preact/README.md +187 -0
- data/node_modules/preact/compat/LICENSE +21 -0
- data/node_modules/preact/compat/dist/compat.js +2 -0
- data/node_modules/preact/compat/dist/compat.js.map +1 -0
- data/node_modules/preact/compat/dist/compat.mjs +2 -0
- data/node_modules/preact/compat/dist/compat.mjs.map +1 -0
- data/node_modules/preact/compat/dist/compat.modern.js +2 -0
- data/node_modules/preact/compat/dist/compat.modern.js.map +1 -0
- data/node_modules/preact/compat/dist/compat.module.js +2 -0
- data/node_modules/preact/compat/dist/compat.module.js.map +1 -0
- data/node_modules/preact/compat/dist/compat.umd.js +2 -0
- data/node_modules/preact/compat/dist/compat.umd.js.map +1 -0
- data/node_modules/preact/compat/jsx-dev-runtime.js +1 -0
- data/node_modules/preact/compat/jsx-dev-runtime.mjs +1 -0
- data/node_modules/preact/compat/jsx-runtime.js +1 -0
- data/node_modules/preact/compat/jsx-runtime.mjs +1 -0
- data/node_modules/preact/compat/package.json +19 -0
- data/node_modules/preact/compat/scheduler.js +15 -0
- data/node_modules/preact/compat/scheduler.mjs +23 -0
- data/node_modules/preact/compat/server.js +15 -0
- data/node_modules/preact/compat/server.mjs +4 -0
- data/node_modules/preact/compat/src/Children.js +21 -0
- data/node_modules/preact/compat/src/PureComponent.js +15 -0
- data/node_modules/preact/compat/src/forwardRef.js +51 -0
- data/node_modules/preact/compat/src/index.d.ts +140 -0
- data/node_modules/preact/compat/src/index.js +187 -0
- data/node_modules/preact/compat/src/internal.d.ts +47 -0
- data/node_modules/preact/compat/src/memo.js +34 -0
- data/node_modules/preact/compat/src/portals.js +80 -0
- data/node_modules/preact/compat/src/render.js +219 -0
- data/node_modules/preact/compat/src/suspense-list.d.ts +14 -0
- data/node_modules/preact/compat/src/suspense-list.js +126 -0
- data/node_modules/preact/compat/src/suspense.d.ts +15 -0
- data/node_modules/preact/compat/src/suspense.js +270 -0
- data/node_modules/preact/compat/src/util.js +28 -0
- data/node_modules/preact/compat/test-utils.js +1 -0
- data/node_modules/preact/debug/LICENSE +21 -0
- data/node_modules/preact/debug/dist/debug.js +2 -0
- data/node_modules/preact/debug/dist/debug.js.map +1 -0
- data/node_modules/preact/debug/dist/debug.mjs +2 -0
- data/node_modules/preact/debug/dist/debug.mjs.map +1 -0
- data/node_modules/preact/debug/dist/debug.modern.js +2 -0
- data/node_modules/preact/debug/dist/debug.modern.js.map +1 -0
- data/node_modules/preact/debug/dist/debug.module.js +2 -0
- data/node_modules/preact/debug/dist/debug.module.js.map +1 -0
- data/node_modules/preact/debug/dist/debug.umd.js +2 -0
- data/node_modules/preact/debug/dist/debug.umd.js.map +1 -0
- data/node_modules/preact/debug/package.json +18 -0
- data/node_modules/preact/debug/src/check-props.js +54 -0
- data/node_modules/preact/debug/src/component-stack.js +146 -0
- data/node_modules/preact/debug/src/constants.js +3 -0
- data/node_modules/preact/debug/src/debug.js +442 -0
- data/node_modules/preact/debug/src/index.js +6 -0
- data/node_modules/preact/debug/src/internal.d.ts +82 -0
- data/node_modules/preact/debug/src/util.js +11 -0
- data/node_modules/preact/devtools/LICENSE +21 -0
- data/node_modules/preact/devtools/dist/devtools.js +2 -0
- data/node_modules/preact/devtools/dist/devtools.js.map +1 -0
- data/node_modules/preact/devtools/dist/devtools.mjs +2 -0
- data/node_modules/preact/devtools/dist/devtools.mjs.map +1 -0
- data/node_modules/preact/devtools/dist/devtools.modern.js +2 -0
- data/node_modules/preact/devtools/dist/devtools.modern.js.map +1 -0
- data/node_modules/preact/devtools/dist/devtools.module.js +2 -0
- data/node_modules/preact/devtools/dist/devtools.module.js.map +1 -0
- data/node_modules/preact/devtools/dist/devtools.umd.js +2 -0
- data/node_modules/preact/devtools/dist/devtools.umd.js.map +1 -0
- data/node_modules/preact/devtools/package.json +16 -0
- data/node_modules/preact/devtools/src/devtools.js +10 -0
- data/node_modules/preact/devtools/src/index.d.ts +8 -0
- data/node_modules/preact/devtools/src/index.js +15 -0
- data/node_modules/preact/dist/preact.js +2 -0
- data/node_modules/preact/dist/preact.js.map +1 -0
- data/node_modules/preact/dist/preact.min.js +2 -0
- data/node_modules/preact/dist/preact.min.js.map +1 -0
- data/node_modules/preact/dist/preact.mjs +2 -0
- data/node_modules/preact/dist/preact.mjs.map +1 -0
- data/node_modules/preact/dist/preact.module.js +2 -0
- data/node_modules/preact/dist/preact.module.js.map +1 -0
- data/node_modules/preact/dist/preact.umd.js +2 -0
- data/node_modules/preact/dist/preact.umd.js.map +1 -0
- data/node_modules/preact/hooks/LICENSE +21 -0
- data/node_modules/preact/hooks/dist/hooks.js +2 -0
- data/node_modules/preact/hooks/dist/hooks.js.map +1 -0
- data/node_modules/preact/hooks/dist/hooks.mjs +2 -0
- data/node_modules/preact/hooks/dist/hooks.mjs.map +1 -0
- data/node_modules/preact/hooks/dist/hooks.modern.js +2 -0
- data/node_modules/preact/hooks/dist/hooks.modern.js.map +1 -0
- data/node_modules/preact/hooks/dist/hooks.module.js +2 -0
- data/node_modules/preact/hooks/dist/hooks.module.js.map +1 -0
- data/node_modules/preact/hooks/dist/hooks.umd.js +2 -0
- data/node_modules/preact/hooks/dist/hooks.umd.js.map +1 -0
- data/node_modules/preact/hooks/package.json +26 -0
- data/node_modules/preact/hooks/src/index.d.ts +133 -0
- data/node_modules/preact/hooks/src/index.js +386 -0
- data/node_modules/preact/hooks/src/internal.d.ts +75 -0
- data/node_modules/preact/jsx-runtime/LICENSE +21 -0
- data/node_modules/preact/jsx-runtime/dist/jsxRuntime.js +2 -0
- data/node_modules/preact/jsx-runtime/dist/jsxRuntime.js.map +1 -0
- data/node_modules/preact/jsx-runtime/dist/jsxRuntime.mjs +2 -0
- data/node_modules/preact/jsx-runtime/dist/jsxRuntime.modern.js +2 -0
- data/node_modules/preact/jsx-runtime/dist/jsxRuntime.modern.js.map +1 -0
- data/node_modules/preact/jsx-runtime/dist/jsxRuntime.module.js +2 -0
- data/node_modules/preact/jsx-runtime/dist/jsxRuntime.module.js.map +1 -0
- data/node_modules/preact/jsx-runtime/dist/jsxRuntime.umd.js +2 -0
- data/node_modules/preact/jsx-runtime/dist/jsxRuntime.umd.js.map +1 -0
- data/node_modules/preact/jsx-runtime/package.json +19 -0
- data/node_modules/preact/jsx-runtime/src/index.d.ts +50 -0
- data/node_modules/preact/jsx-runtime/src/index.js +77 -0
- data/node_modules/preact/package.json +270 -0
- data/node_modules/preact/src/cjs.js +3 -0
- data/node_modules/preact/src/clone-element.js +34 -0
- data/node_modules/preact/src/component.js +225 -0
- data/node_modules/preact/src/constants.js +3 -0
- data/node_modules/preact/src/create-context.js +68 -0
- data/node_modules/preact/src/create-element.js +97 -0
- data/node_modules/preact/src/diff/catch-error.js +38 -0
- data/node_modules/preact/src/diff/children.js +347 -0
- data/node_modules/preact/src/diff/index.js +514 -0
- data/node_modules/preact/src/diff/props.js +158 -0
- data/node_modules/preact/src/index.d.ts +310 -0
- data/node_modules/preact/src/index.js +13 -0
- data/node_modules/preact/src/internal.d.ts +146 -0
- data/node_modules/preact/src/jsx.d.ts +962 -0
- data/node_modules/preact/src/options.js +16 -0
- data/node_modules/preact/src/render.js +75 -0
- data/node_modules/preact/src/util.js +27 -0
- data/node_modules/preact/test-utils/dist/testUtils.js +2 -0
- data/node_modules/preact/test-utils/dist/testUtils.js.map +1 -0
- data/node_modules/preact/test-utils/dist/testUtils.mjs +2 -0
- data/node_modules/preact/test-utils/dist/testUtils.mjs.map +1 -0
- data/node_modules/preact/test-utils/dist/testUtils.modern.js +2 -0
- data/node_modules/preact/test-utils/dist/testUtils.modern.js.map +1 -0
- data/node_modules/preact/test-utils/dist/testUtils.module.js +2 -0
- data/node_modules/preact/test-utils/dist/testUtils.module.js.map +1 -0
- data/node_modules/preact/test-utils/dist/testUtils.umd.js +2 -0
- data/node_modules/preact/test-utils/dist/testUtils.umd.js.map +1 -0
- data/node_modules/preact/test-utils/package.json +19 -0
- data/node_modules/preact/test-utils/src/index.d.ts +3 -0
- data/node_modules/preact/test-utils/src/index.js +117 -0
- data/node_modules/preact-deep-force-update/.babelrc +8 -0
- data/node_modules/preact-deep-force-update/.eslintrc +66 -0
- data/node_modules/preact-deep-force-update/.npmignore +2 -0
- data/node_modules/preact-deep-force-update/.travis.yml +3 -0
- data/node_modules/preact-deep-force-update/LICENSE +21 -0
- data/node_modules/preact-deep-force-update/README.md +53 -0
- data/node_modules/preact-deep-force-update/dist/deep-force-update.js +36 -0
- data/node_modules/preact-deep-force-update/dist/deep-force-update.js.map +1 -0
- data/node_modules/preact-deep-force-update/dist/deep-force-update.min.js +2 -0
- data/node_modules/preact-deep-force-update/dist/deep-force-update.min.js.map +1 -0
- data/node_modules/preact-deep-force-update/karma.conf.js +32 -0
- data/node_modules/preact-deep-force-update/package.json +80 -0
- data/node_modules/preact-deep-force-update/rollup.config.js +17 -0
- data/node_modules/preact-deep-force-update/src/index.js +27 -0
- data/node_modules/preact-deep-force-update/test/index.js +50 -0
- data/node_modules/preact-render-to-string/LICENSE +21 -0
- data/node_modules/preact-render-to-string/README.md +102 -0
- data/node_modules/preact-render-to-string/dist/commonjs.js +2 -0
- data/node_modules/preact-render-to-string/dist/commonjs.js.map +1 -0
- data/node_modules/preact-render-to-string/dist/index.d.ts +16 -0
- data/node_modules/preact-render-to-string/dist/index.js +1 -0
- data/node_modules/preact-render-to-string/dist/index.js.map +1 -0
- data/node_modules/preact-render-to-string/dist/index.mjs +2 -0
- data/node_modules/preact-render-to-string/dist/index.module.js +2 -0
- data/node_modules/preact-render-to-string/dist/index.module.js.map +1 -0
- data/node_modules/preact-render-to-string/dist/jsx-entry.js +2 -0
- data/node_modules/preact-render-to-string/dist/jsx-entry.js.map +1 -0
- data/node_modules/preact-render-to-string/dist/jsx.d.ts +13 -0
- data/node_modules/preact-render-to-string/dist/jsx.js +1 -0
- data/node_modules/preact-render-to-string/dist/jsx.js.map +1 -0
- data/node_modules/preact-render-to-string/dist/jsx.mjs +2 -0
- data/node_modules/preact-render-to-string/dist/jsx.modern.js +2 -0
- data/node_modules/preact-render-to-string/dist/jsx.modern.js.map +1 -0
- data/node_modules/preact-render-to-string/dist/jsx.module.js +2 -0
- data/node_modules/preact-render-to-string/dist/jsx.module.js.map +1 -0
- data/node_modules/preact-render-to-string/dist/preact-render-to-string-tests.d.ts +1 -0
- data/node_modules/preact-render-to-string/jsx.js +1 -0
- data/node_modules/preact-render-to-string/package.json +139 -0
- data/node_modules/preact-render-to-string/src/index.d.ts +16 -0
- data/node_modules/preact-render-to-string/src/index.js +438 -0
- data/node_modules/preact-render-to-string/src/jsx.d.ts +13 -0
- data/node_modules/preact-render-to-string/src/jsx.js +76 -0
- data/node_modules/preact-render-to-string/src/polyfills.js +8 -0
- data/node_modules/preact-render-to-string/src/preact-render-to-string-tests.d.ts +1 -0
- data/node_modules/preact-render-to-string/src/util.js +78 -0
- data/node_modules/preact-render-to-string/typings.json +5 -0
- data/node_modules/pretty-format/.npmignore +3 -0
- data/node_modules/pretty-format/LICENSE.md +15 -0
- data/node_modules/pretty-format/README.md +94 -0
- data/node_modules/pretty-format/index.js +343 -0
- data/node_modules/pretty-format/package.json +26 -0
- data/node_modules/pretty-format/plugins/ReactElement.js +74 -0
- data/node_modules/pretty-format/plugins/ReactTestComponent.js +58 -0
- data/node_modules/pretty-format/printString.js +7 -0
- data/node_modules/react/LICENSE +21 -0
- data/node_modules/react/README.md +13 -0
- data/node_modules/react/build-info.json +8 -0
- data/node_modules/react/cjs/react-jsx-dev-runtime.development.js +1203 -0
- data/node_modules/react/cjs/react-jsx-dev-runtime.production.min.js +9 -0
- data/node_modules/react/cjs/react-jsx-dev-runtime.profiling.min.js +9 -0
- data/node_modules/react/cjs/react-jsx-runtime.development.js +1221 -0
- data/node_modules/react/cjs/react-jsx-runtime.production.min.js +10 -0
- data/node_modules/react/cjs/react-jsx-runtime.profiling.min.js +10 -0
- data/node_modules/react/cjs/react.development.js +2333 -0
- data/node_modules/react/cjs/react.production.min.js +23 -0
- data/node_modules/react/index.js +7 -0
- data/node_modules/react/jsx-dev-runtime.js +7 -0
- data/node_modules/react/jsx-runtime.js +7 -0
- data/node_modules/react/package.json +39 -0
- data/node_modules/react/umd/react.development.js +3357 -0
- data/node_modules/react/umd/react.production.min.js +31 -0
- data/node_modules/react/umd/react.profiling.min.js +36 -0
- data/node_modules/react-dom/LICENSE +21 -0
- data/node_modules/react-dom/README.md +54 -0
- data/node_modules/react-dom/build-info.json +8 -0
- data/node_modules/react-dom/cjs/react-dom-server.browser.development.js +4342 -0
- data/node_modules/react-dom/cjs/react-dom-server.browser.production.min.js +51 -0
- data/node_modules/react-dom/cjs/react-dom-server.node.development.js +4383 -0
- data/node_modules/react-dom/cjs/react-dom-server.node.production.min.js +52 -0
- data/node_modules/react-dom/cjs/react-dom-test-utils.development.js +2118 -0
- data/node_modules/react-dom/cjs/react-dom-test-utils.production.min.js +43 -0
- data/node_modules/react-dom/cjs/react-dom.development.js +26262 -0
- data/node_modules/react-dom/cjs/react-dom.production.min.js +297 -0
- data/node_modules/react-dom/cjs/react-dom.profiling.min.js +310 -0
- data/node_modules/react-dom/index.js +38 -0
- data/node_modules/react-dom/package.json +49 -0
- data/node_modules/react-dom/profiling.js +38 -0
- data/node_modules/react-dom/server.browser.js +7 -0
- data/node_modules/react-dom/server.js +3 -0
- data/node_modules/react-dom/server.node.js +7 -0
- data/node_modules/react-dom/test-utils.js +7 -0
- data/node_modules/react-dom/umd/react-dom-server.browser.development.js +4341 -0
- data/node_modules/react-dom/umd/react-dom-server.browser.production.min.js +46 -0
- data/node_modules/react-dom/umd/react-dom-test-utils.development.js +2136 -0
- data/node_modules/react-dom/umd/react-dom-test-utils.production.min.js +35 -0
- data/node_modules/react-dom/umd/react-dom.development.js +26292 -0
- data/node_modules/react-dom/umd/react-dom.production.min.js +245 -0
- data/node_modules/react-dom/umd/react-dom.profiling.min.js +252 -0
- data/node_modules/regenerator-runtime/LICENSE +21 -0
- data/node_modules/regenerator-runtime/README.md +31 -0
- data/node_modules/regenerator-runtime/package.json +19 -0
- data/node_modules/regenerator-runtime/path.js +11 -0
- data/node_modules/regenerator-runtime/runtime.js +754 -0
- data/node_modules/rtl-css-js/CHANGELOG.md +5 -0
- data/node_modules/rtl-css-js/LICENSE +20 -0
- data/node_modules/rtl-css-js/README.md +205 -0
- data/node_modules/rtl-css-js/core/package.json +6 -0
- data/node_modules/rtl-css-js/core.d.ts +163 -0
- data/node_modules/rtl-css-js/core.esm.d.ts +1 -0
- data/node_modules/rtl-css-js/core.esm.js +9 -0
- data/node_modules/rtl-css-js/dist/cjs/convert-a10c80e3.js +509 -0
- data/node_modules/rtl-css-js/dist/cjs/core.js +30 -0
- data/node_modules/rtl-css-js/dist/cjs/index.js +7 -0
- data/node_modules/rtl-css-js/dist/esm/convert-09159978.js +487 -0
- data/node_modules/rtl-css-js/dist/esm/core.js +1 -0
- data/node_modules/rtl-css-js/dist/esm/index.js +5 -0
- data/node_modules/rtl-css-js/dist/rtl-css-js.core.umd.js +519 -0
- data/node_modules/rtl-css-js/dist/rtl-css-js.core.umd.js.map +1 -0
- data/node_modules/rtl-css-js/dist/rtl-css-js.core.umd.min.js +2 -0
- data/node_modules/rtl-css-js/dist/rtl-css-js.core.umd.min.js.map +1 -0
- data/node_modules/rtl-css-js/dist/rtl-css-js.umd.js +496 -0
- data/node_modules/rtl-css-js/dist/rtl-css-js.umd.js.map +1 -0
- data/node_modules/rtl-css-js/dist/rtl-css-js.umd.min.js +2 -0
- data/node_modules/rtl-css-js/dist/rtl-css-js.umd.min.js.map +1 -0
- data/node_modules/rtl-css-js/package.json +66 -0
- data/node_modules/rtl-css-js/types.d.ts +8 -0
- data/node_modules/scheduler/LICENSE +21 -0
- data/node_modules/scheduler/README.md +9 -0
- data/node_modules/scheduler/build-info.json +8 -0
- data/node_modules/scheduler/cjs/scheduler-tracing.development.js +347 -0
- data/node_modules/scheduler/cjs/scheduler-tracing.production.min.js +9 -0
- data/node_modules/scheduler/cjs/scheduler-tracing.profiling.min.js +16 -0
- data/node_modules/scheduler/cjs/scheduler-unstable_mock.development.js +665 -0
- data/node_modules/scheduler/cjs/scheduler-unstable_mock.production.min.js +19 -0
- data/node_modules/scheduler/cjs/scheduler-unstable_post_task.development.js +206 -0
- data/node_modules/scheduler/cjs/scheduler-unstable_post_task.production.min.js +13 -0
- data/node_modules/scheduler/cjs/scheduler.development.js +646 -0
- data/node_modules/scheduler/cjs/scheduler.production.min.js +20 -0
- data/node_modules/scheduler/index.js +7 -0
- data/node_modules/scheduler/package.json +40 -0
- data/node_modules/scheduler/tracing-profiling.js +7 -0
- data/node_modules/scheduler/tracing.js +7 -0
- data/node_modules/scheduler/umd/scheduler-tracing.development.js +80 -0
- data/node_modules/scheduler/umd/scheduler-tracing.production.min.js +80 -0
- data/node_modules/scheduler/umd/scheduler-tracing.profiling.min.js +80 -0
- data/node_modules/scheduler/umd/scheduler-unstable_mock.development.js +664 -0
- data/node_modules/scheduler/umd/scheduler-unstable_mock.production.min.js +18 -0
- data/node_modules/scheduler/umd/scheduler.development.js +152 -0
- data/node_modules/scheduler/umd/scheduler.production.min.js +146 -0
- data/node_modules/scheduler/umd/scheduler.profiling.min.js +146 -0
- data/node_modules/scheduler/unstable_mock.js +7 -0
- data/node_modules/scheduler/unstable_post_task.js +7 -0
- data/node_modules/source-map/CHANGELOG.md +301 -0
- data/node_modules/source-map/LICENSE +28 -0
- data/node_modules/source-map/README.md +742 -0
- data/node_modules/source-map/dist/source-map.debug.js +3234 -0
- data/node_modules/source-map/dist/source-map.js +3233 -0
- data/node_modules/source-map/dist/source-map.min.js +2 -0
- data/node_modules/source-map/dist/source-map.min.js.map +1 -0
- data/node_modules/source-map/lib/array-set.js +121 -0
- data/node_modules/source-map/lib/base64-vlq.js +140 -0
- data/node_modules/source-map/lib/base64.js +67 -0
- data/node_modules/source-map/lib/binary-search.js +111 -0
- data/node_modules/source-map/lib/mapping-list.js +79 -0
- data/node_modules/source-map/lib/quick-sort.js +114 -0
- data/node_modules/source-map/lib/source-map-consumer.js +1145 -0
- data/node_modules/source-map/lib/source-map-generator.js +425 -0
- data/node_modules/source-map/lib/source-node.js +413 -0
- data/node_modules/source-map/lib/util.js +488 -0
- data/node_modules/source-map/package.json +73 -0
- data/node_modules/source-map/source-map.d.ts +98 -0
- data/node_modules/source-map/source-map.js +8 -0
- data/node_modules/sourcemap-codec/CHANGELOG.md +64 -0
- data/node_modules/sourcemap-codec/LICENSE +21 -0
- data/node_modules/sourcemap-codec/README.md +63 -0
- data/node_modules/sourcemap-codec/dist/sourcemap-codec.es.js +124 -0
- data/node_modules/sourcemap-codec/dist/sourcemap-codec.es.js.map +1 -0
- data/node_modules/sourcemap-codec/dist/sourcemap-codec.umd.js +135 -0
- data/node_modules/sourcemap-codec/dist/sourcemap-codec.umd.js.map +1 -0
- data/node_modules/sourcemap-codec/dist/types/sourcemap-codec.d.ts +5 -0
- data/node_modules/sourcemap-codec/package.json +53 -0
- data/node_modules/stack-generator/.eslintrc.yml +32 -0
- data/node_modules/stack-generator/CHANGELOG.md +18 -0
- data/node_modules/stack-generator/CONTRIBUTING.md +27 -0
- data/node_modules/stack-generator/LICENSE +19 -0
- data/node_modules/stack-generator/README.md +28 -0
- data/node_modules/stack-generator/bower.json +33 -0
- data/node_modules/stack-generator/component.json +17 -0
- data/node_modules/stack-generator/dist/stack-generator.js +45 -0
- data/node_modules/stack-generator/dist/stack-generator.min.js +2 -0
- data/node_modules/stack-generator/dist/stack-generator.min.js.map +1 -0
- data/node_modules/stack-generator/karma.conf.ci.js +108 -0
- data/node_modules/stack-generator/karma.conf.js +26 -0
- data/node_modules/stack-generator/package.json +53 -0
- data/node_modules/stack-generator/stack-generator.js +45 -0
- data/node_modules/stackframe/.eslintrc.yml +29 -0
- data/node_modules/stackframe/CHANGELOG.md +39 -0
- data/node_modules/stackframe/CONTRIBUTING.md +28 -0
- data/node_modules/stackframe/LICENSE +19 -0
- data/node_modules/stackframe/README.md +78 -0
- data/node_modules/stackframe/bower.json +31 -0
- data/node_modules/stackframe/component.json +16 -0
- data/node_modules/stackframe/dist/stackframe.js +143 -0
- data/node_modules/stackframe/dist/stackframe.min.js +2 -0
- data/node_modules/stackframe/dist/stackframe.min.js.map +1 -0
- data/node_modules/stackframe/karma.conf.ci.js +105 -0
- data/node_modules/stackframe/karma.conf.js +23 -0
- data/node_modules/stackframe/package.json +51 -0
- data/node_modules/stackframe/stackframe-tests.ts +47 -0
- data/node_modules/stackframe/stackframe.d.ts +74 -0
- data/node_modules/stackframe/stackframe.js +143 -0
- data/node_modules/stacktrace-gps/CHANGELOG.md +60 -0
- data/node_modules/stacktrace-gps/LICENSE +19 -0
- data/node_modules/stacktrace-gps/README.md +89 -0
- data/node_modules/stacktrace-gps/dist/polyfills.js +5 -0
- data/node_modules/stacktrace-gps/dist/stacktrace-gps-with-polyfills.min.js +2 -0
- data/node_modules/stacktrace-gps/dist/stacktrace-gps-with-polyfills.min.js.map +1 -0
- data/node_modules/stacktrace-gps/dist/stacktrace-gps.js +342 -0
- data/node_modules/stacktrace-gps/dist/stacktrace-gps.min.js +2 -0
- data/node_modules/stacktrace-gps/dist/stacktrace-gps.min.js.map +1 -0
- data/node_modules/stacktrace-gps/node_modules/source-map/CHANGELOG.md +301 -0
- data/node_modules/stacktrace-gps/node_modules/source-map/LICENSE +28 -0
- data/node_modules/stacktrace-gps/node_modules/source-map/README.md +729 -0
- data/node_modules/stacktrace-gps/node_modules/source-map/dist/source-map.debug.js +3056 -0
- data/node_modules/stacktrace-gps/node_modules/source-map/dist/source-map.js +3055 -0
- data/node_modules/stacktrace-gps/node_modules/source-map/dist/source-map.min.js +2 -0
- data/node_modules/stacktrace-gps/node_modules/source-map/dist/source-map.min.js.map +1 -0
- data/node_modules/stacktrace-gps/node_modules/source-map/lib/array-set.js +104 -0
- data/node_modules/stacktrace-gps/node_modules/source-map/lib/base64-vlq.js +140 -0
- data/node_modules/stacktrace-gps/node_modules/source-map/lib/base64.js +67 -0
- data/node_modules/stacktrace-gps/node_modules/source-map/lib/binary-search.js +111 -0
- data/node_modules/stacktrace-gps/node_modules/source-map/lib/mapping-list.js +79 -0
- data/node_modules/stacktrace-gps/node_modules/source-map/lib/quick-sort.js +114 -0
- data/node_modules/stacktrace-gps/node_modules/source-map/lib/source-map-consumer.js +1082 -0
- data/node_modules/stacktrace-gps/node_modules/source-map/lib/source-map-generator.js +404 -0
- data/node_modules/stacktrace-gps/node_modules/source-map/lib/source-node.js +407 -0
- data/node_modules/stacktrace-gps/node_modules/source-map/lib/util.js +417 -0
- data/node_modules/stacktrace-gps/node_modules/source-map/package.json +71 -0
- data/node_modules/stacktrace-gps/node_modules/source-map/source-map.js +8 -0
- data/node_modules/stacktrace-gps/package.json +66 -0
- data/node_modules/stacktrace-gps/stacktrace-gps.js +342 -0
- data/node_modules/stacktrace-js/CHANGELOG.md +97 -0
- data/node_modules/stacktrace-js/LICENSE +19 -0
- data/node_modules/stacktrace-js/README.md +186 -0
- data/node_modules/stacktrace-js/dist/stacktrace-with-promises-and-json-polyfills.js +5405 -0
- data/node_modules/stacktrace-js/dist/stacktrace-with-promises-and-json-polyfills.min.js +3 -0
- data/node_modules/stacktrace-js/dist/stacktrace-with-promises-and-json-polyfills.min.js.map +1 -0
- data/node_modules/stacktrace-js/dist/stacktrace.js +3025 -0
- data/node_modules/stacktrace-js/dist/stacktrace.min.js +2 -0
- data/node_modules/stacktrace-js/dist/stacktrace.min.js.map +1 -0
- data/node_modules/stacktrace-js/package.json +82 -0
- data/node_modules/stacktrace-js/stacktrace-js.d.ts +134 -0
- data/node_modules/stacktrace-js/stacktrace.js +227 -0
- data/node_modules/stylis/LICENSE +21 -0
- data/node_modules/stylis/README.md +152 -0
- data/node_modules/stylis/dist/stylis.mjs +2 -0
- data/node_modules/stylis/dist/stylis.mjs.map +1 -0
- data/node_modules/stylis/dist/umd/package.json +1 -0
- data/node_modules/stylis/dist/umd/stylis.js +2 -0
- data/node_modules/stylis/dist/umd/stylis.js.map +1 -0
- data/node_modules/stylis/index.js +7 -0
- data/node_modules/stylis/package.json +164 -0
- data/node_modules/stylis/src/Enum.js +20 -0
- data/node_modules/stylis/src/Middleware.js +107 -0
- data/node_modules/stylis/src/Parser.js +184 -0
- data/node_modules/stylis/src/Prefixer.js +119 -0
- data/node_modules/stylis/src/Serializer.js +34 -0
- data/node_modules/stylis/src/Tokenizer.js +244 -0
- data/node_modules/stylis/src/Utility.js +109 -0
- data/node_modules/wouter-preact/cjs/index.js +180 -0
- data/node_modules/wouter-preact/cjs/matcher.js +72 -0
- data/node_modules/wouter-preact/cjs/package.json +1 -0
- data/node_modules/wouter-preact/cjs/react-deps.js +75 -0
- data/node_modules/wouter-preact/cjs/static-location.js +21 -0
- data/node_modules/wouter-preact/cjs/use-location.js +94 -0
- data/node_modules/wouter-preact/index.d.ts +110 -0
- data/node_modules/wouter-preact/index.js +178 -0
- data/node_modules/wouter-preact/matcher.d.ts +30 -0
- data/node_modules/wouter-preact/matcher.js +66 -0
- data/node_modules/wouter-preact/package.json +33 -0
- data/node_modules/wouter-preact/react-deps.js +15 -0
- data/node_modules/wouter-preact/static-location.d.ts +16 -0
- data/node_modules/wouter-preact/static-location.js +17 -0
- data/node_modules/wouter-preact/use-location.d.ts +43 -0
- data/node_modules/wouter-preact/use-location.js +86 -0
- data/package.json +10 -0
- metadata +1093 -20
@@ -0,0 +1,114 @@
|
|
1
|
+
/* -*- Mode: js; js-indent-level: 2; -*- */
|
2
|
+
/*
|
3
|
+
* Copyright 2011 Mozilla Foundation and contributors
|
4
|
+
* Licensed under the New BSD license. See LICENSE or:
|
5
|
+
* http://opensource.org/licenses/BSD-3-Clause
|
6
|
+
*/
|
7
|
+
|
8
|
+
// It turns out that some (most?) JavaScript engines don't self-host
|
9
|
+
// `Array.prototype.sort`. This makes sense because C++ will likely remain
|
10
|
+
// faster than JS when doing raw CPU-intensive sorting. However, when using a
|
11
|
+
// custom comparator function, calling back and forth between the VM's C++ and
|
12
|
+
// JIT'd JS is rather slow *and* loses JIT type information, resulting in
|
13
|
+
// worse generated code for the comparator function than would be optimal. In
|
14
|
+
// fact, when sorting with a comparator, these costs outweigh the benefits of
|
15
|
+
// sorting in C++. By using our own JS-implemented Quick Sort (below), we get
|
16
|
+
// a ~3500ms mean speed-up in `bench/bench.html`.
|
17
|
+
|
18
|
+
/**
|
19
|
+
* Swap the elements indexed by `x` and `y` in the array `ary`.
|
20
|
+
*
|
21
|
+
* @param {Array} ary
|
22
|
+
* The array.
|
23
|
+
* @param {Number} x
|
24
|
+
* The index of the first item.
|
25
|
+
* @param {Number} y
|
26
|
+
* The index of the second item.
|
27
|
+
*/
|
28
|
+
function swap(ary, x, y) {
|
29
|
+
var temp = ary[x];
|
30
|
+
ary[x] = ary[y];
|
31
|
+
ary[y] = temp;
|
32
|
+
}
|
33
|
+
|
34
|
+
/**
|
35
|
+
* Returns a random integer within the range `low .. high` inclusive.
|
36
|
+
*
|
37
|
+
* @param {Number} low
|
38
|
+
* The lower bound on the range.
|
39
|
+
* @param {Number} high
|
40
|
+
* The upper bound on the range.
|
41
|
+
*/
|
42
|
+
function randomIntInRange(low, high) {
|
43
|
+
return Math.round(low + (Math.random() * (high - low)));
|
44
|
+
}
|
45
|
+
|
46
|
+
/**
|
47
|
+
* The Quick Sort algorithm.
|
48
|
+
*
|
49
|
+
* @param {Array} ary
|
50
|
+
* An array to sort.
|
51
|
+
* @param {function} comparator
|
52
|
+
* Function to use to compare two items.
|
53
|
+
* @param {Number} p
|
54
|
+
* Start index of the array
|
55
|
+
* @param {Number} r
|
56
|
+
* End index of the array
|
57
|
+
*/
|
58
|
+
function doQuickSort(ary, comparator, p, r) {
|
59
|
+
// If our lower bound is less than our upper bound, we (1) partition the
|
60
|
+
// array into two pieces and (2) recurse on each half. If it is not, this is
|
61
|
+
// the empty array and our base case.
|
62
|
+
|
63
|
+
if (p < r) {
|
64
|
+
// (1) Partitioning.
|
65
|
+
//
|
66
|
+
// The partitioning chooses a pivot between `p` and `r` and moves all
|
67
|
+
// elements that are less than or equal to the pivot to the before it, and
|
68
|
+
// all the elements that are greater than it after it. The effect is that
|
69
|
+
// once partition is done, the pivot is in the exact place it will be when
|
70
|
+
// the array is put in sorted order, and it will not need to be moved
|
71
|
+
// again. This runs in O(n) time.
|
72
|
+
|
73
|
+
// Always choose a random pivot so that an input array which is reverse
|
74
|
+
// sorted does not cause O(n^2) running time.
|
75
|
+
var pivotIndex = randomIntInRange(p, r);
|
76
|
+
var i = p - 1;
|
77
|
+
|
78
|
+
swap(ary, pivotIndex, r);
|
79
|
+
var pivot = ary[r];
|
80
|
+
|
81
|
+
// Immediately after `j` is incremented in this loop, the following hold
|
82
|
+
// true:
|
83
|
+
//
|
84
|
+
// * Every element in `ary[p .. i]` is less than or equal to the pivot.
|
85
|
+
//
|
86
|
+
// * Every element in `ary[i+1 .. j-1]` is greater than the pivot.
|
87
|
+
for (var j = p; j < r; j++) {
|
88
|
+
if (comparator(ary[j], pivot) <= 0) {
|
89
|
+
i += 1;
|
90
|
+
swap(ary, i, j);
|
91
|
+
}
|
92
|
+
}
|
93
|
+
|
94
|
+
swap(ary, i + 1, j);
|
95
|
+
var q = i + 1;
|
96
|
+
|
97
|
+
// (2) Recurse on each half.
|
98
|
+
|
99
|
+
doQuickSort(ary, comparator, p, q - 1);
|
100
|
+
doQuickSort(ary, comparator, q + 1, r);
|
101
|
+
}
|
102
|
+
}
|
103
|
+
|
104
|
+
/**
|
105
|
+
* Sort the given array in-place with the given comparator function.
|
106
|
+
*
|
107
|
+
* @param {Array} ary
|
108
|
+
* An array to sort.
|
109
|
+
* @param {function} comparator
|
110
|
+
* Function to use to compare two items.
|
111
|
+
*/
|
112
|
+
exports.quickSort = function (ary, comparator) {
|
113
|
+
doQuickSort(ary, comparator, 0, ary.length - 1);
|
114
|
+
};
|
@@ -0,0 +1,1082 @@
|
|
1
|
+
/* -*- Mode: js; js-indent-level: 2; -*- */
|
2
|
+
/*
|
3
|
+
* Copyright 2011 Mozilla Foundation and contributors
|
4
|
+
* Licensed under the New BSD license. See LICENSE or:
|
5
|
+
* http://opensource.org/licenses/BSD-3-Clause
|
6
|
+
*/
|
7
|
+
|
8
|
+
var util = require('./util');
|
9
|
+
var binarySearch = require('./binary-search');
|
10
|
+
var ArraySet = require('./array-set').ArraySet;
|
11
|
+
var base64VLQ = require('./base64-vlq');
|
12
|
+
var quickSort = require('./quick-sort').quickSort;
|
13
|
+
|
14
|
+
function SourceMapConsumer(aSourceMap) {
|
15
|
+
var sourceMap = aSourceMap;
|
16
|
+
if (typeof aSourceMap === 'string') {
|
17
|
+
sourceMap = JSON.parse(aSourceMap.replace(/^\)\]\}'/, ''));
|
18
|
+
}
|
19
|
+
|
20
|
+
return sourceMap.sections != null
|
21
|
+
? new IndexedSourceMapConsumer(sourceMap)
|
22
|
+
: new BasicSourceMapConsumer(sourceMap);
|
23
|
+
}
|
24
|
+
|
25
|
+
SourceMapConsumer.fromSourceMap = function(aSourceMap) {
|
26
|
+
return BasicSourceMapConsumer.fromSourceMap(aSourceMap);
|
27
|
+
}
|
28
|
+
|
29
|
+
/**
|
30
|
+
* The version of the source mapping spec that we are consuming.
|
31
|
+
*/
|
32
|
+
SourceMapConsumer.prototype._version = 3;
|
33
|
+
|
34
|
+
// `__generatedMappings` and `__originalMappings` are arrays that hold the
|
35
|
+
// parsed mapping coordinates from the source map's "mappings" attribute. They
|
36
|
+
// are lazily instantiated, accessed via the `_generatedMappings` and
|
37
|
+
// `_originalMappings` getters respectively, and we only parse the mappings
|
38
|
+
// and create these arrays once queried for a source location. We jump through
|
39
|
+
// these hoops because there can be many thousands of mappings, and parsing
|
40
|
+
// them is expensive, so we only want to do it if we must.
|
41
|
+
//
|
42
|
+
// Each object in the arrays is of the form:
|
43
|
+
//
|
44
|
+
// {
|
45
|
+
// generatedLine: The line number in the generated code,
|
46
|
+
// generatedColumn: The column number in the generated code,
|
47
|
+
// source: The path to the original source file that generated this
|
48
|
+
// chunk of code,
|
49
|
+
// originalLine: The line number in the original source that
|
50
|
+
// corresponds to this chunk of generated code,
|
51
|
+
// originalColumn: The column number in the original source that
|
52
|
+
// corresponds to this chunk of generated code,
|
53
|
+
// name: The name of the original symbol which generated this chunk of
|
54
|
+
// code.
|
55
|
+
// }
|
56
|
+
//
|
57
|
+
// All properties except for `generatedLine` and `generatedColumn` can be
|
58
|
+
// `null`.
|
59
|
+
//
|
60
|
+
// `_generatedMappings` is ordered by the generated positions.
|
61
|
+
//
|
62
|
+
// `_originalMappings` is ordered by the original positions.
|
63
|
+
|
64
|
+
SourceMapConsumer.prototype.__generatedMappings = null;
|
65
|
+
Object.defineProperty(SourceMapConsumer.prototype, '_generatedMappings', {
|
66
|
+
get: function () {
|
67
|
+
if (!this.__generatedMappings) {
|
68
|
+
this._parseMappings(this._mappings, this.sourceRoot);
|
69
|
+
}
|
70
|
+
|
71
|
+
return this.__generatedMappings;
|
72
|
+
}
|
73
|
+
});
|
74
|
+
|
75
|
+
SourceMapConsumer.prototype.__originalMappings = null;
|
76
|
+
Object.defineProperty(SourceMapConsumer.prototype, '_originalMappings', {
|
77
|
+
get: function () {
|
78
|
+
if (!this.__originalMappings) {
|
79
|
+
this._parseMappings(this._mappings, this.sourceRoot);
|
80
|
+
}
|
81
|
+
|
82
|
+
return this.__originalMappings;
|
83
|
+
}
|
84
|
+
});
|
85
|
+
|
86
|
+
SourceMapConsumer.prototype._charIsMappingSeparator =
|
87
|
+
function SourceMapConsumer_charIsMappingSeparator(aStr, index) {
|
88
|
+
var c = aStr.charAt(index);
|
89
|
+
return c === ";" || c === ",";
|
90
|
+
};
|
91
|
+
|
92
|
+
/**
|
93
|
+
* Parse the mappings in a string in to a data structure which we can easily
|
94
|
+
* query (the ordered arrays in the `this.__generatedMappings` and
|
95
|
+
* `this.__originalMappings` properties).
|
96
|
+
*/
|
97
|
+
SourceMapConsumer.prototype._parseMappings =
|
98
|
+
function SourceMapConsumer_parseMappings(aStr, aSourceRoot) {
|
99
|
+
throw new Error("Subclasses must implement _parseMappings");
|
100
|
+
};
|
101
|
+
|
102
|
+
SourceMapConsumer.GENERATED_ORDER = 1;
|
103
|
+
SourceMapConsumer.ORIGINAL_ORDER = 2;
|
104
|
+
|
105
|
+
SourceMapConsumer.GREATEST_LOWER_BOUND = 1;
|
106
|
+
SourceMapConsumer.LEAST_UPPER_BOUND = 2;
|
107
|
+
|
108
|
+
/**
|
109
|
+
* Iterate over each mapping between an original source/line/column and a
|
110
|
+
* generated line/column in this source map.
|
111
|
+
*
|
112
|
+
* @param Function aCallback
|
113
|
+
* The function that is called with each mapping.
|
114
|
+
* @param Object aContext
|
115
|
+
* Optional. If specified, this object will be the value of `this` every
|
116
|
+
* time that `aCallback` is called.
|
117
|
+
* @param aOrder
|
118
|
+
* Either `SourceMapConsumer.GENERATED_ORDER` or
|
119
|
+
* `SourceMapConsumer.ORIGINAL_ORDER`. Specifies whether you want to
|
120
|
+
* iterate over the mappings sorted by the generated file's line/column
|
121
|
+
* order or the original's source/line/column order, respectively. Defaults to
|
122
|
+
* `SourceMapConsumer.GENERATED_ORDER`.
|
123
|
+
*/
|
124
|
+
SourceMapConsumer.prototype.eachMapping =
|
125
|
+
function SourceMapConsumer_eachMapping(aCallback, aContext, aOrder) {
|
126
|
+
var context = aContext || null;
|
127
|
+
var order = aOrder || SourceMapConsumer.GENERATED_ORDER;
|
128
|
+
|
129
|
+
var mappings;
|
130
|
+
switch (order) {
|
131
|
+
case SourceMapConsumer.GENERATED_ORDER:
|
132
|
+
mappings = this._generatedMappings;
|
133
|
+
break;
|
134
|
+
case SourceMapConsumer.ORIGINAL_ORDER:
|
135
|
+
mappings = this._originalMappings;
|
136
|
+
break;
|
137
|
+
default:
|
138
|
+
throw new Error("Unknown order of iteration.");
|
139
|
+
}
|
140
|
+
|
141
|
+
var sourceRoot = this.sourceRoot;
|
142
|
+
mappings.map(function (mapping) {
|
143
|
+
var source = mapping.source === null ? null : this._sources.at(mapping.source);
|
144
|
+
if (source != null && sourceRoot != null) {
|
145
|
+
source = util.join(sourceRoot, source);
|
146
|
+
}
|
147
|
+
return {
|
148
|
+
source: source,
|
149
|
+
generatedLine: mapping.generatedLine,
|
150
|
+
generatedColumn: mapping.generatedColumn,
|
151
|
+
originalLine: mapping.originalLine,
|
152
|
+
originalColumn: mapping.originalColumn,
|
153
|
+
name: mapping.name === null ? null : this._names.at(mapping.name)
|
154
|
+
};
|
155
|
+
}, this).forEach(aCallback, context);
|
156
|
+
};
|
157
|
+
|
158
|
+
/**
|
159
|
+
* Returns all generated line and column information for the original source,
|
160
|
+
* line, and column provided. If no column is provided, returns all mappings
|
161
|
+
* corresponding to a either the line we are searching for or the next
|
162
|
+
* closest line that has any mappings. Otherwise, returns all mappings
|
163
|
+
* corresponding to the given line and either the column we are searching for
|
164
|
+
* or the next closest column that has any offsets.
|
165
|
+
*
|
166
|
+
* The only argument is an object with the following properties:
|
167
|
+
*
|
168
|
+
* - source: The filename of the original source.
|
169
|
+
* - line: The line number in the original source.
|
170
|
+
* - column: Optional. the column number in the original source.
|
171
|
+
*
|
172
|
+
* and an array of objects is returned, each with the following properties:
|
173
|
+
*
|
174
|
+
* - line: The line number in the generated source, or null.
|
175
|
+
* - column: The column number in the generated source, or null.
|
176
|
+
*/
|
177
|
+
SourceMapConsumer.prototype.allGeneratedPositionsFor =
|
178
|
+
function SourceMapConsumer_allGeneratedPositionsFor(aArgs) {
|
179
|
+
var line = util.getArg(aArgs, 'line');
|
180
|
+
|
181
|
+
// When there is no exact match, BasicSourceMapConsumer.prototype._findMapping
|
182
|
+
// returns the index of the closest mapping less than the needle. By
|
183
|
+
// setting needle.originalColumn to 0, we thus find the last mapping for
|
184
|
+
// the given line, provided such a mapping exists.
|
185
|
+
var needle = {
|
186
|
+
source: util.getArg(aArgs, 'source'),
|
187
|
+
originalLine: line,
|
188
|
+
originalColumn: util.getArg(aArgs, 'column', 0)
|
189
|
+
};
|
190
|
+
|
191
|
+
if (this.sourceRoot != null) {
|
192
|
+
needle.source = util.relative(this.sourceRoot, needle.source);
|
193
|
+
}
|
194
|
+
if (!this._sources.has(needle.source)) {
|
195
|
+
return [];
|
196
|
+
}
|
197
|
+
needle.source = this._sources.indexOf(needle.source);
|
198
|
+
|
199
|
+
var mappings = [];
|
200
|
+
|
201
|
+
var index = this._findMapping(needle,
|
202
|
+
this._originalMappings,
|
203
|
+
"originalLine",
|
204
|
+
"originalColumn",
|
205
|
+
util.compareByOriginalPositions,
|
206
|
+
binarySearch.LEAST_UPPER_BOUND);
|
207
|
+
if (index >= 0) {
|
208
|
+
var mapping = this._originalMappings[index];
|
209
|
+
|
210
|
+
if (aArgs.column === undefined) {
|
211
|
+
var originalLine = mapping.originalLine;
|
212
|
+
|
213
|
+
// Iterate until either we run out of mappings, or we run into
|
214
|
+
// a mapping for a different line than the one we found. Since
|
215
|
+
// mappings are sorted, this is guaranteed to find all mappings for
|
216
|
+
// the line we found.
|
217
|
+
while (mapping && mapping.originalLine === originalLine) {
|
218
|
+
mappings.push({
|
219
|
+
line: util.getArg(mapping, 'generatedLine', null),
|
220
|
+
column: util.getArg(mapping, 'generatedColumn', null),
|
221
|
+
lastColumn: util.getArg(mapping, 'lastGeneratedColumn', null)
|
222
|
+
});
|
223
|
+
|
224
|
+
mapping = this._originalMappings[++index];
|
225
|
+
}
|
226
|
+
} else {
|
227
|
+
var originalColumn = mapping.originalColumn;
|
228
|
+
|
229
|
+
// Iterate until either we run out of mappings, or we run into
|
230
|
+
// a mapping for a different line than the one we were searching for.
|
231
|
+
// Since mappings are sorted, this is guaranteed to find all mappings for
|
232
|
+
// the line we are searching for.
|
233
|
+
while (mapping &&
|
234
|
+
mapping.originalLine === line &&
|
235
|
+
mapping.originalColumn == originalColumn) {
|
236
|
+
mappings.push({
|
237
|
+
line: util.getArg(mapping, 'generatedLine', null),
|
238
|
+
column: util.getArg(mapping, 'generatedColumn', null),
|
239
|
+
lastColumn: util.getArg(mapping, 'lastGeneratedColumn', null)
|
240
|
+
});
|
241
|
+
|
242
|
+
mapping = this._originalMappings[++index];
|
243
|
+
}
|
244
|
+
}
|
245
|
+
}
|
246
|
+
|
247
|
+
return mappings;
|
248
|
+
};
|
249
|
+
|
250
|
+
exports.SourceMapConsumer = SourceMapConsumer;
|
251
|
+
|
252
|
+
/**
|
253
|
+
* A BasicSourceMapConsumer instance represents a parsed source map which we can
|
254
|
+
* query for information about the original file positions by giving it a file
|
255
|
+
* position in the generated source.
|
256
|
+
*
|
257
|
+
* The only parameter is the raw source map (either as a JSON string, or
|
258
|
+
* already parsed to an object). According to the spec, source maps have the
|
259
|
+
* following attributes:
|
260
|
+
*
|
261
|
+
* - version: Which version of the source map spec this map is following.
|
262
|
+
* - sources: An array of URLs to the original source files.
|
263
|
+
* - names: An array of identifiers which can be referrenced by individual mappings.
|
264
|
+
* - sourceRoot: Optional. The URL root from which all sources are relative.
|
265
|
+
* - sourcesContent: Optional. An array of contents of the original source files.
|
266
|
+
* - mappings: A string of base64 VLQs which contain the actual mappings.
|
267
|
+
* - file: Optional. The generated file this source map is associated with.
|
268
|
+
*
|
269
|
+
* Here is an example source map, taken from the source map spec[0]:
|
270
|
+
*
|
271
|
+
* {
|
272
|
+
* version : 3,
|
273
|
+
* file: "out.js",
|
274
|
+
* sourceRoot : "",
|
275
|
+
* sources: ["foo.js", "bar.js"],
|
276
|
+
* names: ["src", "maps", "are", "fun"],
|
277
|
+
* mappings: "AA,AB;;ABCDE;"
|
278
|
+
* }
|
279
|
+
*
|
280
|
+
* [0]: https://docs.google.com/document/d/1U1RGAehQwRypUTovF1KRlpiOFze0b-_2gc6fAH0KY0k/edit?pli=1#
|
281
|
+
*/
|
282
|
+
function BasicSourceMapConsumer(aSourceMap) {
|
283
|
+
var sourceMap = aSourceMap;
|
284
|
+
if (typeof aSourceMap === 'string') {
|
285
|
+
sourceMap = JSON.parse(aSourceMap.replace(/^\)\]\}'/, ''));
|
286
|
+
}
|
287
|
+
|
288
|
+
var version = util.getArg(sourceMap, 'version');
|
289
|
+
var sources = util.getArg(sourceMap, 'sources');
|
290
|
+
// Sass 3.3 leaves out the 'names' array, so we deviate from the spec (which
|
291
|
+
// requires the array) to play nice here.
|
292
|
+
var names = util.getArg(sourceMap, 'names', []);
|
293
|
+
var sourceRoot = util.getArg(sourceMap, 'sourceRoot', null);
|
294
|
+
var sourcesContent = util.getArg(sourceMap, 'sourcesContent', null);
|
295
|
+
var mappings = util.getArg(sourceMap, 'mappings');
|
296
|
+
var file = util.getArg(sourceMap, 'file', null);
|
297
|
+
|
298
|
+
// Once again, Sass deviates from the spec and supplies the version as a
|
299
|
+
// string rather than a number, so we use loose equality checking here.
|
300
|
+
if (version != this._version) {
|
301
|
+
throw new Error('Unsupported version: ' + version);
|
302
|
+
}
|
303
|
+
|
304
|
+
sources = sources
|
305
|
+
.map(String)
|
306
|
+
// Some source maps produce relative source paths like "./foo.js" instead of
|
307
|
+
// "foo.js". Normalize these first so that future comparisons will succeed.
|
308
|
+
// See bugzil.la/1090768.
|
309
|
+
.map(util.normalize)
|
310
|
+
// Always ensure that absolute sources are internally stored relative to
|
311
|
+
// the source root, if the source root is absolute. Not doing this would
|
312
|
+
// be particularly problematic when the source root is a prefix of the
|
313
|
+
// source (valid, but why??). See github issue #199 and bugzil.la/1188982.
|
314
|
+
.map(function (source) {
|
315
|
+
return sourceRoot && util.isAbsolute(sourceRoot) && util.isAbsolute(source)
|
316
|
+
? util.relative(sourceRoot, source)
|
317
|
+
: source;
|
318
|
+
});
|
319
|
+
|
320
|
+
// Pass `true` below to allow duplicate names and sources. While source maps
|
321
|
+
// are intended to be compressed and deduplicated, the TypeScript compiler
|
322
|
+
// sometimes generates source maps with duplicates in them. See Github issue
|
323
|
+
// #72 and bugzil.la/889492.
|
324
|
+
this._names = ArraySet.fromArray(names.map(String), true);
|
325
|
+
this._sources = ArraySet.fromArray(sources, true);
|
326
|
+
|
327
|
+
this.sourceRoot = sourceRoot;
|
328
|
+
this.sourcesContent = sourcesContent;
|
329
|
+
this._mappings = mappings;
|
330
|
+
this.file = file;
|
331
|
+
}
|
332
|
+
|
333
|
+
BasicSourceMapConsumer.prototype = Object.create(SourceMapConsumer.prototype);
|
334
|
+
BasicSourceMapConsumer.prototype.consumer = SourceMapConsumer;
|
335
|
+
|
336
|
+
/**
|
337
|
+
* Create a BasicSourceMapConsumer from a SourceMapGenerator.
|
338
|
+
*
|
339
|
+
* @param SourceMapGenerator aSourceMap
|
340
|
+
* The source map that will be consumed.
|
341
|
+
* @returns BasicSourceMapConsumer
|
342
|
+
*/
|
343
|
+
BasicSourceMapConsumer.fromSourceMap =
|
344
|
+
function SourceMapConsumer_fromSourceMap(aSourceMap) {
|
345
|
+
var smc = Object.create(BasicSourceMapConsumer.prototype);
|
346
|
+
|
347
|
+
var names = smc._names = ArraySet.fromArray(aSourceMap._names.toArray(), true);
|
348
|
+
var sources = smc._sources = ArraySet.fromArray(aSourceMap._sources.toArray(), true);
|
349
|
+
smc.sourceRoot = aSourceMap._sourceRoot;
|
350
|
+
smc.sourcesContent = aSourceMap._generateSourcesContent(smc._sources.toArray(),
|
351
|
+
smc.sourceRoot);
|
352
|
+
smc.file = aSourceMap._file;
|
353
|
+
|
354
|
+
// Because we are modifying the entries (by converting string sources and
|
355
|
+
// names to indices into the sources and names ArraySets), we have to make
|
356
|
+
// a copy of the entry or else bad things happen. Shared mutable state
|
357
|
+
// strikes again! See github issue #191.
|
358
|
+
|
359
|
+
var generatedMappings = aSourceMap._mappings.toArray().slice();
|
360
|
+
var destGeneratedMappings = smc.__generatedMappings = [];
|
361
|
+
var destOriginalMappings = smc.__originalMappings = [];
|
362
|
+
|
363
|
+
for (var i = 0, length = generatedMappings.length; i < length; i++) {
|
364
|
+
var srcMapping = generatedMappings[i];
|
365
|
+
var destMapping = new Mapping;
|
366
|
+
destMapping.generatedLine = srcMapping.generatedLine;
|
367
|
+
destMapping.generatedColumn = srcMapping.generatedColumn;
|
368
|
+
|
369
|
+
if (srcMapping.source) {
|
370
|
+
destMapping.source = sources.indexOf(srcMapping.source);
|
371
|
+
destMapping.originalLine = srcMapping.originalLine;
|
372
|
+
destMapping.originalColumn = srcMapping.originalColumn;
|
373
|
+
|
374
|
+
if (srcMapping.name) {
|
375
|
+
destMapping.name = names.indexOf(srcMapping.name);
|
376
|
+
}
|
377
|
+
|
378
|
+
destOriginalMappings.push(destMapping);
|
379
|
+
}
|
380
|
+
|
381
|
+
destGeneratedMappings.push(destMapping);
|
382
|
+
}
|
383
|
+
|
384
|
+
quickSort(smc.__originalMappings, util.compareByOriginalPositions);
|
385
|
+
|
386
|
+
return smc;
|
387
|
+
};
|
388
|
+
|
389
|
+
/**
|
390
|
+
* The version of the source mapping spec that we are consuming.
|
391
|
+
*/
|
392
|
+
BasicSourceMapConsumer.prototype._version = 3;
|
393
|
+
|
394
|
+
/**
|
395
|
+
* The list of original sources.
|
396
|
+
*/
|
397
|
+
Object.defineProperty(BasicSourceMapConsumer.prototype, 'sources', {
|
398
|
+
get: function () {
|
399
|
+
return this._sources.toArray().map(function (s) {
|
400
|
+
return this.sourceRoot != null ? util.join(this.sourceRoot, s) : s;
|
401
|
+
}, this);
|
402
|
+
}
|
403
|
+
});
|
404
|
+
|
405
|
+
/**
|
406
|
+
* Provide the JIT with a nice shape / hidden class.
|
407
|
+
*/
|
408
|
+
function Mapping() {
|
409
|
+
this.generatedLine = 0;
|
410
|
+
this.generatedColumn = 0;
|
411
|
+
this.source = null;
|
412
|
+
this.originalLine = null;
|
413
|
+
this.originalColumn = null;
|
414
|
+
this.name = null;
|
415
|
+
}
|
416
|
+
|
417
|
+
/**
|
418
|
+
* Parse the mappings in a string in to a data structure which we can easily
|
419
|
+
* query (the ordered arrays in the `this.__generatedMappings` and
|
420
|
+
* `this.__originalMappings` properties).
|
421
|
+
*/
|
422
|
+
BasicSourceMapConsumer.prototype._parseMappings =
|
423
|
+
function SourceMapConsumer_parseMappings(aStr, aSourceRoot) {
|
424
|
+
var generatedLine = 1;
|
425
|
+
var previousGeneratedColumn = 0;
|
426
|
+
var previousOriginalLine = 0;
|
427
|
+
var previousOriginalColumn = 0;
|
428
|
+
var previousSource = 0;
|
429
|
+
var previousName = 0;
|
430
|
+
var length = aStr.length;
|
431
|
+
var index = 0;
|
432
|
+
var cachedSegments = {};
|
433
|
+
var temp = {};
|
434
|
+
var originalMappings = [];
|
435
|
+
var generatedMappings = [];
|
436
|
+
var mapping, str, segment, end, value;
|
437
|
+
|
438
|
+
while (index < length) {
|
439
|
+
if (aStr.charAt(index) === ';') {
|
440
|
+
generatedLine++;
|
441
|
+
index++;
|
442
|
+
previousGeneratedColumn = 0;
|
443
|
+
}
|
444
|
+
else if (aStr.charAt(index) === ',') {
|
445
|
+
index++;
|
446
|
+
}
|
447
|
+
else {
|
448
|
+
mapping = new Mapping();
|
449
|
+
mapping.generatedLine = generatedLine;
|
450
|
+
|
451
|
+
// Because each offset is encoded relative to the previous one,
|
452
|
+
// many segments often have the same encoding. We can exploit this
|
453
|
+
// fact by caching the parsed variable length fields of each segment,
|
454
|
+
// allowing us to avoid a second parse if we encounter the same
|
455
|
+
// segment again.
|
456
|
+
for (end = index; end < length; end++) {
|
457
|
+
if (this._charIsMappingSeparator(aStr, end)) {
|
458
|
+
break;
|
459
|
+
}
|
460
|
+
}
|
461
|
+
str = aStr.slice(index, end);
|
462
|
+
|
463
|
+
segment = cachedSegments[str];
|
464
|
+
if (segment) {
|
465
|
+
index += str.length;
|
466
|
+
} else {
|
467
|
+
segment = [];
|
468
|
+
while (index < end) {
|
469
|
+
base64VLQ.decode(aStr, index, temp);
|
470
|
+
value = temp.value;
|
471
|
+
index = temp.rest;
|
472
|
+
segment.push(value);
|
473
|
+
}
|
474
|
+
|
475
|
+
if (segment.length === 2) {
|
476
|
+
throw new Error('Found a source, but no line and column');
|
477
|
+
}
|
478
|
+
|
479
|
+
if (segment.length === 3) {
|
480
|
+
throw new Error('Found a source and line, but no column');
|
481
|
+
}
|
482
|
+
|
483
|
+
cachedSegments[str] = segment;
|
484
|
+
}
|
485
|
+
|
486
|
+
// Generated column.
|
487
|
+
mapping.generatedColumn = previousGeneratedColumn + segment[0];
|
488
|
+
previousGeneratedColumn = mapping.generatedColumn;
|
489
|
+
|
490
|
+
if (segment.length > 1) {
|
491
|
+
// Original source.
|
492
|
+
mapping.source = previousSource + segment[1];
|
493
|
+
previousSource += segment[1];
|
494
|
+
|
495
|
+
// Original line.
|
496
|
+
mapping.originalLine = previousOriginalLine + segment[2];
|
497
|
+
previousOriginalLine = mapping.originalLine;
|
498
|
+
// Lines are stored 0-based
|
499
|
+
mapping.originalLine += 1;
|
500
|
+
|
501
|
+
// Original column.
|
502
|
+
mapping.originalColumn = previousOriginalColumn + segment[3];
|
503
|
+
previousOriginalColumn = mapping.originalColumn;
|
504
|
+
|
505
|
+
if (segment.length > 4) {
|
506
|
+
// Original name.
|
507
|
+
mapping.name = previousName + segment[4];
|
508
|
+
previousName += segment[4];
|
509
|
+
}
|
510
|
+
}
|
511
|
+
|
512
|
+
generatedMappings.push(mapping);
|
513
|
+
if (typeof mapping.originalLine === 'number') {
|
514
|
+
originalMappings.push(mapping);
|
515
|
+
}
|
516
|
+
}
|
517
|
+
}
|
518
|
+
|
519
|
+
quickSort(generatedMappings, util.compareByGeneratedPositionsDeflated);
|
520
|
+
this.__generatedMappings = generatedMappings;
|
521
|
+
|
522
|
+
quickSort(originalMappings, util.compareByOriginalPositions);
|
523
|
+
this.__originalMappings = originalMappings;
|
524
|
+
};
|
525
|
+
|
526
|
+
/**
|
527
|
+
* Find the mapping that best matches the hypothetical "needle" mapping that
|
528
|
+
* we are searching for in the given "haystack" of mappings.
|
529
|
+
*/
|
530
|
+
BasicSourceMapConsumer.prototype._findMapping =
|
531
|
+
function SourceMapConsumer_findMapping(aNeedle, aMappings, aLineName,
|
532
|
+
aColumnName, aComparator, aBias) {
|
533
|
+
// To return the position we are searching for, we must first find the
|
534
|
+
// mapping for the given position and then return the opposite position it
|
535
|
+
// points to. Because the mappings are sorted, we can use binary search to
|
536
|
+
// find the best mapping.
|
537
|
+
|
538
|
+
if (aNeedle[aLineName] <= 0) {
|
539
|
+
throw new TypeError('Line must be greater than or equal to 1, got '
|
540
|
+
+ aNeedle[aLineName]);
|
541
|
+
}
|
542
|
+
if (aNeedle[aColumnName] < 0) {
|
543
|
+
throw new TypeError('Column must be greater than or equal to 0, got '
|
544
|
+
+ aNeedle[aColumnName]);
|
545
|
+
}
|
546
|
+
|
547
|
+
return binarySearch.search(aNeedle, aMappings, aComparator, aBias);
|
548
|
+
};
|
549
|
+
|
550
|
+
/**
|
551
|
+
* Compute the last column for each generated mapping. The last column is
|
552
|
+
* inclusive.
|
553
|
+
*/
|
554
|
+
BasicSourceMapConsumer.prototype.computeColumnSpans =
|
555
|
+
function SourceMapConsumer_computeColumnSpans() {
|
556
|
+
for (var index = 0; index < this._generatedMappings.length; ++index) {
|
557
|
+
var mapping = this._generatedMappings[index];
|
558
|
+
|
559
|
+
// Mappings do not contain a field for the last generated columnt. We
|
560
|
+
// can come up with an optimistic estimate, however, by assuming that
|
561
|
+
// mappings are contiguous (i.e. given two consecutive mappings, the
|
562
|
+
// first mapping ends where the second one starts).
|
563
|
+
if (index + 1 < this._generatedMappings.length) {
|
564
|
+
var nextMapping = this._generatedMappings[index + 1];
|
565
|
+
|
566
|
+
if (mapping.generatedLine === nextMapping.generatedLine) {
|
567
|
+
mapping.lastGeneratedColumn = nextMapping.generatedColumn - 1;
|
568
|
+
continue;
|
569
|
+
}
|
570
|
+
}
|
571
|
+
|
572
|
+
// The last mapping for each line spans the entire line.
|
573
|
+
mapping.lastGeneratedColumn = Infinity;
|
574
|
+
}
|
575
|
+
};
|
576
|
+
|
577
|
+
/**
|
578
|
+
* Returns the original source, line, and column information for the generated
|
579
|
+
* source's line and column positions provided. The only argument is an object
|
580
|
+
* with the following properties:
|
581
|
+
*
|
582
|
+
* - line: The line number in the generated source.
|
583
|
+
* - column: The column number in the generated source.
|
584
|
+
* - bias: Either 'SourceMapConsumer.GREATEST_LOWER_BOUND' or
|
585
|
+
* 'SourceMapConsumer.LEAST_UPPER_BOUND'. Specifies whether to return the
|
586
|
+
* closest element that is smaller than or greater than the one we are
|
587
|
+
* searching for, respectively, if the exact element cannot be found.
|
588
|
+
* Defaults to 'SourceMapConsumer.GREATEST_LOWER_BOUND'.
|
589
|
+
*
|
590
|
+
* and an object is returned with the following properties:
|
591
|
+
*
|
592
|
+
* - source: The original source file, or null.
|
593
|
+
* - line: The line number in the original source, or null.
|
594
|
+
* - column: The column number in the original source, or null.
|
595
|
+
* - name: The original identifier, or null.
|
596
|
+
*/
|
597
|
+
BasicSourceMapConsumer.prototype.originalPositionFor =
|
598
|
+
function SourceMapConsumer_originalPositionFor(aArgs) {
|
599
|
+
var needle = {
|
600
|
+
generatedLine: util.getArg(aArgs, 'line'),
|
601
|
+
generatedColumn: util.getArg(aArgs, 'column')
|
602
|
+
};
|
603
|
+
|
604
|
+
var index = this._findMapping(
|
605
|
+
needle,
|
606
|
+
this._generatedMappings,
|
607
|
+
"generatedLine",
|
608
|
+
"generatedColumn",
|
609
|
+
util.compareByGeneratedPositionsDeflated,
|
610
|
+
util.getArg(aArgs, 'bias', SourceMapConsumer.GREATEST_LOWER_BOUND)
|
611
|
+
);
|
612
|
+
|
613
|
+
if (index >= 0) {
|
614
|
+
var mapping = this._generatedMappings[index];
|
615
|
+
|
616
|
+
if (mapping.generatedLine === needle.generatedLine) {
|
617
|
+
var source = util.getArg(mapping, 'source', null);
|
618
|
+
if (source !== null) {
|
619
|
+
source = this._sources.at(source);
|
620
|
+
if (this.sourceRoot != null) {
|
621
|
+
source = util.join(this.sourceRoot, source);
|
622
|
+
}
|
623
|
+
}
|
624
|
+
var name = util.getArg(mapping, 'name', null);
|
625
|
+
if (name !== null) {
|
626
|
+
name = this._names.at(name);
|
627
|
+
}
|
628
|
+
return {
|
629
|
+
source: source,
|
630
|
+
line: util.getArg(mapping, 'originalLine', null),
|
631
|
+
column: util.getArg(mapping, 'originalColumn', null),
|
632
|
+
name: name
|
633
|
+
};
|
634
|
+
}
|
635
|
+
}
|
636
|
+
|
637
|
+
return {
|
638
|
+
source: null,
|
639
|
+
line: null,
|
640
|
+
column: null,
|
641
|
+
name: null
|
642
|
+
};
|
643
|
+
};
|
644
|
+
|
645
|
+
/**
|
646
|
+
* Return true if we have the source content for every source in the source
|
647
|
+
* map, false otherwise.
|
648
|
+
*/
|
649
|
+
BasicSourceMapConsumer.prototype.hasContentsOfAllSources =
|
650
|
+
function BasicSourceMapConsumer_hasContentsOfAllSources() {
|
651
|
+
if (!this.sourcesContent) {
|
652
|
+
return false;
|
653
|
+
}
|
654
|
+
return this.sourcesContent.length >= this._sources.size() &&
|
655
|
+
!this.sourcesContent.some(function (sc) { return sc == null; });
|
656
|
+
};
|
657
|
+
|
658
|
+
/**
|
659
|
+
* Returns the original source content. The only argument is the url of the
|
660
|
+
* original source file. Returns null if no original source content is
|
661
|
+
* available.
|
662
|
+
*/
|
663
|
+
BasicSourceMapConsumer.prototype.sourceContentFor =
|
664
|
+
function SourceMapConsumer_sourceContentFor(aSource, nullOnMissing) {
|
665
|
+
if (!this.sourcesContent) {
|
666
|
+
return null;
|
667
|
+
}
|
668
|
+
|
669
|
+
if (this.sourceRoot != null) {
|
670
|
+
aSource = util.relative(this.sourceRoot, aSource);
|
671
|
+
}
|
672
|
+
|
673
|
+
if (this._sources.has(aSource)) {
|
674
|
+
return this.sourcesContent[this._sources.indexOf(aSource)];
|
675
|
+
}
|
676
|
+
|
677
|
+
var url;
|
678
|
+
if (this.sourceRoot != null
|
679
|
+
&& (url = util.urlParse(this.sourceRoot))) {
|
680
|
+
// XXX: file:// URIs and absolute paths lead to unexpected behavior for
|
681
|
+
// many users. We can help them out when they expect file:// URIs to
|
682
|
+
// behave like it would if they were running a local HTTP server. See
|
683
|
+
// https://bugzilla.mozilla.org/show_bug.cgi?id=885597.
|
684
|
+
var fileUriAbsPath = aSource.replace(/^file:\/\//, "");
|
685
|
+
if (url.scheme == "file"
|
686
|
+
&& this._sources.has(fileUriAbsPath)) {
|
687
|
+
return this.sourcesContent[this._sources.indexOf(fileUriAbsPath)]
|
688
|
+
}
|
689
|
+
|
690
|
+
if ((!url.path || url.path == "/")
|
691
|
+
&& this._sources.has("/" + aSource)) {
|
692
|
+
return this.sourcesContent[this._sources.indexOf("/" + aSource)];
|
693
|
+
}
|
694
|
+
}
|
695
|
+
|
696
|
+
// This function is used recursively from
|
697
|
+
// IndexedSourceMapConsumer.prototype.sourceContentFor. In that case, we
|
698
|
+
// don't want to throw if we can't find the source - we just want to
|
699
|
+
// return null, so we provide a flag to exit gracefully.
|
700
|
+
if (nullOnMissing) {
|
701
|
+
return null;
|
702
|
+
}
|
703
|
+
else {
|
704
|
+
throw new Error('"' + aSource + '" is not in the SourceMap.');
|
705
|
+
}
|
706
|
+
};
|
707
|
+
|
708
|
+
/**
|
709
|
+
* Returns the generated line and column information for the original source,
|
710
|
+
* line, and column positions provided. The only argument is an object with
|
711
|
+
* the following properties:
|
712
|
+
*
|
713
|
+
* - source: The filename of the original source.
|
714
|
+
* - line: The line number in the original source.
|
715
|
+
* - column: The column number in the original source.
|
716
|
+
* - bias: Either 'SourceMapConsumer.GREATEST_LOWER_BOUND' or
|
717
|
+
* 'SourceMapConsumer.LEAST_UPPER_BOUND'. Specifies whether to return the
|
718
|
+
* closest element that is smaller than or greater than the one we are
|
719
|
+
* searching for, respectively, if the exact element cannot be found.
|
720
|
+
* Defaults to 'SourceMapConsumer.GREATEST_LOWER_BOUND'.
|
721
|
+
*
|
722
|
+
* and an object is returned with the following properties:
|
723
|
+
*
|
724
|
+
* - line: The line number in the generated source, or null.
|
725
|
+
* - column: The column number in the generated source, or null.
|
726
|
+
*/
|
727
|
+
BasicSourceMapConsumer.prototype.generatedPositionFor =
|
728
|
+
function SourceMapConsumer_generatedPositionFor(aArgs) {
|
729
|
+
var source = util.getArg(aArgs, 'source');
|
730
|
+
if (this.sourceRoot != null) {
|
731
|
+
source = util.relative(this.sourceRoot, source);
|
732
|
+
}
|
733
|
+
if (!this._sources.has(source)) {
|
734
|
+
return {
|
735
|
+
line: null,
|
736
|
+
column: null,
|
737
|
+
lastColumn: null
|
738
|
+
};
|
739
|
+
}
|
740
|
+
source = this._sources.indexOf(source);
|
741
|
+
|
742
|
+
var needle = {
|
743
|
+
source: source,
|
744
|
+
originalLine: util.getArg(aArgs, 'line'),
|
745
|
+
originalColumn: util.getArg(aArgs, 'column')
|
746
|
+
};
|
747
|
+
|
748
|
+
var index = this._findMapping(
|
749
|
+
needle,
|
750
|
+
this._originalMappings,
|
751
|
+
"originalLine",
|
752
|
+
"originalColumn",
|
753
|
+
util.compareByOriginalPositions,
|
754
|
+
util.getArg(aArgs, 'bias', SourceMapConsumer.GREATEST_LOWER_BOUND)
|
755
|
+
);
|
756
|
+
|
757
|
+
if (index >= 0) {
|
758
|
+
var mapping = this._originalMappings[index];
|
759
|
+
|
760
|
+
if (mapping.source === needle.source) {
|
761
|
+
return {
|
762
|
+
line: util.getArg(mapping, 'generatedLine', null),
|
763
|
+
column: util.getArg(mapping, 'generatedColumn', null),
|
764
|
+
lastColumn: util.getArg(mapping, 'lastGeneratedColumn', null)
|
765
|
+
};
|
766
|
+
}
|
767
|
+
}
|
768
|
+
|
769
|
+
return {
|
770
|
+
line: null,
|
771
|
+
column: null,
|
772
|
+
lastColumn: null
|
773
|
+
};
|
774
|
+
};
|
775
|
+
|
776
|
+
exports.BasicSourceMapConsumer = BasicSourceMapConsumer;
|
777
|
+
|
778
|
+
/**
|
779
|
+
* An IndexedSourceMapConsumer instance represents a parsed source map which
|
780
|
+
* we can query for information. It differs from BasicSourceMapConsumer in
|
781
|
+
* that it takes "indexed" source maps (i.e. ones with a "sections" field) as
|
782
|
+
* input.
|
783
|
+
*
|
784
|
+
* The only parameter is a raw source map (either as a JSON string, or already
|
785
|
+
* parsed to an object). According to the spec for indexed source maps, they
|
786
|
+
* have the following attributes:
|
787
|
+
*
|
788
|
+
* - version: Which version of the source map spec this map is following.
|
789
|
+
* - file: Optional. The generated file this source map is associated with.
|
790
|
+
* - sections: A list of section definitions.
|
791
|
+
*
|
792
|
+
* Each value under the "sections" field has two fields:
|
793
|
+
* - offset: The offset into the original specified at which this section
|
794
|
+
* begins to apply, defined as an object with a "line" and "column"
|
795
|
+
* field.
|
796
|
+
* - map: A source map definition. This source map could also be indexed,
|
797
|
+
* but doesn't have to be.
|
798
|
+
*
|
799
|
+
* Instead of the "map" field, it's also possible to have a "url" field
|
800
|
+
* specifying a URL to retrieve a source map from, but that's currently
|
801
|
+
* unsupported.
|
802
|
+
*
|
803
|
+
* Here's an example source map, taken from the source map spec[0], but
|
804
|
+
* modified to omit a section which uses the "url" field.
|
805
|
+
*
|
806
|
+
* {
|
807
|
+
* version : 3,
|
808
|
+
* file: "app.js",
|
809
|
+
* sections: [{
|
810
|
+
* offset: {line:100, column:10},
|
811
|
+
* map: {
|
812
|
+
* version : 3,
|
813
|
+
* file: "section.js",
|
814
|
+
* sources: ["foo.js", "bar.js"],
|
815
|
+
* names: ["src", "maps", "are", "fun"],
|
816
|
+
* mappings: "AAAA,E;;ABCDE;"
|
817
|
+
* }
|
818
|
+
* }],
|
819
|
+
* }
|
820
|
+
*
|
821
|
+
* [0]: https://docs.google.com/document/d/1U1RGAehQwRypUTovF1KRlpiOFze0b-_2gc6fAH0KY0k/edit#heading=h.535es3xeprgt
|
822
|
+
*/
|
823
|
+
function IndexedSourceMapConsumer(aSourceMap) {
|
824
|
+
var sourceMap = aSourceMap;
|
825
|
+
if (typeof aSourceMap === 'string') {
|
826
|
+
sourceMap = JSON.parse(aSourceMap.replace(/^\)\]\}'/, ''));
|
827
|
+
}
|
828
|
+
|
829
|
+
var version = util.getArg(sourceMap, 'version');
|
830
|
+
var sections = util.getArg(sourceMap, 'sections');
|
831
|
+
|
832
|
+
if (version != this._version) {
|
833
|
+
throw new Error('Unsupported version: ' + version);
|
834
|
+
}
|
835
|
+
|
836
|
+
this._sources = new ArraySet();
|
837
|
+
this._names = new ArraySet();
|
838
|
+
|
839
|
+
var lastOffset = {
|
840
|
+
line: -1,
|
841
|
+
column: 0
|
842
|
+
};
|
843
|
+
this._sections = sections.map(function (s) {
|
844
|
+
if (s.url) {
|
845
|
+
// The url field will require support for asynchronicity.
|
846
|
+
// See https://github.com/mozilla/source-map/issues/16
|
847
|
+
throw new Error('Support for url field in sections not implemented.');
|
848
|
+
}
|
849
|
+
var offset = util.getArg(s, 'offset');
|
850
|
+
var offsetLine = util.getArg(offset, 'line');
|
851
|
+
var offsetColumn = util.getArg(offset, 'column');
|
852
|
+
|
853
|
+
if (offsetLine < lastOffset.line ||
|
854
|
+
(offsetLine === lastOffset.line && offsetColumn < lastOffset.column)) {
|
855
|
+
throw new Error('Section offsets must be ordered and non-overlapping.');
|
856
|
+
}
|
857
|
+
lastOffset = offset;
|
858
|
+
|
859
|
+
return {
|
860
|
+
generatedOffset: {
|
861
|
+
// The offset fields are 0-based, but we use 1-based indices when
|
862
|
+
// encoding/decoding from VLQ.
|
863
|
+
generatedLine: offsetLine + 1,
|
864
|
+
generatedColumn: offsetColumn + 1
|
865
|
+
},
|
866
|
+
consumer: new SourceMapConsumer(util.getArg(s, 'map'))
|
867
|
+
}
|
868
|
+
});
|
869
|
+
}
|
870
|
+
|
871
|
+
IndexedSourceMapConsumer.prototype = Object.create(SourceMapConsumer.prototype);
|
872
|
+
IndexedSourceMapConsumer.prototype.constructor = SourceMapConsumer;
|
873
|
+
|
874
|
+
/**
|
875
|
+
* The version of the source mapping spec that we are consuming.
|
876
|
+
*/
|
877
|
+
IndexedSourceMapConsumer.prototype._version = 3;
|
878
|
+
|
879
|
+
/**
|
880
|
+
* The list of original sources.
|
881
|
+
*/
|
882
|
+
Object.defineProperty(IndexedSourceMapConsumer.prototype, 'sources', {
|
883
|
+
get: function () {
|
884
|
+
var sources = [];
|
885
|
+
for (var i = 0; i < this._sections.length; i++) {
|
886
|
+
for (var j = 0; j < this._sections[i].consumer.sources.length; j++) {
|
887
|
+
sources.push(this._sections[i].consumer.sources[j]);
|
888
|
+
}
|
889
|
+
}
|
890
|
+
return sources;
|
891
|
+
}
|
892
|
+
});
|
893
|
+
|
894
|
+
/**
|
895
|
+
* Returns the original source, line, and column information for the generated
|
896
|
+
* source's line and column positions provided. The only argument is an object
|
897
|
+
* with the following properties:
|
898
|
+
*
|
899
|
+
* - line: The line number in the generated source.
|
900
|
+
* - column: The column number in the generated source.
|
901
|
+
*
|
902
|
+
* and an object is returned with the following properties:
|
903
|
+
*
|
904
|
+
* - source: The original source file, or null.
|
905
|
+
* - line: The line number in the original source, or null.
|
906
|
+
* - column: The column number in the original source, or null.
|
907
|
+
* - name: The original identifier, or null.
|
908
|
+
*/
|
909
|
+
IndexedSourceMapConsumer.prototype.originalPositionFor =
|
910
|
+
function IndexedSourceMapConsumer_originalPositionFor(aArgs) {
|
911
|
+
var needle = {
|
912
|
+
generatedLine: util.getArg(aArgs, 'line'),
|
913
|
+
generatedColumn: util.getArg(aArgs, 'column')
|
914
|
+
};
|
915
|
+
|
916
|
+
// Find the section containing the generated position we're trying to map
|
917
|
+
// to an original position.
|
918
|
+
var sectionIndex = binarySearch.search(needle, this._sections,
|
919
|
+
function(needle, section) {
|
920
|
+
var cmp = needle.generatedLine - section.generatedOffset.generatedLine;
|
921
|
+
if (cmp) {
|
922
|
+
return cmp;
|
923
|
+
}
|
924
|
+
|
925
|
+
return (needle.generatedColumn -
|
926
|
+
section.generatedOffset.generatedColumn);
|
927
|
+
});
|
928
|
+
var section = this._sections[sectionIndex];
|
929
|
+
|
930
|
+
if (!section) {
|
931
|
+
return {
|
932
|
+
source: null,
|
933
|
+
line: null,
|
934
|
+
column: null,
|
935
|
+
name: null
|
936
|
+
};
|
937
|
+
}
|
938
|
+
|
939
|
+
return section.consumer.originalPositionFor({
|
940
|
+
line: needle.generatedLine -
|
941
|
+
(section.generatedOffset.generatedLine - 1),
|
942
|
+
column: needle.generatedColumn -
|
943
|
+
(section.generatedOffset.generatedLine === needle.generatedLine
|
944
|
+
? section.generatedOffset.generatedColumn - 1
|
945
|
+
: 0),
|
946
|
+
bias: aArgs.bias
|
947
|
+
});
|
948
|
+
};
|
949
|
+
|
950
|
+
/**
|
951
|
+
* Return true if we have the source content for every source in the source
|
952
|
+
* map, false otherwise.
|
953
|
+
*/
|
954
|
+
IndexedSourceMapConsumer.prototype.hasContentsOfAllSources =
|
955
|
+
function IndexedSourceMapConsumer_hasContentsOfAllSources() {
|
956
|
+
return this._sections.every(function (s) {
|
957
|
+
return s.consumer.hasContentsOfAllSources();
|
958
|
+
});
|
959
|
+
};
|
960
|
+
|
961
|
+
/**
|
962
|
+
* Returns the original source content. The only argument is the url of the
|
963
|
+
* original source file. Returns null if no original source content is
|
964
|
+
* available.
|
965
|
+
*/
|
966
|
+
IndexedSourceMapConsumer.prototype.sourceContentFor =
|
967
|
+
function IndexedSourceMapConsumer_sourceContentFor(aSource, nullOnMissing) {
|
968
|
+
for (var i = 0; i < this._sections.length; i++) {
|
969
|
+
var section = this._sections[i];
|
970
|
+
|
971
|
+
var content = section.consumer.sourceContentFor(aSource, true);
|
972
|
+
if (content) {
|
973
|
+
return content;
|
974
|
+
}
|
975
|
+
}
|
976
|
+
if (nullOnMissing) {
|
977
|
+
return null;
|
978
|
+
}
|
979
|
+
else {
|
980
|
+
throw new Error('"' + aSource + '" is not in the SourceMap.');
|
981
|
+
}
|
982
|
+
};
|
983
|
+
|
984
|
+
/**
|
985
|
+
* Returns the generated line and column information for the original source,
|
986
|
+
* line, and column positions provided. The only argument is an object with
|
987
|
+
* the following properties:
|
988
|
+
*
|
989
|
+
* - source: The filename of the original source.
|
990
|
+
* - line: The line number in the original source.
|
991
|
+
* - column: The column number in the original source.
|
992
|
+
*
|
993
|
+
* and an object is returned with the following properties:
|
994
|
+
*
|
995
|
+
* - line: The line number in the generated source, or null.
|
996
|
+
* - column: The column number in the generated source, or null.
|
997
|
+
*/
|
998
|
+
IndexedSourceMapConsumer.prototype.generatedPositionFor =
|
999
|
+
function IndexedSourceMapConsumer_generatedPositionFor(aArgs) {
|
1000
|
+
for (var i = 0; i < this._sections.length; i++) {
|
1001
|
+
var section = this._sections[i];
|
1002
|
+
|
1003
|
+
// Only consider this section if the requested source is in the list of
|
1004
|
+
// sources of the consumer.
|
1005
|
+
if (section.consumer.sources.indexOf(util.getArg(aArgs, 'source')) === -1) {
|
1006
|
+
continue;
|
1007
|
+
}
|
1008
|
+
var generatedPosition = section.consumer.generatedPositionFor(aArgs);
|
1009
|
+
if (generatedPosition) {
|
1010
|
+
var ret = {
|
1011
|
+
line: generatedPosition.line +
|
1012
|
+
(section.generatedOffset.generatedLine - 1),
|
1013
|
+
column: generatedPosition.column +
|
1014
|
+
(section.generatedOffset.generatedLine === generatedPosition.line
|
1015
|
+
? section.generatedOffset.generatedColumn - 1
|
1016
|
+
: 0)
|
1017
|
+
};
|
1018
|
+
return ret;
|
1019
|
+
}
|
1020
|
+
}
|
1021
|
+
|
1022
|
+
return {
|
1023
|
+
line: null,
|
1024
|
+
column: null
|
1025
|
+
};
|
1026
|
+
};
|
1027
|
+
|
1028
|
+
/**
|
1029
|
+
* Parse the mappings in a string in to a data structure which we can easily
|
1030
|
+
* query (the ordered arrays in the `this.__generatedMappings` and
|
1031
|
+
* `this.__originalMappings` properties).
|
1032
|
+
*/
|
1033
|
+
IndexedSourceMapConsumer.prototype._parseMappings =
|
1034
|
+
function IndexedSourceMapConsumer_parseMappings(aStr, aSourceRoot) {
|
1035
|
+
this.__generatedMappings = [];
|
1036
|
+
this.__originalMappings = [];
|
1037
|
+
for (var i = 0; i < this._sections.length; i++) {
|
1038
|
+
var section = this._sections[i];
|
1039
|
+
var sectionMappings = section.consumer._generatedMappings;
|
1040
|
+
for (var j = 0; j < sectionMappings.length; j++) {
|
1041
|
+
var mapping = sectionMappings[j];
|
1042
|
+
|
1043
|
+
var source = section.consumer._sources.at(mapping.source);
|
1044
|
+
if (section.consumer.sourceRoot !== null) {
|
1045
|
+
source = util.join(section.consumer.sourceRoot, source);
|
1046
|
+
}
|
1047
|
+
this._sources.add(source);
|
1048
|
+
source = this._sources.indexOf(source);
|
1049
|
+
|
1050
|
+
var name = section.consumer._names.at(mapping.name);
|
1051
|
+
this._names.add(name);
|
1052
|
+
name = this._names.indexOf(name);
|
1053
|
+
|
1054
|
+
// The mappings coming from the consumer for the section have
|
1055
|
+
// generated positions relative to the start of the section, so we
|
1056
|
+
// need to offset them to be relative to the start of the concatenated
|
1057
|
+
// generated file.
|
1058
|
+
var adjustedMapping = {
|
1059
|
+
source: source,
|
1060
|
+
generatedLine: mapping.generatedLine +
|
1061
|
+
(section.generatedOffset.generatedLine - 1),
|
1062
|
+
generatedColumn: mapping.generatedColumn +
|
1063
|
+
(section.generatedOffset.generatedLine === mapping.generatedLine
|
1064
|
+
? section.generatedOffset.generatedColumn - 1
|
1065
|
+
: 0),
|
1066
|
+
originalLine: mapping.originalLine,
|
1067
|
+
originalColumn: mapping.originalColumn,
|
1068
|
+
name: name
|
1069
|
+
};
|
1070
|
+
|
1071
|
+
this.__generatedMappings.push(adjustedMapping);
|
1072
|
+
if (typeof adjustedMapping.originalLine === 'number') {
|
1073
|
+
this.__originalMappings.push(adjustedMapping);
|
1074
|
+
}
|
1075
|
+
}
|
1076
|
+
}
|
1077
|
+
|
1078
|
+
quickSort(this.__generatedMappings, util.compareByGeneratedPositionsDeflated);
|
1079
|
+
quickSort(this.__originalMappings, util.compareByOriginalPositions);
|
1080
|
+
};
|
1081
|
+
|
1082
|
+
exports.IndexedSourceMapConsumer = IndexedSourceMapConsumer;
|