handlebars.runtime.js in handlebars-source-4.0.5 vs handlebars.runtime.js in handlebars-source-4.0.6

- old
+ new

@@ -1,10 +1,11 @@ -/*! +/**! - handlebars v4.0.5 + @license + handlebars v4.0.6 -Copyright (C) 2011-2015 by Yehuda Katz +Copyright (C) 2011-2016 by Yehuda Katz Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell @@ -20,12 +21,63 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -@license */ +/**! + + @license + handlebars v4.0.6 + +Copyright (C) 2011-2016 by Yehuda Katz + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + +*/ +/**! + + @license + handlebars v4.0.6 + +Copyright (C) 2011-2016 by Yehuda Katz + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + +*/ (function webpackUniversalModuleDefinition(root, factory) { if(typeof exports === 'object' && typeof module === 'object') module.exports = factory(); else if(typeof define === 'function' && define.amd) define([], factory); @@ -93,11 +145,11 @@ var base = _interopRequireWildcard(_handlebarsBase); // Each of these augment the Handlebars object. No need to setup here. // (This is done to easily share code between commonjs and browse envs) - var _handlebarsSafeString = __webpack_require__(17); + var _handlebarsSafeString = __webpack_require__(20); var _handlebarsSafeString2 = _interopRequireDefault(_handlebarsSafeString); var _handlebarsException = __webpack_require__(5); @@ -105,15 +157,15 @@ var _handlebarsUtils = __webpack_require__(4); var Utils = _interopRequireWildcard(_handlebarsUtils); - var _handlebarsRuntime = __webpack_require__(18); + var _handlebarsRuntime = __webpack_require__(21); var runtime = _interopRequireWildcard(_handlebarsRuntime); - var _handlebarsNoConflict = __webpack_require__(19); + var _handlebarsNoConflict = __webpack_require__(22); var _handlebarsNoConflict2 = _interopRequireDefault(_handlebarsNoConflict); // For compatibility and usage outside of module systems, make the Handlebars object a namespace function create() { @@ -197,15 +249,15 @@ var _exception = __webpack_require__(5); var _exception2 = _interopRequireDefault(_exception); - var _helpers = __webpack_require__(6); + var _helpers = __webpack_require__(9); - var _decorators = __webpack_require__(14); + var _decorators = __webpack_require__(17); - var _logger = __webpack_require__(16); + var _logger = __webpack_require__(19); var _logger2 = _interopRequireDefault(_logger); var VERSION = '4.0.5'; exports.VERSION = VERSION; @@ -417,14 +469,16 @@ return (contextPath ? contextPath + '.' : '') + id; } /***/ }, /* 5 */ -/***/ function(module, exports) { +/***/ function(module, exports, __webpack_require__) { 'use strict'; + var _Object$defineProperty = __webpack_require__(6)['default']; + exports.__esModule = true; var errorProps = ['description', 'fileName', 'lineNumber', 'message', 'name', 'number', 'stack']; function Exception(message, node) { @@ -448,13 +502,24 @@ /* istanbul ignore else */ if (Error.captureStackTrace) { Error.captureStackTrace(this, Exception); } - if (loc) { - this.lineNumber = line; - this.column = column; + try { + if (loc) { + this.lineNumber = line; + + // Work around issue under safari where we can't directly set the column value + /* istanbul ignore next */ + if (_Object$defineProperty) { + Object.defineProperty(this, 'column', { value: column }); + } else { + this.column = column; + } + } + } catch (nop) { + /* Ignore if the browser is very particular */ } } Exception.prototype = new Error(); @@ -463,42 +528,75 @@ /***/ }, /* 6 */ /***/ function(module, exports, __webpack_require__) { + module.exports = { "default": __webpack_require__(7), __esModule: true }; + +/***/ }, +/* 7 */ +/***/ function(module, exports, __webpack_require__) { + + var $ = __webpack_require__(8); + module.exports = function defineProperty(it, key, desc){ + return $.setDesc(it, key, desc); + }; + +/***/ }, +/* 8 */ +/***/ function(module, exports) { + + var $Object = Object; + module.exports = { + create: $Object.create, + getProto: $Object.getPrototypeOf, + isEnum: {}.propertyIsEnumerable, + getDesc: $Object.getOwnPropertyDescriptor, + setDesc: $Object.defineProperty, + setDescs: $Object.defineProperties, + getKeys: $Object.keys, + getNames: $Object.getOwnPropertyNames, + getSymbols: $Object.getOwnPropertySymbols, + each: [].forEach + }; + +/***/ }, +/* 9 */ +/***/ function(module, exports, __webpack_require__) { + 'use strict'; var _interopRequireDefault = __webpack_require__(2)['default']; exports.__esModule = true; exports.registerDefaultHelpers = registerDefaultHelpers; - var _helpersBlockHelperMissing = __webpack_require__(7); + var _helpersBlockHelperMissing = __webpack_require__(10); var _helpersBlockHelperMissing2 = _interopRequireDefault(_helpersBlockHelperMissing); - var _helpersEach = __webpack_require__(8); + var _helpersEach = __webpack_require__(11); var _helpersEach2 = _interopRequireDefault(_helpersEach); - var _helpersHelperMissing = __webpack_require__(9); + var _helpersHelperMissing = __webpack_require__(12); var _helpersHelperMissing2 = _interopRequireDefault(_helpersHelperMissing); - var _helpersIf = __webpack_require__(10); + var _helpersIf = __webpack_require__(13); var _helpersIf2 = _interopRequireDefault(_helpersIf); - var _helpersLog = __webpack_require__(11); + var _helpersLog = __webpack_require__(14); var _helpersLog2 = _interopRequireDefault(_helpersLog); - var _helpersLookup = __webpack_require__(12); + var _helpersLookup = __webpack_require__(15); var _helpersLookup2 = _interopRequireDefault(_helpersLookup); - var _helpersWith = __webpack_require__(13); + var _helpersWith = __webpack_require__(16); var _helpersWith2 = _interopRequireDefault(_helpersWith); function registerDefaultHelpers(instance) { _helpersBlockHelperMissing2['default'](instance); @@ -509,11 +607,11 @@ _helpersLookup2['default'](instance); _helpersWith2['default'](instance); } /***/ }, -/* 7 */ +/* 10 */ /***/ function(module, exports, __webpack_require__) { 'use strict'; exports.__esModule = true; @@ -552,11 +650,11 @@ }; module.exports = exports['default']; /***/ }, -/* 8 */ +/* 11 */ /***/ function(module, exports, __webpack_require__) { 'use strict'; var _interopRequireDefault = __webpack_require__(2)['default']; @@ -649,11 +747,11 @@ }; module.exports = exports['default']; /***/ }, -/* 9 */ +/* 12 */ /***/ function(module, exports, __webpack_require__) { 'use strict'; var _interopRequireDefault = __webpack_require__(2)['default']; @@ -677,11 +775,11 @@ }; module.exports = exports['default']; /***/ }, -/* 10 */ +/* 13 */ /***/ function(module, exports, __webpack_require__) { 'use strict'; exports.__esModule = true; @@ -710,11 +808,11 @@ }; module.exports = exports['default']; /***/ }, -/* 11 */ +/* 14 */ /***/ function(module, exports) { 'use strict'; exports.__esModule = true; @@ -740,11 +838,11 @@ }; module.exports = exports['default']; /***/ }, -/* 12 */ +/* 15 */ /***/ function(module, exports) { 'use strict'; exports.__esModule = true; @@ -756,11 +854,11 @@ }; module.exports = exports['default']; /***/ }, -/* 13 */ +/* 16 */ /***/ function(module, exports, __webpack_require__) { 'use strict'; exports.__esModule = true; @@ -793,30 +891,30 @@ }; module.exports = exports['default']; /***/ }, -/* 14 */ +/* 17 */ /***/ function(module, exports, __webpack_require__) { 'use strict'; var _interopRequireDefault = __webpack_require__(2)['default']; exports.__esModule = true; exports.registerDefaultDecorators = registerDefaultDecorators; - var _decoratorsInline = __webpack_require__(15); + var _decoratorsInline = __webpack_require__(18); var _decoratorsInline2 = _interopRequireDefault(_decoratorsInline); function registerDefaultDecorators(instance) { _decoratorsInline2['default'](instance); } /***/ }, -/* 15 */ +/* 18 */ /***/ function(module, exports, __webpack_require__) { 'use strict'; exports.__esModule = true; @@ -845,11 +943,11 @@ }; module.exports = exports['default']; /***/ }, -/* 16 */ +/* 19 */ /***/ function(module, exports, __webpack_require__) { 'use strict'; exports.__esModule = true; @@ -896,11 +994,11 @@ exports['default'] = logger; module.exports = exports['default']; /***/ }, -/* 17 */ +/* 20 */ /***/ function(module, exports) { // Build out our basic SafeString type 'use strict'; @@ -915,11 +1013,11 @@ exports['default'] = SafeString; module.exports = exports['default']; /***/ }, -/* 18 */ +/* 21 */ /***/ function(module, exports, __webpack_require__) { 'use strict'; var _interopRequireWildcard = __webpack_require__(1)['default']; @@ -1080,11 +1178,11 @@ } var depths = undefined, blockParams = templateSpec.useBlockParams ? [] : undefined; if (templateSpec.useDepths) { if (options.depths) { - depths = context !== options.depths[0] ? [context].concat(options.depths) : options.depths; + depths = context != options.depths[0] ? [context].concat(options.depths) : options.depths; } else { depths = [context]; } } @@ -1129,11 +1227,11 @@ function wrapProgram(container, i, fn, data, declaredBlockParams, blockParams, depths) { function prog(context) { var options = arguments.length <= 1 || arguments[1] === undefined ? {} : arguments[1]; var currentDepths = depths; - if (depths && context !== depths[0]) { + if (depths && context != depths[0]) { currentDepths = [context].concat(depths); } return fn(container, context, container.helpers, container.partials, options.data || data, blockParams && [options.blockParams].concat(blockParams), currentDepths); } @@ -1147,11 +1245,16 @@ } function resolvePartial(partial, context, options) { if (!partial) { if (options.name === '@partial-block') { - partial = options.data['partial-block']; + var data = options.data; + while (data['partial-block'] === noop) { + data = data._parent; + } + partial = data['partial-block']; + data['partial-block'] = noop; } else { partial = options.partials[options.name]; } } else if (!partial.call && !options.name) { // This is a dynamic partial that returned a string @@ -1208,10 +1311,10 @@ } return prog; } /***/ }, -/* 19 */ +/* 22 */ /***/ function(module, exports) { /* WEBPACK VAR INJECTION */(function(global) {/* global window */ 'use strict'; \ No newline at end of file