From cca6ed452e6af86db22a3b528c695e3ce34e6e5c Mon Sep 17 00:00:00 2001 From: Marko Lahma Date: Sun, 29 Mar 2015 17:12:26 +0300 Subject: [PATCH] #251 initial web endpoints and UI --- .gitignore | 5 +- .vs/config/applicationhost.config | 1028 + Quartz.2010.sln | 20 +- Quartz.2010.sln.DotSettings | 7 + Quartz.build | 14 +- src/Quartz.Examples/App.config | 14 - .../Quartz.Examples.2010.csproj | 8 +- .../example13/ClusterExample.cs | 4 +- src/Quartz.Server/App.config | 91 +- src/Quartz.Server/Program.cs | 34 +- src/Quartz.Server/Quartz.Server.2010.csproj | 78 +- src/Quartz.Server/QuartzServer.cs | 3 + src/Quartz.Server/packages.config | 20 + src/Quartz.Server/project.json | 28 +- src/Quartz.Server/quartz.config | 12 +- .../FailFastLoggerFactoryAdapter.cs | 44 +- .../Impl/AdoJobStore/AdoJobStoreSmokeTest.cs | 1 - .../Quartz.Tests.Integration.2010.csproj | 8 +- .../Core/MissSchedulingChangeSignalTest.cs | 3 +- .../Core/QuartzSchedulerTest.cs | 16 +- src/Quartz.Tests.Unit/CronExpressionTest.cs | 2 +- .../DailyTimeIntervalScheduleBuilderTest.cs | 9 +- .../Impl/AdoJobStore/JobStoreCMTTest.cs | 6 +- .../Impl/AdoJobStore/StdAdoDelegateTest.cs | 41 +- .../Impl/AdoJobStore/UpdateTriggerTest.cs | 39 +- .../Impl/Calendar/MonthlyCalendarTest.cs | 1 + .../Impl/StdSchedulerFactoryTest.cs | 3 +- .../DailyTimeIntervalTriggerImplTest.cs | 1 - .../History/LoggingJobHistoryPluginTest.cs | 5 +- .../LoggingTriggerHistoryPluginTest.cs | 5 +- .../XMLSchedulingDataProcessorPluginTest.cs | 4 +- .../Quartz.Tests.Unit.2010.csproj | 12 +- .../SchedulerListenerTest.cs | 3 +- src/Quartz.Tests.Unit/SchedulerTest.cs | 88 +- src/Quartz.Tests.Unit/SerializationTest.cs | 1 - .../SerializationTestSupport.cs | 1 + .../Xml/XMLSchedulingDataProcessorTest.cs | 6 +- .../Api/Dto/CurrentlyExecutingJobDto.cs | 32 + src/Quartz.Web/Api/Dto/GroupMatcherDto.cs | 44 + src/Quartz.Web/Api/Dto/JobDetailDto.cs | 61 + src/Quartz.Web/Api/Dto/JobHistoryEntryDto.cs | 17 + src/Quartz.Web/Api/Dto/KeyDto.cs | 20 + src/Quartz.Web/Api/Dto/SchedulerDto.cs | 25 + src/Quartz.Web/Api/Dto/SchedulerHeaderDto.cs | 33 + .../Api/Dto/SchedulerJobStoreDto.cs | 18 + .../Api/Dto/SchedulerStatisticsDto.cs | 12 + src/Quartz.Web/Api/Dto/SchedulerStatus.cs | 10 + .../Api/Dto/SchedulerThreadPoolDto.cs | 16 + src/Quartz.Web/Api/Dto/ServerDetailsDto.cs | 21 + src/Quartz.Web/Api/Dto/ServerHeaderDto.cs | 14 + src/Quartz.Web/Api/JobsController.cs | 110 + src/Quartz.Web/Api/SchedulerController.cs | 83 + src/Quartz.Web/Api/ServerController.cs | 30 + src/Quartz.Web/Api/ServerRepository.cs | 44 + src/Quartz.Web/Api/TriggersController.cs | 78 + src/Quartz.Web/App/config.js | 138 + src/Quartz.Web/App/index.html | 38 + src/Quartz.Web/App/package.json | 19 + .../App/scripts/core-js/client/core.js | 2528 ++ .../App/scripts/core-js/client/core.min.js | 8 + .../scripts/core-js/client/core.min.js.map | 1 + .../App/scripts/core-js/client/core.min.map | 1 + .../App/scripts/core-js/client/library.js | 2458 ++ .../App/scripts/core-js/client/library.min.js | 8 + .../scripts/core-js/client/library.min.js.map | 1 + .../scripts/core-js/client/library.min.map | 1 + .../App/scripts/core-js/client/shim.js | 2106 ++ .../App/scripts/core-js/client/shim.min.js | 8 + .../scripts/core-js/client/shim.min.js.map | 1 + .../App/scripts/core-js/client/shim.min.map | 1 + src/Quartz.Web/App/scripts/r.js | 29002 ++++++++++++++++ src/Quartz.Web/App/scripts/require.js | 2083 ++ .../signalr/jquery-2.1.3.intellisense.js | 2670 ++ .../App/scripts/signalr/jquery-2.1.3.js | 9205 +++++ .../App/scripts/signalr/jquery-2.1.3.min.js | 4 + .../App/scripts/signalr/jquery-2.1.3.min.map | 1 + .../scripts/signalr/jquery.signalR-2.2.0.js | 2928 ++ .../signalr/jquery.signalR-2.2.0.min.js | 8 + .../App/scripts/underscore/underscore-min.js | 6 + .../App/scripts/underscore/underscore-min.map | 1 + .../App/scripts/underscore/underscore.js | 1536 + .../scripts/webcomponentsjs/CustomElements.js | 634 + .../webcomponentsjs/CustomElements.min.js | 11 + .../scripts/webcomponentsjs/HTMLImports.js | 764 + .../webcomponentsjs/HTMLImports.min.js | 11 + .../App/scripts/webcomponentsjs/README.md | 73 + .../App/scripts/webcomponentsjs/ShadowDOM.js | 4277 +++ .../scripts/webcomponentsjs/ShadowDOM.min.js | 13 + .../webcomponentsjs/webcomponents-lite.js | 1728 + .../webcomponentsjs/webcomponents-lite.min.js | 11 + .../scripts/webcomponentsjs/webcomponents.js | 6114 ++++ .../webcomponentsjs/webcomponents.min.js | 14 + .../bootstrap/css/bootstrap-theme.min.css | 5 + .../styles/bootstrap/css/bootstrap.min.css | 5 + .../fonts/glyphicons-halflings-regular.eot | Bin 0 -> 20127 bytes .../fonts/glyphicons-halflings-regular.svg | 288 + .../fonts/glyphicons-halflings-regular.ttf | Bin 0 -> 45404 bytes .../fonts/glyphicons-halflings-regular.woff | Bin 0 -> 23424 bytes .../fonts/glyphicons-halflings-regular.woff2 | Bin 0 -> 18028 bytes .../fontawesome/css/font-awesome.min.css | 4 + .../styles/fontawesome/fonts/FontAwesome.otf | Bin 0 -> 93888 bytes .../fontawesome/fonts/fontawesome-webfont.eot | Bin 0 -> 60767 bytes .../fontawesome/fonts/fontawesome-webfont.svg | 565 + .../fontawesome/fonts/fontawesome-webfont.ttf | Bin 0 -> 122092 bytes .../fonts/fontawesome-webfont.woff | Bin 0 -> 71508 bytes .../fonts/fontawesome-webfont.woff2 | Bin 0 -> 56780 bytes src/Quartz.Web/App/styles/styles.css | 71 + .../App/typings/aurelia-amd/aurelia-amd.d.ts | 11 + src/Quartz.Web/App/views/app.html | 34 + src/Quartz.Web/App/views/app.ts | 15 + src/Quartz.Web/App/views/dashboard.html | 24 + src/Quartz.Web/App/views/dashboard.ts | 21 + src/Quartz.Web/App/views/history.html | 26 + src/Quartz.Web/App/views/history.ts | 19 + src/Quartz.Web/App/views/job-details.html | 39 + src/Quartz.Web/App/views/job-details.ts | 46 + src/Quartz.Web/App/views/jobs.html | 22 + src/Quartz.Web/App/views/jobs.ts | 19 + src/Quartz.Web/App/views/live-logs.html | 17 + src/Quartz.Web/App/views/live-logs.ts | 19 + src/Quartz.Web/App/views/main.ts | 7 + src/Quartz.Web/App/views/moment-datetime.ts | 15 + src/Quartz.Web/App/views/moment-duration.ts | 15 + src/Quartz.Web/App/views/nav-bar.html | 30 + src/Quartz.Web/App/views/nav-bar.ts | 5 + .../App/views/scheduler-details.html | 53 + src/Quartz.Web/App/views/scheduler-details.ts | 42 + .../App/views/scheduler-router.html | 17 + src/Quartz.Web/App/views/scheduler-router.ts | 19 + src/Quartz.Web/App/views/trigger-details.html | 50 + src/Quartz.Web/App/views/trigger-details.ts | 42 + src/Quartz.Web/App/views/triggers.html | 22 + src/Quartz.Web/App/views/triggers.ts | 19 + .../History/DatabaseExecutionHistoryPlugin.cs | 115 + .../History/JobExecutionHistoryController.cs | 22 + src/Quartz.Web/History/JobHistoryDelegate.cs | 178 + src/Quartz.Web/History/tables_sqlServer.sql | 29 + src/Quartz.Web/Hubs/SchedulerHub.cs | 15 + src/Quartz.Web/Properties/AssemblyInfo.cs | 3 + src/Quartz.Web/Quartz.Web.csproj | 1413 + src/Quartz.Web/Quartz.Web.nuget.targets | 6 + src/Quartz.Web/Scripts/typings/custom.d.ts | 28 + .../typings/es6-promise/es6-promise.d.ts | 73 + .../Scripts/typings/moment/moment-node.d.ts | 483 + .../Scripts/typings/moment/moment.d.ts | 8 + src/Quartz.Web/Startup.cs | 85 + src/Quartz.Web/WebConsolePlugin.cs | 38 + src/Quartz.Web/app.config | 31 + src/Quartz.Web/packages.config | 27 + .../{LibLog.3.1 => LibLog.4.2}/LibLog.cs | 849 +- src/Quartz/AssemblyInfoExtras.cs | 3 + src/Quartz/Collection/ReadOnlySet.cs | 3 +- src/Quartz/Collection/TreeSet.cs | 3 +- src/Quartz/Core/QuartzScheduler.cs | 3 +- src/Quartz/Core/QuartzSchedulerThread.cs | 1 - src/Quartz/Core/SchedulerSignalerImpl.cs | 1 - .../DailyTimeIntervalScheduleBuilder.cs | 3 +- src/Quartz/IDailyTimeIntervalTrigger.cs | 1 - src/Quartz/ISchedulerFactory.cs | 3 +- src/Quartz/Impl/AdoJobStore/AdoUtil.cs | 5 +- .../AdoJobStore/Common/DbMetadataFactory.cs | 3 +- .../Impl/AdoJobStore/Common/DbProvider.cs | 18 +- .../Impl/AdoJobStore/Common/IDbProvider.cs | 7 +- .../ConnectionAndTransactionHolder.cs | 38 +- .../CronTriggerPersistenceDelegate.cs | 8 +- src/Quartz/Impl/AdoJobStore/DBSemaphore.cs | 3 +- ...yTimeIntervalTriggerPersistenceDelegate.cs | 1 - .../AdoJobStore/DelegateInitializationArgs.cs | 3 +- src/Quartz/Impl/AdoJobStore/IDbAccessor.cs | 7 +- src/Quartz/Impl/AdoJobStore/JobStoreCMT.cs | 5 +- .../Impl/AdoJobStore/JobStoreSupport.cs | 10 +- ...ertiesTriggerPersistenceDelegateSupport.cs | 8 +- .../Impl/AdoJobStore/SimpleSemaphore.cs | 5 +- .../SimpleTriggerPersistenceDelegate.cs | 8 +- .../Impl/AdoJobStore/SqlServerDelegate.cs | 4 +- src/Quartz/Impl/AdoJobStore/StdAdoDelegate.cs | 180 +- src/Quartz/Impl/Calendar/DailyCalendar.cs | 3 +- src/Quartz/Impl/Calendar/HolidayCalendar.cs | 2 +- src/Quartz/Impl/Calendar/MonthlyCalendar.cs | 4 +- src/Quartz/Impl/Calendar/WeeklyCalendar.cs | 4 +- src/Quartz/Impl/DirectSchedulerFactory.cs | 4 +- src/Quartz/Impl/SchedulerDetailsSetter.cs | 1 - src/Quartz/Impl/SchedulerRepository.cs | 5 +- src/Quartz/Impl/StdSchedulerFactory.cs | 6 +- .../Triggers/DailyTimeIntervalTriggerImpl.cs | 1 - src/Quartz/Job/SendMailJob.cs | 3 +- src/Quartz/JobKey.cs | 3 +- src/Quartz/Listener/JobListenerSupport.cs | 1 - src/Quartz/MisfireInstruction.cs | 2 - .../Plugin/History/LoggingJobHistoryPlugin.cs | 7 +- .../History/LoggingTriggerHistoryPlugin.cs | 9 +- .../Plugin/Management/ShutdownHookPlugin.cs | 2 - .../Xml/XMLSchedulingDataProcessorPlugin.cs | 14 +- src/Quartz/Quartz.2010.csproj | 13 +- src/Quartz/Quartz.2010.nuget.targets | 6 + src/Quartz/QuartzThread.cs | 1 - src/Quartz/SPI/IJobFactory.cs | 1 + src/Quartz/SPI/ISchedulerPlugin.cs | 4 +- src/Quartz/Simpl/HostNameBasedIdGenerator.cs | 1 - src/Quartz/Simpl/PropertySettingJobFactory.cs | 1 - src/Quartz/Simpl/RAMJobStore.cs | 6 +- src/Quartz/Simpl/RemotingSchedulerExporter.cs | 1 - src/Quartz/Simpl/SimpleJobFactory.cs | 1 - src/Quartz/Simpl/SimpleThreadPool.cs | 1 - src/Quartz/Simpl/ZeroSizeThreadPool.cs | 1 - src/Quartz/SystemTime.cs | 2 +- src/Quartz/TriggerKey.cs | 1 + src/Quartz/Util/DBConnectionManager.cs | 12 +- src/Quartz/Util/FileUtil.cs | 4 +- src/Quartz/Util/IDbConnectionManager.cs | 4 +- src/Quartz/Util/LogicalThreadContext.cs | 1 - src/Quartz/Util/ObjectExtensions.cs | 9 +- src/Quartz/Xml/XMLSchedulingDataProcessor.cs | 3 +- src/Quartz/Xml/job_scheduling_data_2_0.cs | 242 +- src/Quartz/packages.config | 3 +- src/Quartz/project.json | 62 +- 216 files changed, 75455 insertions(+), 1063 deletions(-) create mode 100644 .vs/config/applicationhost.config create mode 100644 Quartz.2010.sln.DotSettings create mode 100644 src/Quartz.Web/Api/Dto/CurrentlyExecutingJobDto.cs create mode 100644 src/Quartz.Web/Api/Dto/GroupMatcherDto.cs create mode 100644 src/Quartz.Web/Api/Dto/JobDetailDto.cs create mode 100644 src/Quartz.Web/Api/Dto/JobHistoryEntryDto.cs create mode 100644 src/Quartz.Web/Api/Dto/KeyDto.cs create mode 100644 src/Quartz.Web/Api/Dto/SchedulerDto.cs create mode 100644 src/Quartz.Web/Api/Dto/SchedulerHeaderDto.cs create mode 100644 src/Quartz.Web/Api/Dto/SchedulerJobStoreDto.cs create mode 100644 src/Quartz.Web/Api/Dto/SchedulerStatisticsDto.cs create mode 100644 src/Quartz.Web/Api/Dto/SchedulerStatus.cs create mode 100644 src/Quartz.Web/Api/Dto/SchedulerThreadPoolDto.cs create mode 100644 src/Quartz.Web/Api/Dto/ServerDetailsDto.cs create mode 100644 src/Quartz.Web/Api/Dto/ServerHeaderDto.cs create mode 100644 src/Quartz.Web/Api/JobsController.cs create mode 100644 src/Quartz.Web/Api/SchedulerController.cs create mode 100644 src/Quartz.Web/Api/ServerController.cs create mode 100644 src/Quartz.Web/Api/ServerRepository.cs create mode 100644 src/Quartz.Web/Api/TriggersController.cs create mode 100644 src/Quartz.Web/App/config.js create mode 100644 src/Quartz.Web/App/index.html create mode 100644 src/Quartz.Web/App/package.json create mode 100644 src/Quartz.Web/App/scripts/core-js/client/core.js create mode 100644 src/Quartz.Web/App/scripts/core-js/client/core.min.js create mode 100644 src/Quartz.Web/App/scripts/core-js/client/core.min.js.map create mode 100644 src/Quartz.Web/App/scripts/core-js/client/core.min.map create mode 100644 src/Quartz.Web/App/scripts/core-js/client/library.js create mode 100644 src/Quartz.Web/App/scripts/core-js/client/library.min.js create mode 100644 src/Quartz.Web/App/scripts/core-js/client/library.min.js.map create mode 100644 src/Quartz.Web/App/scripts/core-js/client/library.min.map create mode 100644 src/Quartz.Web/App/scripts/core-js/client/shim.js create mode 100644 src/Quartz.Web/App/scripts/core-js/client/shim.min.js create mode 100644 src/Quartz.Web/App/scripts/core-js/client/shim.min.js.map create mode 100644 src/Quartz.Web/App/scripts/core-js/client/shim.min.map create mode 100644 src/Quartz.Web/App/scripts/r.js create mode 100644 src/Quartz.Web/App/scripts/require.js create mode 100644 src/Quartz.Web/App/scripts/signalr/jquery-2.1.3.intellisense.js create mode 100644 src/Quartz.Web/App/scripts/signalr/jquery-2.1.3.js create mode 100644 src/Quartz.Web/App/scripts/signalr/jquery-2.1.3.min.js create mode 100644 src/Quartz.Web/App/scripts/signalr/jquery-2.1.3.min.map create mode 100644 src/Quartz.Web/App/scripts/signalr/jquery.signalR-2.2.0.js create mode 100644 src/Quartz.Web/App/scripts/signalr/jquery.signalR-2.2.0.min.js create mode 100644 src/Quartz.Web/App/scripts/underscore/underscore-min.js create mode 100644 src/Quartz.Web/App/scripts/underscore/underscore-min.map create mode 100644 src/Quartz.Web/App/scripts/underscore/underscore.js create mode 100644 src/Quartz.Web/App/scripts/webcomponentsjs/CustomElements.js create mode 100644 src/Quartz.Web/App/scripts/webcomponentsjs/CustomElements.min.js create mode 100644 src/Quartz.Web/App/scripts/webcomponentsjs/HTMLImports.js create mode 100644 src/Quartz.Web/App/scripts/webcomponentsjs/HTMLImports.min.js create mode 100644 src/Quartz.Web/App/scripts/webcomponentsjs/README.md create mode 100644 src/Quartz.Web/App/scripts/webcomponentsjs/ShadowDOM.js create mode 100644 src/Quartz.Web/App/scripts/webcomponentsjs/ShadowDOM.min.js create mode 100644 src/Quartz.Web/App/scripts/webcomponentsjs/webcomponents-lite.js create mode 100644 src/Quartz.Web/App/scripts/webcomponentsjs/webcomponents-lite.min.js create mode 100644 src/Quartz.Web/App/scripts/webcomponentsjs/webcomponents.js create mode 100644 src/Quartz.Web/App/scripts/webcomponentsjs/webcomponents.min.js create mode 100644 src/Quartz.Web/App/styles/bootstrap/css/bootstrap-theme.min.css create mode 100644 src/Quartz.Web/App/styles/bootstrap/css/bootstrap.min.css create mode 100644 src/Quartz.Web/App/styles/bootstrap/fonts/glyphicons-halflings-regular.eot create mode 100644 src/Quartz.Web/App/styles/bootstrap/fonts/glyphicons-halflings-regular.svg create mode 100644 src/Quartz.Web/App/styles/bootstrap/fonts/glyphicons-halflings-regular.ttf create mode 100644 src/Quartz.Web/App/styles/bootstrap/fonts/glyphicons-halflings-regular.woff create mode 100644 src/Quartz.Web/App/styles/bootstrap/fonts/glyphicons-halflings-regular.woff2 create mode 100644 src/Quartz.Web/App/styles/fontawesome/css/font-awesome.min.css create mode 100644 src/Quartz.Web/App/styles/fontawesome/fonts/FontAwesome.otf create mode 100644 src/Quartz.Web/App/styles/fontawesome/fonts/fontawesome-webfont.eot create mode 100644 src/Quartz.Web/App/styles/fontawesome/fonts/fontawesome-webfont.svg create mode 100644 src/Quartz.Web/App/styles/fontawesome/fonts/fontawesome-webfont.ttf create mode 100644 src/Quartz.Web/App/styles/fontawesome/fonts/fontawesome-webfont.woff create mode 100644 src/Quartz.Web/App/styles/fontawesome/fonts/fontawesome-webfont.woff2 create mode 100644 src/Quartz.Web/App/styles/styles.css create mode 100644 src/Quartz.Web/App/typings/aurelia-amd/aurelia-amd.d.ts create mode 100644 src/Quartz.Web/App/views/app.html create mode 100644 src/Quartz.Web/App/views/app.ts create mode 100644 src/Quartz.Web/App/views/dashboard.html create mode 100644 src/Quartz.Web/App/views/dashboard.ts create mode 100644 src/Quartz.Web/App/views/history.html create mode 100644 src/Quartz.Web/App/views/history.ts create mode 100644 src/Quartz.Web/App/views/job-details.html create mode 100644 src/Quartz.Web/App/views/job-details.ts create mode 100644 src/Quartz.Web/App/views/jobs.html create mode 100644 src/Quartz.Web/App/views/jobs.ts create mode 100644 src/Quartz.Web/App/views/live-logs.html create mode 100644 src/Quartz.Web/App/views/live-logs.ts create mode 100644 src/Quartz.Web/App/views/main.ts create mode 100644 src/Quartz.Web/App/views/moment-datetime.ts create mode 100644 src/Quartz.Web/App/views/moment-duration.ts create mode 100644 src/Quartz.Web/App/views/nav-bar.html create mode 100644 src/Quartz.Web/App/views/nav-bar.ts create mode 100644 src/Quartz.Web/App/views/scheduler-details.html create mode 100644 src/Quartz.Web/App/views/scheduler-details.ts create mode 100644 src/Quartz.Web/App/views/scheduler-router.html create mode 100644 src/Quartz.Web/App/views/scheduler-router.ts create mode 100644 src/Quartz.Web/App/views/trigger-details.html create mode 100644 src/Quartz.Web/App/views/trigger-details.ts create mode 100644 src/Quartz.Web/App/views/triggers.html create mode 100644 src/Quartz.Web/App/views/triggers.ts create mode 100644 src/Quartz.Web/History/DatabaseExecutionHistoryPlugin.cs create mode 100644 src/Quartz.Web/History/JobExecutionHistoryController.cs create mode 100644 src/Quartz.Web/History/JobHistoryDelegate.cs create mode 100644 src/Quartz.Web/History/tables_sqlServer.sql create mode 100644 src/Quartz.Web/Hubs/SchedulerHub.cs create mode 100644 src/Quartz.Web/Properties/AssemblyInfo.cs create mode 100644 src/Quartz.Web/Quartz.Web.csproj create mode 100644 src/Quartz.Web/Quartz.Web.nuget.targets create mode 100644 src/Quartz.Web/Scripts/typings/custom.d.ts create mode 100644 src/Quartz.Web/Scripts/typings/es6-promise/es6-promise.d.ts create mode 100644 src/Quartz.Web/Scripts/typings/moment/moment-node.d.ts create mode 100644 src/Quartz.Web/Scripts/typings/moment/moment.d.ts create mode 100644 src/Quartz.Web/Startup.cs create mode 100644 src/Quartz.Web/WebConsolePlugin.cs create mode 100644 src/Quartz.Web/app.config create mode 100644 src/Quartz.Web/packages.config rename src/Quartz/App_Packages/{LibLog.3.1 => LibLog.4.2}/LibLog.cs (78%) create mode 100644 src/Quartz/AssemblyInfoExtras.cs create mode 100644 src/Quartz/Quartz.2010.nuget.targets diff --git a/.gitignore b/.gitignore index 46edd9b00..4fea04414 100644 --- a/.gitignore +++ b/.gitignore @@ -65,4 +65,7 @@ project.lock.json /.idea /.fake /*.iml -jspm_packages \ No newline at end of file +jspm_packagesnode_modules + +/src/Quartz.Web/App/views/*.map +/src/Quartz.Web/App/views/*.js diff --git a/.vs/config/applicationhost.config b/.vs/config/applicationhost.config new file mode 100644 index 000000000..5a8a09d3f --- /dev/null +++ b/.vs/config/applicationhost.config @@ -0,0 +1,1028 @@ + + + + + + + + +
+
+
+
+
+
+
+
+ + + +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ +
+
+ +
+
+
+
+
+
+ +
+
+
+
+
+ +
+
+
+ +
+
+ +
+
+ +
+
+
+ + +
+
+
+
+
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Quartz.2010.sln b/Quartz.2010.sln index a261dc91a..a1e733c8f 100644 --- a/Quartz.2010.sln +++ b/Quartz.2010.sln @@ -1,6 +1,6 @@ Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 2013 -VisualStudioVersion = 12.0.30324.0 +# Visual Studio 14 +VisualStudioVersion = 14.0.22823.1 MinimumVisualStudioVersion = 10.0.40219.1 Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{69B269BD-CB8C-438A-A32E-4CB7CEA47BB2}" ProjectSection(SolutionItems) = preProject @@ -35,6 +35,12 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Quartz.Tests.Integration.20 EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Quartz.Tests.Unit.2010", "src\Quartz.Tests.Unit\Quartz.Tests.Unit.2010.csproj", "{3F8CA4D4-AE20-4767-8573-E39A17EC6F4E}" EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Server", "Server", "{39DC81E9-C9CC-46E5-97EE-E8EC74A1B8D4}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Quartz.Server.2010", "src\Quartz.Server\Quartz.Server.2010.csproj", "{09082B9A-906C-4A17-A2E5-6C947DAC7C85}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Quartz.Web", "src\Quartz.Web\Quartz.Web.csproj", "{85E583B5-2D1E-4D08-8677-0D0851CBE2B6}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -57,6 +63,14 @@ Global {3F8CA4D4-AE20-4767-8573-E39A17EC6F4E}.Debug|Any CPU.Build.0 = Debug|Any CPU {3F8CA4D4-AE20-4767-8573-E39A17EC6F4E}.Release|Any CPU.ActiveCfg = Release|Any CPU {3F8CA4D4-AE20-4767-8573-E39A17EC6F4E}.Release|Any CPU.Build.0 = Release|Any CPU + {09082B9A-906C-4A17-A2E5-6C947DAC7C85}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {09082B9A-906C-4A17-A2E5-6C947DAC7C85}.Debug|Any CPU.Build.0 = Debug|Any CPU + {09082B9A-906C-4A17-A2E5-6C947DAC7C85}.Release|Any CPU.ActiveCfg = Release|Any CPU + {09082B9A-906C-4A17-A2E5-6C947DAC7C85}.Release|Any CPU.Build.0 = Release|Any CPU + {85E583B5-2D1E-4D08-8677-0D0851CBE2B6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {85E583B5-2D1E-4D08-8677-0D0851CBE2B6}.Debug|Any CPU.Build.0 = Debug|Any CPU + {85E583B5-2D1E-4D08-8677-0D0851CBE2B6}.Release|Any CPU.ActiveCfg = Release|Any CPU + {85E583B5-2D1E-4D08-8677-0D0851CBE2B6}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE @@ -68,5 +82,7 @@ Global {70A37974-17DE-474C-8A1C-19637622E75F} = {6EBE10AB-07CE-4C04-AD4D-75660778D4C2} {5587AF00-160F-4EC1-98A2-BEABA411256C} = {95F36186-4305-42A3-B57B-2F23769A5BB0} {3F8CA4D4-AE20-4767-8573-E39A17EC6F4E} = {95F36186-4305-42A3-B57B-2F23769A5BB0} + {09082B9A-906C-4A17-A2E5-6C947DAC7C85} = {39DC81E9-C9CC-46E5-97EE-E8EC74A1B8D4} + {85E583B5-2D1E-4D08-8677-0D0851CBE2B6} = {39DC81E9-C9CC-46E5-97EE-E8EC74A1B8D4} EndGlobalSection EndGlobal diff --git a/Quartz.2010.sln.DotSettings b/Quartz.2010.sln.DotSettings new file mode 100644 index 000000000..993b2be29 --- /dev/null +++ b/Quartz.2010.sln.DotSettings @@ -0,0 +1,7 @@ + + ExplicitlyExcluded + ERROR + Auto + False + <Policy Inspect="True" Prefix="" Suffix="" Style="aaBb" /> + <Policy Inspect="True" Prefix="" Suffix="" Style="aaBb" /> \ No newline at end of file diff --git a/Quartz.build b/Quartz.build index e00773c4f..3b88d25cb 100644 --- a/Quartz.build +++ b/Quartz.build @@ -64,8 +64,6 @@ - - @@ -243,7 +241,6 @@ - @@ -347,7 +344,7 @@ - + @@ -359,7 +356,7 @@ - + @@ -523,12 +520,9 @@ - - - - - + + diff --git a/src/Quartz.Examples/App.config b/src/Quartz.Examples/App.config index e83b58dde..e51e17ab1 100644 --- a/src/Quartz.Examples/App.config +++ b/src/Quartz.Examples/App.config @@ -3,22 +3,8 @@
- -
- - - - - - - - - - - - diff --git a/src/Quartz.Examples/Quartz.Examples.2010.csproj b/src/Quartz.Examples/Quartz.Examples.2010.csproj index d2cbc17f8..857c9ef40 100644 --- a/src/Quartz.Examples/Quartz.Examples.2010.csproj +++ b/src/Quartz.Examples/Quartz.Examples.2010.csproj @@ -33,13 +33,13 @@ ../../ - ../../build/4.0/Debug/Quartz.Examples/ + ../../build/4.5/Debug/Quartz.Examples/ false 285212672 false - TRACE;DEBUG;NET_40 + TRACE;DEBUG true @@ -58,13 +58,13 @@ false - ../../build/4.0/Release/Quartz.Examples/ + ../../build/4.5/Release/Quartz.Examples/ false 285212672 false - TRACE;NET_40,C5 + TRACE false diff --git a/src/Quartz.Examples/example13/ClusterExample.cs b/src/Quartz.Examples/example13/ClusterExample.cs index f4b865ac0..919527de0 100644 --- a/src/Quartz.Examples/example13/ClusterExample.cs +++ b/src/Quartz.Examples/example13/ClusterExample.cs @@ -20,13 +20,11 @@ #endregion using System; -using System.Collections.Generic; using System.Collections.Specialized; using System.Threading; -using Quartz.Logging; - using Quartz.Impl; +using Quartz.Logging; namespace Quartz.Examples.Example13 { diff --git a/src/Quartz.Server/App.config b/src/Quartz.Server/App.config index 63313f4fd..ddb7de402 100644 --- a/src/Quartz.Server/App.config +++ b/src/Quartz.Server/App.config @@ -1,58 +1,71 @@ - - - -
-
- -
- - + - - - - - - - + + +
+
+ - - - - - - - - - - - - - - + + + + + + + + + + + + + + - - - + + + - - - + + + + + + + + + + + + + + + + + + + + + + - - + + - + + + + \ No newline at end of file diff --git a/src/Quartz.Server/Program.cs b/src/Quartz.Server/Program.cs index dc81ef15e..542c2df2d 100644 --- a/src/Quartz.Server/Program.cs +++ b/src/Quartz.Server/Program.cs @@ -1,4 +1,8 @@ -using System.IO; +using System; +using System.IO; + +using log4net.Config; + using Topshelf; namespace Quartz.Server @@ -14,23 +18,25 @@ public static class Program public static void Main() { // change from service account's dir to more logical one - Directory.SetCurrentDirectory(System.AppDomain.CurrentDomain.BaseDirectory); + Directory.SetCurrentDirectory(AppDomain.CurrentDomain.BaseDirectory); + + XmlConfigurator.Configure(); HostFactory.Run(x => - { - x.RunAsLocalSystem(); + { + x.RunAsLocalSystem(); - x.SetDescription(Configuration.ServiceDescription); - x.SetDisplayName(Configuration.ServiceDisplayName); - x.SetServiceName(Configuration.ServiceName); + x.SetDescription(Configuration.ServiceDescription); + x.SetDisplayName(Configuration.ServiceDisplayName); + x.SetServiceName(Configuration.ServiceName); - x.Service(factory => - { - QuartzServer server = QuartzServerFactory.CreateServer(); - server.Initialize(); - return server; - }); - }); + x.Service(factory => + { + QuartzServer server = QuartzServerFactory.CreateServer(); + server.Initialize(); + return server; + }); + }); } } } \ No newline at end of file diff --git a/src/Quartz.Server/Quartz.Server.2010.csproj b/src/Quartz.Server/Quartz.Server.2010.csproj index 73380dadb..fdc0aa488 100644 --- a/src/Quartz.Server/Quartz.Server.2010.csproj +++ b/src/Quartz.Server/Quartz.Server.2010.csproj @@ -48,14 +48,14 @@ ../../ - ../../build/4.0/Debug/Quartz.Server/ + ../../build/4.5/Debug/Quartz.Server/ false 285212672 false - TRACE;DEBUG;NET_40,C5 - ../../build/4.0/Debug/Quartz.Server/Quartz.Server.XML + TRACE;DEBUG + ../../build/4.5/Debug/Quartz.Server/Quartz.Server.XML true 4096 false @@ -71,13 +71,13 @@ false - ../../build/4.0/Release/Quartz.Server/ + ../../build/4.5/Release/Quartz.Server/ false 285212672 false - TRACE;NET_40,C5 + TRACE false @@ -99,6 +99,47 @@ False ..\..\packages\log4net.2.0.3\lib\net40-full\log4net.dll + + False + ..\..\packages\Microsoft.AspNet.SignalR.Core.2.2.0\lib\net45\Microsoft.AspNet.SignalR.Core.dll + + + False + ..\..\packages\Microsoft.Owin.3.0.1\lib\net45\Microsoft.Owin.dll + + + False + ..\..\packages\Microsoft.Owin.Cors.3.0.1\lib\net45\Microsoft.Owin.Cors.dll + + + False + ..\..\packages\Microsoft.Owin.Diagnostics.3.0.1\lib\net45\Microsoft.Owin.Diagnostics.dll + + + ..\..\packages\Microsoft.Owin.FileSystems.3.0.1\lib\net45\Microsoft.Owin.FileSystems.dll + + + False + ..\..\packages\Microsoft.Owin.Host.HttpListener.3.0.1\lib\net45\Microsoft.Owin.Host.HttpListener.dll + + + False + ..\..\packages\Microsoft.Owin.Hosting.3.0.1\lib\net45\Microsoft.Owin.Hosting.dll + + + False + ..\..\packages\Microsoft.Owin.Security.3.0.1\lib\net45\Microsoft.Owin.Security.dll + + + ..\..\packages\Microsoft.Owin.StaticFiles.3.0.1\lib\net45\Microsoft.Owin.StaticFiles.dll + + + False + ..\..\packages\Newtonsoft.Json.6.0.8\lib\net45\Newtonsoft.Json.dll + + + ..\..\packages\Owin.1.0\lib\net40\Owin.dll + System @@ -106,6 +147,26 @@ System.Data + + + False + ..\..\packages\Microsoft.AspNet.WebApi.Client.5.2.3\lib\net45\System.Net.Http.Formatting.dll + + + False + ..\..\packages\Microsoft.AspNet.Cors.5.2.3\lib\net45\System.Web.Cors.dll + + + False + ..\..\packages\Microsoft.AspNet.WebApi.Core.5.2.3\lib\net45\System.Web.Http.dll + + + ..\..\packages\Microsoft.AspNet.WebApi.Owin.5.2.3\lib\net45\System.Web.Http.Owin.dll + + + False + ..\..\packages\Microsoft.AspNet.WebApi.WebHost.5.2.3\lib\net45\System.Web.Http.WebHost.dll + System.XML @@ -163,6 +224,13 @@ {AEF8823B-E45B-4B35-A4D0-C08C1196D017} Quartz.2010 + + {85e583b5-2d1e-4d08-8677-0d0851cbe2b6} + Quartz.Web + + + + diff --git a/src/Quartz.Server/QuartzServer.cs b/src/Quartz.Server/QuartzServer.cs index 1c9dacc58..2527ca6e4 100644 --- a/src/Quartz.Server/QuartzServer.cs +++ b/src/Quartz.Server/QuartzServer.cs @@ -1,6 +1,9 @@ using System; + using log4net; + using Quartz.Impl; + using Topshelf; namespace Quartz.Server diff --git a/src/Quartz.Server/packages.config b/src/Quartz.Server/packages.config index 13fb30d68..ca4152d8d 100644 --- a/src/Quartz.Server/packages.config +++ b/src/Quartz.Server/packages.config @@ -1,5 +1,25 @@  + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/Quartz.Server/project.json b/src/Quartz.Server/project.json index 42ea713e7..5e8af2882 100644 --- a/src/Quartz.Server/project.json +++ b/src/Quartz.Server/project.json @@ -1,14 +1,14 @@ -{ - "version": "1.0.0-*", - "dependencies": { - "Quartz": "1.0.0-*", - "log4net": "2.0.3", - "Topshelf": "3.1.4" - }, - "commands": { - "Quartz.Server": "run" - }, - "frameworks": { - "net45": { } - } -} +{ + "version": "1.0.0-*", + "dependencies": { + "log4net": "2.0.3", + "Quartz": "1.0.0-*", + "Topshelf": "3.2.0" + }, + "commands": { + "Quartz.Server": "run" + }, + "frameworks": { + "net45": {} + } +} \ No newline at end of file diff --git a/src/Quartz.Server/quartz.config b/src/Quartz.Server/quartz.config index 886c50a8e..75be45c5c 100644 --- a/src/Quartz.Server/quartz.config +++ b/src/Quartz.Server/quartz.config @@ -18,4 +18,14 @@ quartz.scheduler.exporter.type = Quartz.Simpl.RemotingSchedulerExporter, Quartz quartz.scheduler.exporter.port = 555 quartz.scheduler.exporter.bindName = QuartzScheduler quartz.scheduler.exporter.channelType = tcp -quartz.scheduler.exporter.channelName = httpQuartz \ No newline at end of file +quartz.scheduler.exporter.channelName = httpQuartz + +# web plugin points +quartz.plugin.webconsole.type = Quartz.Web.WebConsolePlugin, Quartz.Web + +# database job execution history +quartz.dataSource.history.connectionString = Server=(local);Database=quartz-history;Trusted_Connection=True; +quartz.dataSource.history.provider = SqlServer-20 + +quartz.plugin.dbhistory.type = Quartz.Web.History.DatabaseExecutionHistoryPlugin, Quartz.Web +quartz.plugin.dbhistory.dataSource = history diff --git a/src/Quartz.Tests.Integration/FailFastLoggerFactoryAdapter.cs b/src/Quartz.Tests.Integration/FailFastLoggerFactoryAdapter.cs index f54d8e903..396399356 100644 --- a/src/Quartz.Tests.Integration/FailFastLoggerFactoryAdapter.cs +++ b/src/Quartz.Tests.Integration/FailFastLoggerFactoryAdapter.cs @@ -2,56 +2,32 @@ using System.Collections.Generic; using Quartz.Logging; +using Quartz.Logging.LogProviders; namespace Quartz.Tests.Integration { - internal class FailFastLoggerFactoryAdapter : ILogProvider + internal class FailFastLoggerFactoryAdapter : LogProviderBase { private static readonly List errors = new List(); - public ILog GetLogger(string name) + public override Logger GetLogger(string name) { - return new FailFastLogger(this); + return Log; } - public IDisposable OpenNestedContext(string message) + private static bool Log(LogLevel logLevel, Func messageFunc, Exception exception, object[] formatparameters) { - throw new NotImplementedException(); - } - - public IDisposable OpenMappedContext(string key, string value) - { - throw new NotImplementedException(); - } + if (logLevel == LogLevel.Error || logLevel == LogLevel.Fatal) + { + errors.Add(messageFunc()); + } - private void ReportError(string error) - { - errors.Add(error); + return true; } public static List Errors { get { return errors; } } - - private class FailFastLogger : ILog - { - private readonly FailFastLoggerFactoryAdapter parent; - - public FailFastLogger(FailFastLoggerFactoryAdapter parent) - { - this.parent = parent; - } - - public bool Log(LogLevel logLevel, Func messageFunc, Exception exception = null, params object[] formatParameters) - { - if (logLevel == LogLevel.Error || logLevel == LogLevel.Fatal) - { - parent.ReportError(messageFunc()); - } - - return true; - } - } } } \ No newline at end of file diff --git a/src/Quartz.Tests.Integration/Impl/AdoJobStore/AdoJobStoreSmokeTest.cs b/src/Quartz.Tests.Integration/Impl/AdoJobStore/AdoJobStoreSmokeTest.cs index b84b24799..ae09e3243 100644 --- a/src/Quartz.Tests.Integration/Impl/AdoJobStore/AdoJobStoreSmokeTest.cs +++ b/src/Quartz.Tests.Integration/Impl/AdoJobStore/AdoJobStoreSmokeTest.cs @@ -3,7 +3,6 @@ using System.Collections.Specialized; using System.Diagnostics; using System.Reflection; -using System.Runtime.InteropServices.ComTypes; using System.Threading; using Quartz.Logging; diff --git a/src/Quartz.Tests.Integration/Quartz.Tests.Integration.2010.csproj b/src/Quartz.Tests.Integration/Quartz.Tests.Integration.2010.csproj index 964883bf9..8bbcaafc6 100644 --- a/src/Quartz.Tests.Integration/Quartz.Tests.Integration.2010.csproj +++ b/src/Quartz.Tests.Integration/Quartz.Tests.Integration.2010.csproj @@ -33,13 +33,13 @@ ../../ - ../../build/4.0/Debug/Quartz.Tests.Integration/ + ../../build/4.5/Debug/Quartz.Tests.Integration/ false 285212672 false - TRACE;DEBUG;NET_40 + TRACE;DEBUG true @@ -57,13 +57,13 @@ false - ../../build/4.0/Release/Quartz.Tests.Integration/ + ../../build/4.5/Release/Quartz.Tests.Integration/ false 285212672 false - TRACE;NET_40,C5 + TRACE false diff --git a/src/Quartz.Tests.Unit/Core/MissSchedulingChangeSignalTest.cs b/src/Quartz.Tests.Unit/Core/MissSchedulingChangeSignalTest.cs index a0821b382..9a8b1568b 100644 --- a/src/Quartz.Tests.Unit/Core/MissSchedulingChangeSignalTest.cs +++ b/src/Quartz.Tests.Unit/Core/MissSchedulingChangeSignalTest.cs @@ -3,11 +3,10 @@ using System.Collections.Specialized; using System.Threading; -using Quartz.Logging; - using NUnit.Framework; using Quartz.Impl; +using Quartz.Logging; using Quartz.Simpl; using Quartz.Spi; diff --git a/src/Quartz.Tests.Unit/Core/QuartzSchedulerTest.cs b/src/Quartz.Tests.Unit/Core/QuartzSchedulerTest.cs index d4be63f52..5029e722b 100644 --- a/src/Quartz.Tests.Unit/Core/QuartzSchedulerTest.cs +++ b/src/Quartz.Tests.Unit/Core/QuartzSchedulerTest.cs @@ -18,17 +18,21 @@ #endregion using System; +using System.Diagnostics; +using System.Globalization; +using System.Reflection; using System.Threading; +using FakeItEasy; + using NUnit.Framework; +using Quartz.Core; using Quartz.Impl; using Quartz.Impl.Triggers; using Quartz.Job; using Quartz.Spi; -using FakeItEasy; - namespace Quartz.Tests.Unit.Core { /// Marko Lahma (.NET) @@ -38,10 +42,10 @@ public class QuartzSchedulerTest [Test] public void TestVersionInfo() { - var versionInfo = System.Diagnostics.FileVersionInfo.GetVersionInfo(System.Reflection.Assembly.GetAssembly(typeof(Quartz.Core.QuartzScheduler)).Location); - Assert.AreEqual(versionInfo.FileMajorPart.ToString(System.Globalization.CultureInfo.InvariantCulture), Quartz.Core.QuartzScheduler.VersionMajor); - Assert.AreEqual(versionInfo.FileMinorPart.ToString(System.Globalization.CultureInfo.InvariantCulture), Quartz.Core.QuartzScheduler.VersionMinor); - Assert.AreEqual(versionInfo.FileBuildPart.ToString(System.Globalization.CultureInfo.InvariantCulture), Quartz.Core.QuartzScheduler.VersionIteration); + var versionInfo = FileVersionInfo.GetVersionInfo(Assembly.GetAssembly(typeof(QuartzScheduler)).Location); + Assert.AreEqual(versionInfo.FileMajorPart.ToString(CultureInfo.InvariantCulture), QuartzScheduler.VersionMajor); + Assert.AreEqual(versionInfo.FileMinorPart.ToString(CultureInfo.InvariantCulture), QuartzScheduler.VersionMinor); + Assert.AreEqual(versionInfo.FileBuildPart.ToString(CultureInfo.InvariantCulture), QuartzScheduler.VersionIteration); } [Test] diff --git a/src/Quartz.Tests.Unit/CronExpressionTest.cs b/src/Quartz.Tests.Unit/CronExpressionTest.cs index 6558c4002..47726e10f 100644 --- a/src/Quartz.Tests.Unit/CronExpressionTest.cs +++ b/src/Quartz.Tests.Unit/CronExpressionTest.cs @@ -237,7 +237,7 @@ public void TestCronExpressionWithExtraWhiteSpace() Assert.IsFalse(calendar.IsSatisfiedBy(DateTime.Now.AddMinutes(2)), "Time was included"); } - private static void TestCorrectWeekFireDays(CronExpression cronExpression, System.Collections.Generic.IList correctFireDays) + private static void TestCorrectWeekFireDays(CronExpression cronExpression, IList correctFireDays) { List fireDays = new List(); diff --git a/src/Quartz.Tests.Unit/DailyTimeIntervalScheduleBuilderTest.cs b/src/Quartz.Tests.Unit/DailyTimeIntervalScheduleBuilderTest.cs index 2b1652db0..4628a86a7 100644 --- a/src/Quartz.Tests.Unit/DailyTimeIntervalScheduleBuilderTest.cs +++ b/src/Quartz.Tests.Unit/DailyTimeIntervalScheduleBuilderTest.cs @@ -22,13 +22,12 @@ using System; using System.Collections.Generic; -using Quartz.Spi; -using Quartz.Job; -using Quartz.Impl; -using Quartz.Impl.Triggers; - using NUnit.Framework; +using Quartz.Impl; +using Quartz.Impl.Triggers; +using Quartz.Job; +using Quartz.Spi; using Quartz.Util; namespace Quartz.Tests.Unit diff --git a/src/Quartz.Tests.Unit/Impl/AdoJobStore/JobStoreCMTTest.cs b/src/Quartz.Tests.Unit/Impl/AdoJobStore/JobStoreCMTTest.cs index 80dc433c4..a871f9f16 100644 --- a/src/Quartz.Tests.Unit/Impl/AdoJobStore/JobStoreCMTTest.cs +++ b/src/Quartz.Tests.Unit/Impl/AdoJobStore/JobStoreCMTTest.cs @@ -1,4 +1,4 @@ -using System.Data; +using System.Data.Common; using FakeItEasy; @@ -34,7 +34,7 @@ public void ExecuteGetNonManagedConnection() [Test] public void ShouldNotAutomaticallyOpenConnection() { - var mock = A.Fake(); + var mock = A.Fake(); A.CallTo(() => connectionManager.GetConnection(A.Ignored)).Returns(mock); jobStore.ExecuteGetNonManagedConnection(); @@ -46,7 +46,7 @@ public void ShouldNotAutomaticallyOpenConnection() public void ShouldOpenConnectionIfRequested() { jobStore.OpenConnection = true; - var mock = A.Fake(); + var mock = A.Fake(); A.CallTo(() => connectionManager.GetConnection(A.Ignored)).Returns(mock); jobStore.ExecuteGetNonManagedConnection(); diff --git a/src/Quartz.Tests.Unit/Impl/AdoJobStore/StdAdoDelegateTest.cs b/src/Quartz.Tests.Unit/Impl/AdoJobStore/StdAdoDelegateTest.cs index af26e08af..ad4214c0a 100644 --- a/src/Quartz.Tests.Unit/Impl/AdoJobStore/StdAdoDelegateTest.cs +++ b/src/Quartz.Tests.Unit/Impl/AdoJobStore/StdAdoDelegateTest.cs @@ -21,18 +21,17 @@ using System; using System.Collections; -using System.Data; using System.Data.Common; +using System.Data.SqlClient; using System.Runtime.Serialization; using FakeItEasy; -using Quartz.Logging; - using NUnit.Framework; using Quartz.Impl.AdoJobStore; using Quartz.Impl.AdoJobStore.Common; +using Quartz.Logging; using Quartz.Simpl; using Quartz.Spi; @@ -88,20 +87,20 @@ private class NonSerializableTestClass [Test] public void TestSelectBlobTriggerWithNoBlobContent() { - var dbProvider = A.Fake(); - var connection = A.Fake(); - var transaction = A.Fake(); - var command = (IDbCommand) A.Fake(); + var dbProvider = A.Fake(); + var connection = A.Fake(); + var transaction = A.Fake(); + var command = (DbCommand) A.Fake(); var dbMetadata = new DbMetadata(); A.CallTo(() => dbProvider.Metadata).Returns(dbMetadata); A.CallTo(() => dbProvider.CreateCommand()).Returns(command); - var dataReader = A.Fake(); + var dataReader = A.Fake(); A.CallTo(() => command.ExecuteReader()).Returns(dataReader); A.CallTo(() => command.Parameters).Returns(new StubParameterCollection()); A.CallTo(() => command.CommandText).Returns(""); - A.CallTo(() => command.CreateParameter()).Returns(new StubDataParameter()); + A.CallTo(() => command.CreateParameter()).Returns(new SqlParameter()); var adoDelegate = new StdAdoDelegate(); @@ -132,20 +131,20 @@ public void TestSelectBlobTriggerWithNoBlobContent() [Test] public void TestSelectSimpleTriggerWithExceptionWithExtendedProps() { - var dbProvider = A.Fake(); - var connection = A.Fake(); - var transaction = A.Fake(); - var command = (IDbCommand)A.Fake(); + var dbProvider = A.Fake(); + var connection = A.Fake(); + var transaction = A.Fake(); + var command = (DbCommand)A.Fake(); var dbMetadata = new DbMetadata(); A.CallTo(() => dbProvider.Metadata).Returns(dbMetadata); A.CallTo(() => dbProvider.CreateCommand()).Returns(command); - var dataReader = A.Fake(); + var dataReader = A.Fake(); A.CallTo(() => command.ExecuteReader()).Returns(dataReader); A.CallTo(() => command.Parameters).Returns(new StubParameterCollection()); A.CallTo(() => command.CommandText).Returns(""); - A.CallTo(() => command.CreateParameter()).Returns(new StubDataParameter()); + A.CallTo(() => command.CreateParameter()).Returns(new SqlParameter()); var persistenceDelegate = A.Fake(); var exception = new InvalidOperationException(); @@ -188,20 +187,20 @@ public void TestSelectSimpleTriggerWithExceptionWithExtendedProps() [Test] public void TestSelectSimpleTriggerWithDeleteBeforeSelectExtendedProps() { - var dbProvider = A.Fake(); - var connection = A.Fake(); - var transaction = A.Fake(); - var command = (IDbCommand)A.Fake(); + var dbProvider = A.Fake(); + var connection = A.Fake(); + var transaction = A.Fake(); + var command = (DbCommand)A.Fake(); var dbMetadata = new DbMetadata(); A.CallTo(() => dbProvider.Metadata).Returns(dbMetadata); A.CallTo(() => dbProvider.CreateCommand()).Returns(command); - var dataReader = A.Fake(); + var dataReader = A.Fake(); A.CallTo(() => command.ExecuteReader()).Returns(dataReader); A.CallTo(() => command.Parameters).Returns(new StubParameterCollection()); A.CallTo(() => command.CommandText).Returns(""); - A.CallTo(() => command.CreateParameter()).Returns(new StubDataParameter()); + A.CallTo(() => command.CreateParameter()).Returns(new SqlParameter()); var persistenceDelegate = A.Fake(); var exception = new InvalidOperationException(); diff --git a/src/Quartz.Tests.Unit/Impl/AdoJobStore/UpdateTriggerTest.cs b/src/Quartz.Tests.Unit/Impl/AdoJobStore/UpdateTriggerTest.cs index f37022a0f..f60556d1b 100644 --- a/src/Quartz.Tests.Unit/Impl/AdoJobStore/UpdateTriggerTest.cs +++ b/src/Quartz.Tests.Unit/Impl/AdoJobStore/UpdateTriggerTest.cs @@ -2,40 +2,21 @@ using System.Collections.Generic; using System.Data; using System.Data.Common; +using System.Data.SqlClient; using System.Linq; -using Quartz.Logging; + +using FakeItEasy; + using NUnit.Framework; + using Quartz.Impl.AdoJobStore; using Quartz.Impl.AdoJobStore.Common; using Quartz.Impl.Triggers; +using Quartz.Logging; using Quartz.Simpl; -using FakeItEasy; namespace Quartz.Tests.Unit.Impl.AdoJobStore { - public class StubDataParameter : IDbDataParameter - { - public DbType DbType { get; set; } - - public ParameterDirection Direction { get; set; } - - public bool IsNullable { get; set; } - - public string ParameterName { get; set; } - - public string SourceColumn { get; set; } - - public DataRowVersion SourceVersion { get; set; } - - public object Value { get; set; } - - public byte Precision { get; set; } - - public byte Scale { get; set; } - - public int Size { get; set; } - } - public class StubConnection : DbConnection { protected override DbTransaction BeginDbTransaction(IsolationLevel isolationLevel) @@ -106,11 +87,11 @@ public void CronTrigger_AfterTriggerUpdate_Retains_Cron_Type() cronTriggerImpl.JobKey = new JobKey("JobKey","JobKeyGroup"); cronTriggerImpl.Priority = 1; - var dbProvider = A.Fake(); - var dbCommand = A.Fake(); - var dataParameterCollection = A.Fake(); + var dbProvider = A.Fake(); + var dbCommand = A.Fake(); + var dataParameterCollection = A.Fake(); A.CallTo(() => dbProvider.CreateCommand()).Returns(dbCommand); - Func dataParam = () => new StubDataParameter(); + Func dataParam = () => new SqlParameter(); A.CallTo(() => dbProvider.CreateParameter()).ReturnsLazily(dataParam); A.CallTo(() => dbCommand.CreateParameter()).ReturnsLazily(dataParam); diff --git a/src/Quartz.Tests.Unit/Impl/Calendar/MonthlyCalendarTest.cs b/src/Quartz.Tests.Unit/Impl/Calendar/MonthlyCalendarTest.cs index bffd4a843..cffe866b1 100644 --- a/src/Quartz.Tests.Unit/Impl/Calendar/MonthlyCalendarTest.cs +++ b/src/Quartz.Tests.Unit/Impl/Calendar/MonthlyCalendarTest.cs @@ -16,6 +16,7 @@ * */ #endregion + using System; using NUnit.Framework; diff --git a/src/Quartz.Tests.Unit/Impl/StdSchedulerFactoryTest.cs b/src/Quartz.Tests.Unit/Impl/StdSchedulerFactoryTest.cs index e8cb38479..fc457eee4 100644 --- a/src/Quartz.Tests.Unit/Impl/StdSchedulerFactoryTest.cs +++ b/src/Quartz.Tests.Unit/Impl/StdSchedulerFactoryTest.cs @@ -19,14 +19,13 @@ #endregion +using System; using System.Collections.Specialized; using NUnit.Framework; using Quartz.Impl; -using System; - namespace Quartz.Tests.Unit.Impl { /// diff --git a/src/Quartz.Tests.Unit/Impl/Triggers/DailyTimeIntervalTriggerImplTest.cs b/src/Quartz.Tests.Unit/Impl/Triggers/DailyTimeIntervalTriggerImplTest.cs index 98591e7f1..4657838b3 100644 --- a/src/Quartz.Tests.Unit/Impl/Triggers/DailyTimeIntervalTriggerImplTest.cs +++ b/src/Quartz.Tests.Unit/Impl/Triggers/DailyTimeIntervalTriggerImplTest.cs @@ -21,7 +21,6 @@ using System; using System.Collections.Generic; -using System.Linq; using NUnit.Framework; diff --git a/src/Quartz.Tests.Unit/Plugin/History/LoggingJobHistoryPluginTest.cs b/src/Quartz.Tests.Unit/Plugin/History/LoggingJobHistoryPluginTest.cs index 5a620c792..e4b5d4dc0 100644 --- a/src/Quartz.Tests.Unit/Plugin/History/LoggingJobHistoryPluginTest.cs +++ b/src/Quartz.Tests.Unit/Plugin/History/LoggingJobHistoryPluginTest.cs @@ -19,18 +19,17 @@ using System; -using Quartz.Logging; +using FakeItEasy; using NUnit.Framework; using Quartz.Impl; using Quartz.Impl.Triggers; using Quartz.Job; +using Quartz.Logging; using Quartz.Plugin.History; using Quartz.Spi; -using FakeItEasy; - namespace Quartz.Tests.Unit.Plugin.History { /// Marko Lahma (.NET) diff --git a/src/Quartz.Tests.Unit/Plugin/History/LoggingTriggerHistoryPluginTest.cs b/src/Quartz.Tests.Unit/Plugin/History/LoggingTriggerHistoryPluginTest.cs index 649042662..8c0f9af47 100644 --- a/src/Quartz.Tests.Unit/Plugin/History/LoggingTriggerHistoryPluginTest.cs +++ b/src/Quartz.Tests.Unit/Plugin/History/LoggingTriggerHistoryPluginTest.cs @@ -19,17 +19,16 @@ using System; -using Quartz.Logging; +using FakeItEasy; using NUnit.Framework; using Quartz.Impl; using Quartz.Job; +using Quartz.Logging; using Quartz.Plugin.History; using Quartz.Spi; -using FakeItEasy; - namespace Quartz.Tests.Unit.Plugin.History { /// Marko Lahma (.NET) diff --git a/src/Quartz.Tests.Unit/Plugin/Xml/XMLSchedulingDataProcessorPluginTest.cs b/src/Quartz.Tests.Unit/Plugin/Xml/XMLSchedulingDataProcessorPluginTest.cs index 781c1b035..a03a3027e 100644 --- a/src/Quartz.Tests.Unit/Plugin/Xml/XMLSchedulingDataProcessorPluginTest.cs +++ b/src/Quartz.Tests.Unit/Plugin/Xml/XMLSchedulingDataProcessorPluginTest.cs @@ -1,13 +1,13 @@ using System.IO; using System.Linq; +using FakeItEasy; + using NUnit.Framework; using Quartz.Plugin.Xml; using Quartz.Util; -using FakeItEasy; - namespace Quartz.Tests.Unit.Plugin.Xml { [TestFixture] diff --git a/src/Quartz.Tests.Unit/Quartz.Tests.Unit.2010.csproj b/src/Quartz.Tests.Unit/Quartz.Tests.Unit.2010.csproj index c6d03b977..11291d994 100644 --- a/src/Quartz.Tests.Unit/Quartz.Tests.Unit.2010.csproj +++ b/src/Quartz.Tests.Unit/Quartz.Tests.Unit.2010.csproj @@ -33,13 +33,13 @@ ../../ - ../../build/4.0/Debug/Quartz.Tests.Unit/ + ../../build/4.5/Debug/Quartz.Tests.Unit/ false 285212672 false - TRACE;DEBUG;NET_40 + TRACE;DEBUG true @@ -57,13 +57,13 @@ false - ../../build/4.0/Release/Quartz.Tests.Unit/ + ../../build/4.5/Release/Quartz.Tests.Unit/ false 285212672 false - TRACE;NET_40,C5 + TRACE false @@ -128,7 +128,9 @@ - + + Component + diff --git a/src/Quartz.Tests.Unit/SchedulerListenerTest.cs b/src/Quartz.Tests.Unit/SchedulerListenerTest.cs index 52ced77f8..c70cbec6a 100644 --- a/src/Quartz.Tests.Unit/SchedulerListenerTest.cs +++ b/src/Quartz.Tests.Unit/SchedulerListenerTest.cs @@ -1,11 +1,10 @@ using System.Collections.Specialized; using System.Threading; -using Quartz.Logging; - using NUnit.Framework; using Quartz.Impl; +using Quartz.Logging; namespace Quartz.Tests.Unit { diff --git a/src/Quartz.Tests.Unit/SchedulerTest.cs b/src/Quartz.Tests.Unit/SchedulerTest.cs index 1cfe3c259..722434f44 100644 --- a/src/Quartz.Tests.Unit/SchedulerTest.cs +++ b/src/Quartz.Tests.Unit/SchedulerTest.cs @@ -1,10 +1,11 @@ using System; -using System.IO; using System.Collections.Generic; using System.Collections.Specialized; using System.Diagnostics; -using System.Threading; +using System.IO; +using System.Linq; using System.Runtime.Serialization.Formatters.Binary; +using System.Threading; using NUnit.Framework; @@ -46,6 +47,11 @@ public void Execute(IJobExecutionContext context) [SetUp] protected void SetUp() { + string input = "0 0 03-07 ? * MON-FRI | 0 35/15 07 ? * MON-FRI | 0 05/15 08-14 ? * MON-FRI | 0 0/10 15-16 ? * MON-FRI | 0 05/15 17-23 ? * MON-FRI"; + IScheduler scheduler = null; + var job = JobBuilder.Create().Build(); + var crontTriggers = input.Split('|').Select(x => x.Trim()).Select(cronExpression => TriggerBuilder.Create().WithCronSchedule(cronExpression).Build()); + scheduler.ScheduleJob(job, new HashSet(crontTriggers), replace: false); } [Test] @@ -61,10 +67,10 @@ public void TestBasicStorageFunctions() // test basic storage functions of scheduler... IJobDetail job = JobBuilder.Create() - .OfType() - .WithIdentity("j1") - .StoreDurably() - .Build(); + .OfType() + .WithIdentity("j1") + .StoreDurably() + .Build(); Assert.IsFalse(sched.CheckExists(new JobKey("j1")), "Unexpected existence of job named 'j1'."); @@ -79,11 +85,11 @@ public void TestBasicStorageFunctions() sched.DeleteJob(new JobKey("j1")); ITrigger trigger = TriggerBuilder.Create() - .WithIdentity("t1") - .ForJob(job) - .StartNow() - .WithSimpleSchedule(x => x.RepeatForever().WithIntervalInSeconds(5)) - .Build(); + .WithIdentity("t1") + .ForJob(job) + .StartNow() + .WithSimpleSchedule(x => x.RepeatForever().WithIntervalInSeconds(5)) + .Build(); Assert.IsFalse(sched.CheckExists(new TriggerKey("t1")), "Unexpected existence of trigger named '11'."); @@ -100,34 +106,33 @@ public void TestBasicStorageFunctions() Assert.IsNotNull(trigger, "Stored trigger not found!"); job = JobBuilder.Create() - .OfType() - .WithIdentity("j2", "g1") - .Build(); + .OfType() + .WithIdentity("j2", "g1") + .Build(); trigger = TriggerBuilder.Create() - .WithIdentity("t2", "g1") - .ForJob(job) - .StartNow() - .WithSimpleSchedule(x => x.RepeatForever().WithIntervalInSeconds(5)) - .Build(); + .WithIdentity("t2", "g1") + .ForJob(job) + .StartNow() + .WithSimpleSchedule(x => x.RepeatForever().WithIntervalInSeconds(5)) + .Build(); sched.ScheduleJob(job, trigger); job = JobBuilder.Create() - .OfType() - .WithIdentity("j3", "g1") - .Build(); + .OfType() + .WithIdentity("j3", "g1") + .Build(); trigger = TriggerBuilder.Create() - .WithIdentity("t3", "g1") - .ForJob(job) - .StartNow() - .WithSimpleSchedule(x => x.RepeatForever().WithIntervalInSeconds(5)) - .Build(); + .WithIdentity("t3", "g1") + .ForJob(job) + .StartNow() + .WithSimpleSchedule(x => x.RepeatForever().WithIntervalInSeconds(5)) + .Build(); sched.ScheduleJob(job, trigger); - IList jobGroups = sched.GetJobGroupNames(); IList triggerGroups = sched.GetTriggerGroupNames(); @@ -146,7 +151,6 @@ public void TestBasicStorageFunctions() Assert.AreEqual(2, jobKeys.Count, "Number of jobs expected in 'g1' group was 2 "); Assert.AreEqual(2, triggerKeys.Count, "Number of triggers expected in 'g1' group was 2 "); - TriggerState s = sched.GetTriggerState(new TriggerKey("t2", "g1")); Assert.AreEqual(TriggerState.Normal, s, "State of trigger t2 expected to be NORMAL "); @@ -165,16 +169,16 @@ public void TestBasicStorageFunctions() // test that adding a trigger to a paused group causes the new trigger to be paused also... job = JobBuilder.Create() - .OfType() - .WithIdentity("j4", "g1") - .Build(); + .OfType() + .WithIdentity("j4", "g1") + .Build(); trigger = TriggerBuilder.Create() - .WithIdentity("t4", "g1") - .ForJob(job) - .StartNow() - .WithSimpleSchedule(x => x.RepeatForever().WithIntervalInSeconds(5)) - .Build(); + .WithIdentity("t4", "g1") + .ForJob(job) + .StartNow() + .WithSimpleSchedule(x => x.RepeatForever().WithIntervalInSeconds(5)) + .Build(); sched.ScheduleJob(job, trigger); @@ -198,7 +202,6 @@ public void TestBasicStorageFunctions() pausedGroups = sched.GetPausedTriggerGroups(); Assert.AreEqual(0, pausedGroups.Count, "Size of paused trigger groups list expected to be 0 "); - Assert.IsFalse(sched.UnscheduleJob(new TriggerKey("foasldfksajdflk")), "Scheduler should have returned 'false' from attempt to unschedule non-existing trigger. "); Assert.IsTrue(sched.UnscheduleJob(new TriggerKey("t3", "g1")), "Scheduler should have returned 'true' from attempt to unschedule existing trigger. "); @@ -268,7 +271,6 @@ public void SerializationExceptionTest() after = (SchedulerException) formatter.Deserialize(stream); } - Assert.NotNull(before.InnerException); Assert.NotNull(after.InnerException); Assert.AreEqual(before.ToString(), after.ToString()); @@ -277,7 +279,7 @@ public void SerializationExceptionTest() [Test] public void ReschedulingTriggerShouldKeepOriginalNextFireTime() { - ISchedulerFactory factory = new StdSchedulerFactory(); + ISchedulerFactory factory = new StdSchedulerFactory(); IScheduler scheduler = factory.GetScheduler(); scheduler.Start(); @@ -294,12 +296,12 @@ public void ReschedulingTriggerShouldKeepOriginalNextFireTime() Assert.That(trigger.GetPreviousFireTimeUtc(), Is.EqualTo(null)); var previousFireTimeUtc = DateTimeOffset.UtcNow.AddDays(1); - ((IOperableTrigger)trigger).SetPreviousFireTimeUtc(previousFireTimeUtc); - ((IOperableTrigger)trigger).SetNextFireTimeUtc(trigger.GetFireTimeAfter(previousFireTimeUtc)); + ((IOperableTrigger) trigger).SetPreviousFireTimeUtc(previousFireTimeUtc); + ((IOperableTrigger) trigger).SetNextFireTimeUtc(trigger.GetFireTimeAfter(previousFireTimeUtc)); scheduler.RescheduleJob(trigger.Key, trigger); - trigger = (IOperableTrigger)scheduler.GetTrigger(trigger.Key); + trigger = (IOperableTrigger) scheduler.GetTrigger(trigger.Key); Assert.That(trigger.GetNextFireTimeUtc().Value.UtcDateTime, Is.EqualTo(previousFireTimeUtc.AddHours(1).UtcDateTime).Within(TimeSpan.FromSeconds(5))); scheduler.Shutdown(true); diff --git a/src/Quartz.Tests.Unit/SerializationTest.cs b/src/Quartz.Tests.Unit/SerializationTest.cs index 02403a255..a8afb26fe 100644 --- a/src/Quartz.Tests.Unit/SerializationTest.cs +++ b/src/Quartz.Tests.Unit/SerializationTest.cs @@ -5,7 +5,6 @@ using NUnit.Framework; -using Quartz.Collection; using Quartz.Impl.Calendar; using Quartz.Util; diff --git a/src/Quartz.Tests.Unit/SerializationTestSupport.cs b/src/Quartz.Tests.Unit/SerializationTestSupport.cs index e95a89978..5dab9fa83 100644 --- a/src/Quartz.Tests.Unit/SerializationTestSupport.cs +++ b/src/Quartz.Tests.Unit/SerializationTestSupport.cs @@ -16,6 +16,7 @@ * */ #endregion + using System; using System.Diagnostics; using System.IO; diff --git a/src/Quartz.Tests.Unit/Xml/XMLSchedulingDataProcessorTest.cs b/src/Quartz.Tests.Unit/Xml/XMLSchedulingDataProcessorTest.cs index d183e0dfe..360c3daa7 100644 --- a/src/Quartz.Tests.Unit/Xml/XMLSchedulingDataProcessorTest.cs +++ b/src/Quartz.Tests.Unit/Xml/XMLSchedulingDataProcessorTest.cs @@ -25,6 +25,8 @@ using System.IO; using System.Transactions; +using FakeItEasy; + using NUnit.Framework; using Quartz.Impl; @@ -36,10 +38,6 @@ using Quartz.Util; using Quartz.Xml; -using FakeItEasy; - -using Is = NUnit.Framework.Is; - namespace Quartz.Tests.Unit.Xml { /// diff --git a/src/Quartz.Web/Api/Dto/CurrentlyExecutingJobDto.cs b/src/Quartz.Web/Api/Dto/CurrentlyExecutingJobDto.cs new file mode 100644 index 000000000..16ed25143 --- /dev/null +++ b/src/Quartz.Web/Api/Dto/CurrentlyExecutingJobDto.cs @@ -0,0 +1,32 @@ +using System; + +namespace Quartz.Web.Api.Dto +{ + public class CurrentlyExecutingJobDto + { + public CurrentlyExecutingJobDto(IJobExecutionContext context) + { + FireInstanceId = context.FireInstanceId; + FireTime = context.FireTimeUtc; + Trigger = new KeyDto(context.Trigger.Key); + Job = new KeyDto(context.JobDetail.Key); + JobRunTime = context.JobRunTime; + RefireCount = context.RefireCount; + + Recovering = context.Recovering; + if (context.Recovering) + { + RecoveringTrigger = new KeyDto(context.RecoveringTriggerKey); + } + } + + public string FireInstanceId { get; private set; } + public DateTimeOffset? FireTime { get; private set; } + public KeyDto Trigger { get; private set; } + public KeyDto Job { get; private set; } + public TimeSpan JobRunTime { get; private set; } + public int RefireCount { get; private set; } + public KeyDto RecoveringTrigger { get; private set; } + public bool Recovering { get; private set; } + } +} \ No newline at end of file diff --git a/src/Quartz.Web/Api/Dto/GroupMatcherDto.cs b/src/Quartz.Web/Api/Dto/GroupMatcherDto.cs new file mode 100644 index 000000000..274566387 --- /dev/null +++ b/src/Quartz.Web/Api/Dto/GroupMatcherDto.cs @@ -0,0 +1,44 @@ +using Quartz.Impl.Matchers; +using Quartz.Util; + +namespace Quartz.Web.Api.Dto +{ + public class GroupMatcherDto + { + public string NameContains { get; set; } + public string NameEndsWith { get; set; } + public string NameStartsWith { get; set; } + public string NameEquals { get; set; } + + public GroupMatcher GetTriggerGroupMatcher() + { + return GetGroupMatcher(); + } + + public GroupMatcher GetJobGroupMatcher() + { + return GetGroupMatcher(); + } + + private GroupMatcher GetGroupMatcher() where T : Key + { + if (!string.IsNullOrWhiteSpace(NameContains)) + { + return GroupMatcher.GroupContains(NameContains); + } + if (!string.IsNullOrWhiteSpace(NameStartsWith)) + { + return GroupMatcher.GroupStartsWith(NameStartsWith); + } + if (!string.IsNullOrWhiteSpace(NameEndsWith)) + { + return GroupMatcher.GroupEndsWith(NameEndsWith); + } + if (!string.IsNullOrWhiteSpace(NameEquals)) + { + return GroupMatcher.GroupEquals(NameEquals); + } + return GroupMatcher.AnyGroup(); + } + } +} \ No newline at end of file diff --git a/src/Quartz.Web/Api/Dto/JobDetailDto.cs b/src/Quartz.Web/Api/Dto/JobDetailDto.cs new file mode 100644 index 000000000..9a0632d40 --- /dev/null +++ b/src/Quartz.Web/Api/Dto/JobDetailDto.cs @@ -0,0 +1,61 @@ +using System; +using System.Collections.Generic; + +using Quartz.Spi; +using Quartz.Util; + +namespace Quartz.Web.Api.Dto +{ + public class JobDetailDto + { + public JobDetailDto(IJobDetail jobDetail) + { + Durable = jobDetail.Durable; + ConcurrentExecutionDisallowed = jobDetail.ConcurrentExecutionDisallowed; + Description = jobDetail.Description; + JobType = jobDetail.JobType.AssemblyQualifiedNameWithoutVersion(); + Name = jobDetail.Key.Name; + Group = jobDetail.Key.Group; + PersistJobDataAfterExecution = jobDetail.PersistJobDataAfterExecution; + RequestsRecovery = jobDetail.RequestsRecovery; + } + + public string Name { get; set; } + public string Group { get; set; } + public string JobType { get; set; } + public string Description { get; set; } + + public bool Durable { get; set; } + public bool RequestsRecovery { get; set; } + public bool PersistJobDataAfterExecution { get; set; } + public bool ConcurrentExecutionDisallowed { get; set; } + } + public class TriggerDetailDto + { + public TriggerDetailDto(IScheduler scheduler, ITrigger trigger) + { + Description = trigger.Description; + TriggerType = trigger.GetType().AssemblyQualifiedNameWithoutVersion(); + Name = trigger.Key.Name; + Group = trigger.Key.Group; + CalendarName = trigger.CalendarName; + Priority = trigger.Priority; + StartTimeUtc = trigger.StartTimeUtc; + EndTimeUtc = trigger.EndTimeUtc; + var calendar = CalendarName != null ? scheduler.GetCalendar(CalendarName) : null; + NextFireTimes = TriggerUtils.ComputeFireTimes((IOperableTrigger) trigger, calendar, 10); + } + public string Name { get; set; } + public string Group { get; set; } + public string TriggerType { get; set; } + public string Description { get; set; } + + public string CalendarName { get; set; } + public int Priority { get; set; } + public DateTimeOffset StartTimeUtc { get; set; } + public DateTimeOffset? EndTimeUtc { get; set; } + + public IList NextFireTimes { get; set; } + + } +} \ No newline at end of file diff --git a/src/Quartz.Web/Api/Dto/JobHistoryEntryDto.cs b/src/Quartz.Web/Api/Dto/JobHistoryEntryDto.cs new file mode 100644 index 000000000..b098c9a7b --- /dev/null +++ b/src/Quartz.Web/Api/Dto/JobHistoryEntryDto.cs @@ -0,0 +1,17 @@ +using System; + +namespace Quartz.Web.Api.Dto +{ + public class JobHistoryEntryDto + { + public string JobName { get; set; } + public string JobGroup { get; set; } + public string TriggerName { get; set; } + public string TriggerGroup { get; set; } + public DateTimeOffset FiredTime { get; set; } + public DateTimeOffset ScheduledTime { get; set; } + public TimeSpan RunTime { get; set; } + public bool Error { get; set; } + public string ErrorMessage { get; set; } + } +} \ No newline at end of file diff --git a/src/Quartz.Web/Api/Dto/KeyDto.cs b/src/Quartz.Web/Api/Dto/KeyDto.cs new file mode 100644 index 000000000..350d70a20 --- /dev/null +++ b/src/Quartz.Web/Api/Dto/KeyDto.cs @@ -0,0 +1,20 @@ +namespace Quartz.Web.Api.Dto +{ + public class KeyDto + { + public KeyDto(JobKey jobKey) + { + Name = jobKey.Name; + Group = jobKey.Group; + } + + public KeyDto(TriggerKey triggerKey) + { + Name = triggerKey.Name; + Group = triggerKey.Group; + } + + public string Name { get; private set; } + public string Group { get; private set; } + } +} \ No newline at end of file diff --git a/src/Quartz.Web/Api/Dto/SchedulerDto.cs b/src/Quartz.Web/Api/Dto/SchedulerDto.cs new file mode 100644 index 000000000..edb2f96ba --- /dev/null +++ b/src/Quartz.Web/Api/Dto/SchedulerDto.cs @@ -0,0 +1,25 @@ +namespace Quartz.Web.Api.Dto +{ + public class SchedulerDto + { + public SchedulerDto(IScheduler scheduler) + { + Name = scheduler.SchedulerName; + SchedulerInstanceId = scheduler.SchedulerInstanceId; + Status = SchedulerHeaderDto.TranslateStatus(scheduler); + + var metaData = scheduler.GetMetaData(); + ThreadPool = new SchedulerThreadPoolDto(metaData); + JobStore = new SchedulerJobStoreDto(metaData); + Statistics = new SchedulerStatisticsDto(metaData); + } + + public string SchedulerInstanceId { get; private set; } + public string Name { get; private set; } + public SchedulerStatus Status { get; private set; } + + public SchedulerThreadPoolDto ThreadPool { get; private set; } + public SchedulerJobStoreDto JobStore { get; private set; } + public SchedulerStatisticsDto Statistics { get; private set; } + } +} \ No newline at end of file diff --git a/src/Quartz.Web/Api/Dto/SchedulerHeaderDto.cs b/src/Quartz.Web/Api/Dto/SchedulerHeaderDto.cs new file mode 100644 index 000000000..18c9280a7 --- /dev/null +++ b/src/Quartz.Web/Api/Dto/SchedulerHeaderDto.cs @@ -0,0 +1,33 @@ +namespace Quartz.Web.Api.Dto +{ + public class SchedulerHeaderDto + { + public SchedulerHeaderDto(IScheduler scheduler) + { + Name = scheduler.SchedulerName; + SchedulerInstanceId = scheduler.SchedulerInstanceId; + Status = TranslateStatus(scheduler); + } + + public string Name { get; private set; } + public string SchedulerInstanceId { get; private set; } + public SchedulerStatus Status { get; private set; } + + internal static SchedulerStatus TranslateStatus(IScheduler scheduler) + { + if (scheduler.IsShutdown) + { + return SchedulerStatus.Shutdown; + } + if (scheduler.InStandbyMode) + { + return SchedulerStatus.Standby; + } + if (scheduler.IsStarted) + { + return SchedulerStatus.Running; + } + return SchedulerStatus.Unknown; + } + } +} \ No newline at end of file diff --git a/src/Quartz.Web/Api/Dto/SchedulerJobStoreDto.cs b/src/Quartz.Web/Api/Dto/SchedulerJobStoreDto.cs new file mode 100644 index 000000000..c48c01a3e --- /dev/null +++ b/src/Quartz.Web/Api/Dto/SchedulerJobStoreDto.cs @@ -0,0 +1,18 @@ +using Quartz.Util; + +namespace Quartz.Web.Api.Dto +{ + public class SchedulerJobStoreDto + { + public SchedulerJobStoreDto(SchedulerMetaData metaData) + { + Type = metaData.JobStoreType.AssemblyQualifiedNameWithoutVersion(); + Clustered = metaData.JobStoreClustered; + Persistent = metaData.JobStoreSupportsPersistence; + } + + public string Type { get; private set; } + public bool Clustered { get; private set; } + public bool Persistent { get; private set; } + } +} \ No newline at end of file diff --git a/src/Quartz.Web/Api/Dto/SchedulerStatisticsDto.cs b/src/Quartz.Web/Api/Dto/SchedulerStatisticsDto.cs new file mode 100644 index 000000000..4a7568114 --- /dev/null +++ b/src/Quartz.Web/Api/Dto/SchedulerStatisticsDto.cs @@ -0,0 +1,12 @@ +namespace Quartz.Web.Api.Dto +{ + public class SchedulerStatisticsDto + { + public SchedulerStatisticsDto(SchedulerMetaData metaData) + { + NumberOfJobsExecuted = metaData.NumberOfJobsExecuted; + } + + public int NumberOfJobsExecuted { get; private set; } + } +} \ No newline at end of file diff --git a/src/Quartz.Web/Api/Dto/SchedulerStatus.cs b/src/Quartz.Web/Api/Dto/SchedulerStatus.cs new file mode 100644 index 000000000..a79c1b9b6 --- /dev/null +++ b/src/Quartz.Web/Api/Dto/SchedulerStatus.cs @@ -0,0 +1,10 @@ +namespace Quartz.Web.Api.Dto +{ + public enum SchedulerStatus + { + Unknown = 0, + Running = 1, + Standby = 2, + Shutdown = 3, + } +} \ No newline at end of file diff --git a/src/Quartz.Web/Api/Dto/SchedulerThreadPoolDto.cs b/src/Quartz.Web/Api/Dto/SchedulerThreadPoolDto.cs new file mode 100644 index 000000000..d801e892f --- /dev/null +++ b/src/Quartz.Web/Api/Dto/SchedulerThreadPoolDto.cs @@ -0,0 +1,16 @@ +using Quartz.Util; + +namespace Quartz.Web.Api.Dto +{ + public class SchedulerThreadPoolDto + { + public SchedulerThreadPoolDto(SchedulerMetaData metaData) + { + Type = metaData.ThreadPoolType.AssemblyQualifiedNameWithoutVersion(); + Size = metaData.ThreadPoolSize; + } + + public string Type { get; private set; } + public int Size { get; private set; } + } +} \ No newline at end of file diff --git a/src/Quartz.Web/Api/Dto/ServerDetailsDto.cs b/src/Quartz.Web/Api/Dto/ServerDetailsDto.cs new file mode 100644 index 000000000..af7c0eee9 --- /dev/null +++ b/src/Quartz.Web/Api/Dto/ServerDetailsDto.cs @@ -0,0 +1,21 @@ +using System.Collections.Generic; +using System.Linq; + +using Quartz.Impl; + +namespace Quartz.Web.Api.Dto +{ + public class ServerDetailsDto + { + public ServerDetailsDto() + { + Name = System.Environment.MachineName; + Address = "localhost"; + Schedulers = SchedulerRepository.Instance.LookupAll().Select(x => x.SchedulerName).ToList(); + } + + public string Name { get; private set; } + public string Address { get; private set; } + public IReadOnlyList Schedulers { get; set; } + } +} \ No newline at end of file diff --git a/src/Quartz.Web/Api/Dto/ServerHeaderDto.cs b/src/Quartz.Web/Api/Dto/ServerHeaderDto.cs new file mode 100644 index 000000000..69df275ab --- /dev/null +++ b/src/Quartz.Web/Api/Dto/ServerHeaderDto.cs @@ -0,0 +1,14 @@ +namespace Quartz.Web.Api.Dto +{ + public class ServerHeaderDto + { + public ServerHeaderDto(Server server) + { + Name = server.Name; + Address = server.Address; + } + + public string Name { get; private set; } + public string Address { get; private set; } + } +} \ No newline at end of file diff --git a/src/Quartz.Web/Api/JobsController.cs b/src/Quartz.Web/Api/JobsController.cs new file mode 100644 index 000000000..a85a6273d --- /dev/null +++ b/src/Quartz.Web/Api/JobsController.cs @@ -0,0 +1,110 @@ +using System.Collections.Generic; +using System.Linq; +using System.Net; +using System.Web.Http; + +using Quartz.Impl; +using Quartz.Web.Api.Dto; + +namespace Quartz.Web.Api +{ + [RoutePrefix("api/schedulers/{schedulerName}/jobs")] + public class JobsController : ApiController + { + [HttpGet] + [Route("")] + public IList Jobs(string schedulerName, GroupMatcherDto groupMatcher) + { + var scheduler = GetScheduler(schedulerName); + var matcher = (groupMatcher ?? new GroupMatcherDto()).GetJobGroupMatcher(); + var jobKeys = scheduler.GetJobKeys(matcher); + return jobKeys.Select(x => new KeyDto(x)).ToList(); + } + + [HttpGet] + [Route("{jobGroup}/{jobName}/details")] + public JobDetailDto JobDetails(string schedulerName, string jobGroup, string jobName) + { + var scheduler = GetScheduler(schedulerName); + var jobDetail = scheduler.GetJobDetail(new JobKey(jobName, jobGroup)); + return new JobDetailDto(jobDetail); + } + + [HttpGet] + [Route("currently-executing/{bar}")] + public List CurrentlyExecutingJobs(string schedulerName) + { + var scheduler = GetScheduler(schedulerName); + var currentlyExecutingJobs = scheduler.GetCurrentlyExecutingJobs(); + return currentlyExecutingJobs.Select(x => new CurrentlyExecutingJobDto(x)).ToList(); + } + + [HttpPost] + [Route("{jobGroup}/{jobName}/pause")] + public void PauseJobs(string schedulerName, string jobGroup, string jobName) + { + var scheduler = GetScheduler(schedulerName); + scheduler.PauseJob(new JobKey(jobName, jobGroup)); + } + + [HttpPost] + [Route("pause")] + public void PauseJobs(string schedulerName, GroupMatcherDto groupMatcher) + { + var scheduler = GetScheduler(schedulerName); + var matcher = (groupMatcher ?? new GroupMatcherDto()).GetJobGroupMatcher(); + scheduler.PauseJobs(matcher); + } + + [HttpPost] + [Route("{jobGroup}/{jobName}/resume")] + public void ResumeJob(string schedulerName, string jobGroup, string jobName) + { + var scheduler = GetScheduler(schedulerName); + scheduler.ResumeJob(new JobKey(jobName, jobGroup)); + } + + [HttpPost] + [Route("resume")] + public void ResumeJobs(string schedulerName, GroupMatcherDto groupMatcher) + { + var scheduler = GetScheduler(schedulerName); + var matcher = (groupMatcher ?? new GroupMatcherDto()).GetJobGroupMatcher(); + scheduler.ResumeJobs(matcher); + } + + [HttpPost] + [Route("{jobGroup}/{jobName}/trigger")] + public void TriggerJob(string schedulerName, string jobGroup, string jobName) + { + var scheduler = GetScheduler(schedulerName); + scheduler.TriggerJob(new JobKey(jobName, jobGroup)); + } + + [HttpPost] + [Route("{jobGroup}/{jobName}/delete")] + public void DeleteJob(string schedulerName, string jobGroup, string jobName) + { + var scheduler = GetScheduler(schedulerName); + scheduler.DeleteJob(new JobKey(jobName, jobGroup)); + } + + [HttpPost] + [Route("{jobGroup}/{jobName}/interrupt")] + public void InterruptJob(string schedulerName, string jobGroup, string jobName) + { + var scheduler = GetScheduler(schedulerName); + scheduler.Interrupt(new JobKey(jobName, jobGroup)); + } + + private static IScheduler GetScheduler(string schedulerName) + { + var scheduler = SchedulerRepository.Instance.Lookup(schedulerName); + if (scheduler == null) + { + throw new HttpResponseException(HttpStatusCode.NotFound); + } + return scheduler; + } + } +} \ No newline at end of file diff --git a/src/Quartz.Web/Api/SchedulerController.cs b/src/Quartz.Web/Api/SchedulerController.cs new file mode 100644 index 000000000..54e82ea21 --- /dev/null +++ b/src/Quartz.Web/Api/SchedulerController.cs @@ -0,0 +1,83 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Net; +using System.Web.Http; + +using Quartz.Impl; +using Quartz.Web.Api.Dto; + +namespace Quartz.Web.Api +{ + /// + /// Web API endpoint for scheduler information. + /// + [RoutePrefix("api/schedulers")] + public class SchedulerController : ApiController + { + [HttpGet] + [Route("")] + public IList AllSchedulers() + { + var schedulers = SchedulerRepository.Instance.LookupAll(); + return schedulers.Select(x => new SchedulerHeaderDto(x)).ToList(); + } + + [HttpGet] + [Route("{schedulerName}")] + public SchedulerDto SchedulerDetails(string schedulerName) + { + var scheduler = GetScheduler(schedulerName); + return new SchedulerDto(scheduler); + } + + [HttpPost] + [Route("{schedulerName}/start")] + public void Start(string schedulerName, int? delayMilliseconds = null) + { + var scheduler = GetScheduler(schedulerName); + if (delayMilliseconds == null) + { + scheduler.Start(); + } + else + { + scheduler.StartDelayed(TimeSpan.FromMilliseconds(delayMilliseconds.Value)); + } + } + + [HttpPost] + [Route("{schedulerName}/standby")] + public void Standby(string schedulerName) + { + var scheduler = GetScheduler(schedulerName); + scheduler.Standby(); + } + + [HttpPost] + [Route("{schedulerName}/shutdown")] + public void Shutdown(string schedulerName, bool waitForJobsToComplete = false) + { + var scheduler = GetScheduler(schedulerName); + scheduler.Shutdown(waitForJobsToComplete); + } + + [HttpPost] + [Route("{schedulerName}/clear")] + public void Clear(string schedulerName) + { + var scheduler = GetScheduler(schedulerName); + scheduler.Clear(); + } + + private static IScheduler GetScheduler(string schedulerName) + { + var scheduler = SchedulerRepository.Instance.Lookup(schedulerName); + if (scheduler == null) + { + throw new HttpResponseException(HttpStatusCode.NotFound); + } + return scheduler; + } + } +} \ No newline at end of file diff --git a/src/Quartz.Web/Api/ServerController.cs b/src/Quartz.Web/Api/ServerController.cs new file mode 100644 index 000000000..ba1950d1b --- /dev/null +++ b/src/Quartz.Web/Api/ServerController.cs @@ -0,0 +1,30 @@ +using System.Collections.Generic; +using System.Linq; +using System.Web.Http; + +using Quartz.Web.Api.Dto; + +namespace Quartz.Web.Api +{ + /// + /// Web API endpoint for scheduler information. + /// + public class ServerController : ApiController + { + [HttpGet] + [Route("api/servers")] + public IList AllServers() + { + var servers = ServerRepository.LookupAll(); + + return servers.Select(x => new ServerHeaderDto(x)).ToList(); + } + + [HttpGet] + [Route("api/server/{serverName}/details")] + public ServerDetailsDto ServerDetails(string serverName) + { + return new ServerDetailsDto(); + } + } +} \ No newline at end of file diff --git a/src/Quartz.Web/Api/ServerRepository.cs b/src/Quartz.Web/Api/ServerRepository.cs new file mode 100644 index 000000000..c6bdf75fc --- /dev/null +++ b/src/Quartz.Web/Api/ServerRepository.cs @@ -0,0 +1,44 @@ +using System; +using System.Collections.Generic; +using System.Linq; + +namespace Quartz.Web.Api +{ + public static class ServerRepository + { + private static List servers; + + static ServerRepository() + { + Initialize(); + } + + private static void Initialize() + { + servers = new List(); + servers.Add(new Server("localhost", "http://localhost:28682/")); + } + + public static Server Lookup(string name) + { + return servers.FirstOrDefault(x => x.Name.Equals(name, StringComparison.OrdinalIgnoreCase)); + } + + public static IReadOnlyList LookupAll() + { + return servers; + } + } + + public class Server + { + public Server(string name, string address) + { + Name = name; + Address = address; + } + + public string Name { get; private set; } + public string Address { get; private set; } + } +} \ No newline at end of file diff --git a/src/Quartz.Web/Api/TriggersController.cs b/src/Quartz.Web/Api/TriggersController.cs new file mode 100644 index 000000000..38b357bce --- /dev/null +++ b/src/Quartz.Web/Api/TriggersController.cs @@ -0,0 +1,78 @@ +using System.Collections.Generic; +using System.Linq; +using System.Net; +using System.Web.Http; + +using Quartz.Impl; +using Quartz.Web.Api.Dto; + +namespace Quartz.Web.Api +{ + [RoutePrefix("api/schedulers/{schedulerName}/triggers")] + public class TriggersController : ApiController + { + [HttpGet] + [Route("")] + public IList Triggers(string schedulerName, GroupMatcherDto groupMatcher) + { + var scheduler = GetScheduler(schedulerName); + var matcher = (groupMatcher ?? new GroupMatcherDto()).GetTriggerGroupMatcher(); + var jobKeys = scheduler.GetTriggerKeys(matcher); + + return jobKeys.Select(x => new KeyDto(x)).ToList(); + } + + [HttpGet] + [Route("{triggerGroup}/{triggerName}/details")] + public TriggerDetailDto TriggerDetails(string schedulerName, string triggerGroup, string triggerName) + { + var scheduler = GetScheduler(schedulerName); + var trigger = scheduler.GetTrigger(new TriggerKey(triggerName, triggerGroup)); + return new TriggerDetailDto(scheduler, trigger); + } + + [HttpPost] + [Route("{triggerGroup}/{triggerName}/pause")] + public void PauseTrigger(string schedulerName, string triggerGroup, string triggerName) + { + var scheduler = GetScheduler(schedulerName); + scheduler.PauseTrigger(new TriggerKey(triggerName, triggerGroup)); + } + + [HttpPost] + [Route("pause")] + public void PauseTriggers(string schedulerName, GroupMatcherDto groupMatcher) + { + var scheduler = GetScheduler(schedulerName); + var matcher = (groupMatcher ?? new GroupMatcherDto()).GetTriggerGroupMatcher(); + scheduler.PauseTriggers(matcher); + } + + [HttpPost] + [Route("{triggerGroup}/{triggerName}/resume")] + public void ResumeTrigger(string schedulerName, string triggerGroup, string triggerName) + { + var scheduler = GetScheduler(schedulerName); + scheduler.ResumeTrigger(new TriggerKey(triggerName, triggerGroup)); + } + + [HttpPost] + [Route("resume")] + public void ResumeTriggers(string schedulerName, GroupMatcherDto groupMatcher) + { + var scheduler = GetScheduler(schedulerName); + var matcher = (groupMatcher ?? new GroupMatcherDto()).GetTriggerGroupMatcher(); + scheduler.ResumeTriggers(matcher); + } + + private static IScheduler GetScheduler(string schedulerName) + { + var scheduler = SchedulerRepository.Instance.Lookup(schedulerName); + if (scheduler == null) + { + throw new HttpResponseException(HttpStatusCode.NotFound); + } + return scheduler; + } + } +} \ No newline at end of file diff --git a/src/Quartz.Web/App/config.js b/src/Quartz.Web/App/config.js new file mode 100644 index 000000000..edb7d66e7 --- /dev/null +++ b/src/Quartz.Web/App/config.js @@ -0,0 +1,138 @@ +System.config({ + "baseURL": "/", + "paths": { + "*": "*.js", + "github:*": "jspm_packages/github/*.js", + "npm:*": "jspm_packages/npm/*.js" + } +}); + +System.config({ + "map": { + "aurelia-bootstrapper": "github:aurelia/bootstrapper@0.14.0", + "aurelia-framework": "github:aurelia/framework@0.13.2", + "aurelia-history": "github:aurelia/history@0.6.0", + "aurelia-http-client": "github:aurelia/http-client@0.10.0", + "aurelia-logging-console": "github:aurelia/logging-console@0.6.0", + "core-js": "npm:core-js@0.9.18", + "font-awesome": "npm:font-awesome@4.3.0", + "moment": "github:moment/moment@2.10.3", + "traceur": "github:jmcriffey/bower-traceur@0.0.87", + "traceur-runtime": "github:jmcriffey/bower-traceur-runtime@0.0.87", + "github:aurelia/binding@0.8.1": { + "aurelia-dependency-injection": "github:aurelia/dependency-injection@0.9.0", + "aurelia-metadata": "github:aurelia/metadata@0.7.0", + "aurelia-task-queue": "github:aurelia/task-queue@0.6.0", + "core-js": "npm:core-js@0.9.18" + }, + "github:aurelia/bootstrapper@0.14.0": { + "aurelia-event-aggregator": "github:aurelia/event-aggregator@0.6.1", + "aurelia-framework": "github:aurelia/framework@0.13.2", + "aurelia-history": "github:aurelia/history@0.6.0", + "aurelia-history-browser": "github:aurelia/history-browser@0.6.1", + "aurelia-loader-default": "github:aurelia/loader-default@0.9.0", + "aurelia-logging-console": "github:aurelia/logging-console@0.6.0", + "aurelia-router": "github:aurelia/router@0.10.1", + "aurelia-templating": "github:aurelia/templating@0.13.2", + "aurelia-templating-binding": "github:aurelia/templating-binding@0.13.0", + "aurelia-templating-resources": "github:aurelia/templating-resources@0.13.0", + "aurelia-templating-router": "github:aurelia/templating-router@0.14.0", + "core-js": "npm:core-js@0.9.18" + }, + "github:aurelia/dependency-injection@0.9.0": { + "aurelia-logging": "github:aurelia/logging@0.6.0", + "aurelia-metadata": "github:aurelia/metadata@0.7.0", + "core-js": "npm:core-js@0.9.18" + }, + "github:aurelia/event-aggregator@0.6.1": { + "aurelia-logging": "github:aurelia/logging@0.6.0" + }, + "github:aurelia/framework@0.13.2": { + "aurelia-binding": "github:aurelia/binding@0.8.1", + "aurelia-dependency-injection": "github:aurelia/dependency-injection@0.9.0", + "aurelia-loader": "github:aurelia/loader@0.8.0", + "aurelia-logging": "github:aurelia/logging@0.6.0", + "aurelia-metadata": "github:aurelia/metadata@0.7.0", + "aurelia-path": "github:aurelia/path@0.8.0", + "aurelia-task-queue": "github:aurelia/task-queue@0.6.0", + "aurelia-templating": "github:aurelia/templating@0.13.2", + "core-js": "npm:core-js@0.9.18" + }, + "github:aurelia/history-browser@0.6.1": { + "aurelia-history": "github:aurelia/history@0.6.0", + "core-js": "npm:core-js@0.9.18" + }, + "github:aurelia/http-client@0.10.0": { + "aurelia-path": "github:aurelia/path@0.8.0", + "core-js": "npm:core-js@0.9.18" + }, + "github:aurelia/loader-default@0.9.0": { + "aurelia-loader": "github:aurelia/loader@0.8.0", + "aurelia-metadata": "github:aurelia/metadata@0.7.0" + }, + "github:aurelia/loader@0.8.0": { + "aurelia-html-template-element": "github:aurelia/html-template-element@0.2.0", + "aurelia-path": "github:aurelia/path@0.8.0", + "core-js": "npm:core-js@0.9.18", + "webcomponentsjs": "github:webcomponents/webcomponentsjs@0.6.3" + }, + "github:aurelia/metadata@0.7.0": { + "core-js": "npm:core-js@0.9.18" + }, + "github:aurelia/route-recognizer@0.6.0": { + "core-js": "npm:core-js@0.9.18" + }, + "github:aurelia/router@0.10.1": { + "aurelia-dependency-injection": "github:aurelia/dependency-injection@0.9.0", + "aurelia-event-aggregator": "github:aurelia/event-aggregator@0.6.1", + "aurelia-history": "github:aurelia/history@0.6.0", + "aurelia-logging": "github:aurelia/logging@0.6.0", + "aurelia-path": "github:aurelia/path@0.8.0", + "aurelia-route-recognizer": "github:aurelia/route-recognizer@0.6.0", + "core-js": "npm:core-js@0.9.18" + }, + "github:aurelia/templating-binding@0.13.0": { + "aurelia-binding": "github:aurelia/binding@0.8.1", + "aurelia-logging": "github:aurelia/logging@0.6.0", + "aurelia-templating": "github:aurelia/templating@0.13.2" + }, + "github:aurelia/templating-resources@0.13.0": { + "aurelia-binding": "github:aurelia/binding@0.8.1", + "aurelia-dependency-injection": "github:aurelia/dependency-injection@0.9.0", + "aurelia-logging": "github:aurelia/logging@0.6.0", + "aurelia-task-queue": "github:aurelia/task-queue@0.6.0", + "aurelia-templating": "github:aurelia/templating@0.13.2", + "core-js": "npm:core-js@0.9.18" + }, + "github:aurelia/templating-router@0.14.0": { + "aurelia-dependency-injection": "github:aurelia/dependency-injection@0.9.0", + "aurelia-metadata": "github:aurelia/metadata@0.7.0", + "aurelia-path": "github:aurelia/path@0.8.0", + "aurelia-router": "github:aurelia/router@0.10.1", + "aurelia-templating": "github:aurelia/templating@0.13.2" + }, + "github:aurelia/templating@0.13.2": { + "aurelia-binding": "github:aurelia/binding@0.8.1", + "aurelia-dependency-injection": "github:aurelia/dependency-injection@0.9.0", + "aurelia-html-template-element": "github:aurelia/html-template-element@0.2.0", + "aurelia-loader": "github:aurelia/loader@0.8.0", + "aurelia-logging": "github:aurelia/logging@0.6.0", + "aurelia-metadata": "github:aurelia/metadata@0.7.0", + "aurelia-path": "github:aurelia/path@0.8.0", + "aurelia-task-queue": "github:aurelia/task-queue@0.6.0", + "core-js": "npm:core-js@0.9.18" + }, + "github:jspm/nodelibs-process@0.1.1": { + "process": "npm:process@0.10.1" + }, + "npm:core-js@0.9.18": { + "fs": "github:jspm/nodelibs-fs@0.1.2", + "process": "github:jspm/nodelibs-process@0.1.1", + "systemjs-json": "github:systemjs/plugin-json@0.1.0" + }, + "npm:font-awesome@4.3.0": { + "css": "github:systemjs/plugin-css@0.1.13" + } + } +}); + diff --git a/src/Quartz.Web/App/index.html b/src/Quartz.Web/App/index.html new file mode 100644 index 000000000..6193fa230 --- /dev/null +++ b/src/Quartz.Web/App/index.html @@ -0,0 +1,38 @@ + + + + + + Quartz Web Console + + + + + + + +
+
Quartz Web Console
+ +
+ + + + + + + + + \ No newline at end of file diff --git a/src/Quartz.Web/App/package.json b/src/Quartz.Web/App/package.json new file mode 100644 index 000000000..fec38e393 --- /dev/null +++ b/src/Quartz.Web/App/package.json @@ -0,0 +1,19 @@ +{ + "jspm": { + "directories": {}, + "dependencies": { + "aurelia-bootstrapper": "github:aurelia/bootstrapper@^0.14.0", + "aurelia-framework": "github:aurelia/framework@^0.13.2", + "aurelia-history": "github:aurelia/history@^0.6.0", + "aurelia-http-client": "github:aurelia/http-client@^0.10.0", + "aurelia-logging-console": "github:aurelia/logging-console@^0.6.0", + "core-js": "npm:core-js@^0.9.18", + "font-awesome": "npm:font-awesome@^4.3.0", + "moment": "github:moment/moment@^2.10.3" + }, + "devDependencies": { + "traceur": "github:jmcriffey/bower-traceur@0.0.87", + "traceur-runtime": "github:jmcriffey/bower-traceur-runtime@0.0.87" + } + } +} diff --git a/src/Quartz.Web/App/scripts/core-js/client/core.js b/src/Quartz.Web/App/scripts/core-js/client/core.js new file mode 100644 index 000000000..8effe33f6 --- /dev/null +++ b/src/Quartz.Web/App/scripts/core-js/client/core.js @@ -0,0 +1,2528 @@ +/** + * Core.js 0.4.10 + * https://github.com/zloirock/core-js + * License: http://rock.mit-license.org + * © 2015 Denis Pushkarev + */ +!function(global, framework, undefined){ +'use strict'; + +/****************************************************************************** + * Module : common * + ******************************************************************************/ + + // Shortcuts for [[Class]] & property names +var OBJECT = 'Object' + , FUNCTION = 'Function' + , ARRAY = 'Array' + , STRING = 'String' + , NUMBER = 'Number' + , REGEXP = 'RegExp' + , DATE = 'Date' + , MAP = 'Map' + , SET = 'Set' + , WEAKMAP = 'WeakMap' + , WEAKSET = 'WeakSet' + , SYMBOL = 'Symbol' + , PROMISE = 'Promise' + , MATH = 'Math' + , ARGUMENTS = 'Arguments' + , PROTOTYPE = 'prototype' + , CONSTRUCTOR = 'constructor' + , TO_STRING = 'toString' + , TO_STRING_TAG = TO_STRING + 'Tag' + , TO_LOCALE = 'toLocaleString' + , HAS_OWN = 'hasOwnProperty' + , FOR_EACH = 'forEach' + , ITERATOR = 'iterator' + , FF_ITERATOR = '@@' + ITERATOR + , PROCESS = 'process' + , CREATE_ELEMENT = 'createElement' + // Aliases global objects and prototypes + , Function = global[FUNCTION] + , Object = global[OBJECT] + , Array = global[ARRAY] + , String = global[STRING] + , Number = global[NUMBER] + , RegExp = global[REGEXP] + , Date = global[DATE] + , Map = global[MAP] + , Set = global[SET] + , WeakMap = global[WEAKMAP] + , WeakSet = global[WEAKSET] + , Symbol = global[SYMBOL] + , Math = global[MATH] + , TypeError = global.TypeError + , setTimeout = global.setTimeout + , setImmediate = global.setImmediate + , clearImmediate = global.clearImmediate + , isFinite = global.isFinite + , process = global[PROCESS] + , nextTick = process && process.nextTick + , document = global.document + , html = document && document.documentElement + , navigator = global.navigator + , define = global.define + , ArrayProto = Array[PROTOTYPE] + , ObjectProto = Object[PROTOTYPE] + , FunctionProto = Function[PROTOTYPE] + , Infinity = 1 / 0 + , DOT = '.'; + +// http://jsperf.com/core-js-isobject +function isObject(it){ + return it !== null && (typeof it == 'object' || typeof it == 'function'); +} +function isFunction(it){ + return typeof it == 'function'; +} +// Native function? +var isNative = ctx(/./.test, /\[native code\]\s*\}\s*$/, 1); + +// Object internal [[Class]] or toStringTag +// http://people.mozilla.org/~jorendorff/es6-draft.html#sec-object.prototype.tostring +var toString = ObjectProto[TO_STRING]; +function setToStringTag(it, tag, stat){ + if(it && !has(it = stat ? it : it[PROTOTYPE], SYMBOL_TAG))hidden(it, SYMBOL_TAG, tag); +} +function cof(it){ + return it == undefined ? it === undefined + ? 'Undefined' : 'Null' : toString.call(it).slice(8, -1); +} +function classof(it){ + var klass = cof(it), tag; + return klass == OBJECT && (tag = it[SYMBOL_TAG]) ? tag : klass; +} + +// Function +var call = FunctionProto.call + , apply = FunctionProto.apply + , REFERENCE_GET; +// Partial apply +function part(/* ...args */){ + var fn = assertFunction(this) + , length = arguments.length + , args = Array(length) + , i = 0 + , _ = path._ + , holder = false; + while(length > i)if((args[i] = arguments[i++]) === _)holder = true; + return function(/* ...args */){ + var that = this + , _length = arguments.length + , i = 0, j = 0, _args; + if(!holder && !_length)return invoke(fn, args, that); + _args = args.slice(); + if(holder)for(;length > i; i++)if(_args[i] === _)_args[i] = arguments[j++]; + while(_length > j)_args.push(arguments[j++]); + return invoke(fn, _args, that); + } +} +// Optional / simple context binding +function ctx(fn, that, length){ + assertFunction(fn); + if(~length && that === undefined)return fn; + switch(length){ + case 1: return function(a){ + return fn.call(that, a); + } + case 2: return function(a, b){ + return fn.call(that, a, b); + } + case 3: return function(a, b, c){ + return fn.call(that, a, b, c); + } + } return function(/* ...args */){ + return fn.apply(that, arguments); + } +} +// Fast apply +// http://jsperf.lnkit.com/fast-apply/5 +function invoke(fn, args, that){ + var un = that === undefined; + switch(args.length | 0){ + case 0: return un ? fn() + : fn.call(that); + case 1: return un ? fn(args[0]) + : fn.call(that, args[0]); + case 2: return un ? fn(args[0], args[1]) + : fn.call(that, args[0], args[1]); + case 3: return un ? fn(args[0], args[1], args[2]) + : fn.call(that, args[0], args[1], args[2]); + case 4: return un ? fn(args[0], args[1], args[2], args[3]) + : fn.call(that, args[0], args[1], args[2], args[3]); + case 5: return un ? fn(args[0], args[1], args[2], args[3], args[4]) + : fn.call(that, args[0], args[1], args[2], args[3], args[4]); + } return fn.apply(that, args); +} +function construct(target, argumentsList /*, newTarget*/){ + var proto = assertFunction(arguments.length < 3 ? target : arguments[2])[PROTOTYPE] + , instance = create(isObject(proto) ? proto : ObjectProto) + , result = apply.call(target, instance, argumentsList); + return isObject(result) ? result : instance; +} + +// Object: +var create = Object.create + , getPrototypeOf = Object.getPrototypeOf + , setPrototypeOf = Object.setPrototypeOf + , defineProperty = Object.defineProperty + , defineProperties = Object.defineProperties + , getOwnDescriptor = Object.getOwnPropertyDescriptor + , getKeys = Object.keys + , getNames = Object.getOwnPropertyNames + , getSymbols = Object.getOwnPropertySymbols + , isFrozen = Object.isFrozen + , has = ctx(call, ObjectProto[HAS_OWN], 2) + // Dummy, fix for not array-like ES3 string in es5 module + , ES5Object = Object + , Dict; +function toObject(it){ + return ES5Object(assertDefined(it)); +} +function returnIt(it){ + return it; +} +function returnThis(){ + return this; +} +function get(object, key){ + if(has(object, key))return object[key]; +} +function ownKeys(it){ + assertObject(it); + return getSymbols ? getNames(it).concat(getSymbols(it)) : getNames(it); +} +// 19.1.2.1 Object.assign(target, source, ...) +var assign = Object.assign || function(target, source){ + var T = Object(assertDefined(target)) + , l = arguments.length + , i = 1; + while(l > i){ + var S = ES5Object(arguments[i++]) + , keys = getKeys(S) + , length = keys.length + , j = 0 + , key; + while(length > j)T[key = keys[j++]] = S[key]; + } + return T; +} +function keyOf(object, el){ + var O = toObject(object) + , keys = getKeys(O) + , length = keys.length + , index = 0 + , key; + while(length > index)if(O[key = keys[index++]] === el)return key; +} + +// Array +// array('str1,str2,str3') => ['str1', 'str2', 'str3'] +function array(it){ + return String(it).split(','); +} +var push = ArrayProto.push + , unshift = ArrayProto.unshift + , slice = ArrayProto.slice + , splice = ArrayProto.splice + , indexOf = ArrayProto.indexOf + , forEach = ArrayProto[FOR_EACH]; +/* + * 0 -> forEach + * 1 -> map + * 2 -> filter + * 3 -> some + * 4 -> every + * 5 -> find + * 6 -> findIndex + */ +function createArrayMethod(type){ + var isMap = type == 1 + , isFilter = type == 2 + , isSome = type == 3 + , isEvery = type == 4 + , isFindIndex = type == 6 + , noholes = type == 5 || isFindIndex; + return function(callbackfn/*, that = undefined */){ + var O = Object(assertDefined(this)) + , that = arguments[1] + , self = ES5Object(O) + , f = ctx(callbackfn, that, 3) + , length = toLength(self.length) + , index = 0 + , result = isMap ? Array(length) : isFilter ? [] : undefined + , val, res; + for(;length > index; index++)if(noholes || index in self){ + val = self[index]; + res = f(val, index, O); + if(type){ + if(isMap)result[index] = res; // map + else if(res)switch(type){ + case 3: return true; // some + case 5: return val; // find + case 6: return index; // findIndex + case 2: result.push(val); // filter + } else if(isEvery)return false; // every + } + } + return isFindIndex ? -1 : isSome || isEvery ? isEvery : result; + } +} +function createArrayContains(isContains){ + return function(el /*, fromIndex = 0 */){ + var O = toObject(this) + , length = toLength(O.length) + , index = toIndex(arguments[1], length); + if(isContains && el != el){ + for(;length > index; index++)if(sameNaN(O[index]))return isContains || index; + } else for(;length > index; index++)if(isContains || index in O){ + if(O[index] === el)return isContains || index; + } return !isContains && -1; + } +} +function generic(A, B){ + // strange IE quirks mode bug -> use typeof vs isFunction + return typeof A == 'function' ? A : B; +} + +// Math +var MAX_SAFE_INTEGER = 0x1fffffffffffff // pow(2, 53) - 1 == 9007199254740991 + , pow = Math.pow + , abs = Math.abs + , ceil = Math.ceil + , floor = Math.floor + , max = Math.max + , min = Math.min + , random = Math.random + , trunc = Math.trunc || function(it){ + return (it > 0 ? floor : ceil)(it); + } +// 20.1.2.4 Number.isNaN(number) +function sameNaN(number){ + return number != number; +} +// 7.1.4 ToInteger +function toInteger(it){ + return isNaN(it) ? 0 : trunc(it); +} +// 7.1.15 ToLength +function toLength(it){ + return it > 0 ? min(toInteger(it), MAX_SAFE_INTEGER) : 0; +} +function toIndex(index, length){ + var index = toInteger(index); + return index < 0 ? max(index + length, 0) : min(index, length); +} + +function createReplacer(regExp, replace, isStatic){ + var replacer = isObject(replace) ? function(part){ + return replace[part]; + } : replace; + return function(it){ + return String(isStatic ? it : this).replace(regExp, replacer); + } +} +function createPointAt(toString){ + return function(pos){ + var s = String(assertDefined(this)) + , i = toInteger(pos) + , l = s.length + , a, b; + if(i < 0 || i >= l)return toString ? '' : undefined; + a = s.charCodeAt(i); + return a < 0xd800 || a > 0xdbff || i + 1 === l || (b = s.charCodeAt(i + 1)) < 0xdc00 || b > 0xdfff + ? toString ? s.charAt(i) : a + : toString ? s.slice(i, i + 2) : (a - 0xd800 << 10) + (b - 0xdc00) + 0x10000; + } +} + +// Assertion & errors +var REDUCE_ERROR = 'Reduce of empty object with no initial value'; +function assert(condition, msg1, msg2){ + if(!condition)throw TypeError(msg2 ? msg1 + msg2 : msg1); +} +function assertDefined(it){ + if(it == undefined)throw TypeError('Function called on null or undefined'); + return it; +} +function assertFunction(it){ + assert(isFunction(it), it, ' is not a function!'); + return it; +} +function assertObject(it){ + assert(isObject(it), it, ' is not an object!'); + return it; +} +function assertInstance(it, Constructor, name){ + assert(it instanceof Constructor, name, ": use the 'new' operator!"); +} + +// Property descriptors & Symbol +function descriptor(bitmap, value){ + return { + enumerable : !(bitmap & 1), + configurable: !(bitmap & 2), + writable : !(bitmap & 4), + value : value + } +} +function simpleSet(object, key, value){ + object[key] = value; + return object; +} +function createDefiner(bitmap){ + return DESC ? function(object, key, value){ + return defineProperty(object, key, descriptor(bitmap, value)); + } : simpleSet; +} +function uid(key){ + return SYMBOL + '(' + key + ')_' + (++sid + random())[TO_STRING](36); +} +function getWellKnownSymbol(name, setter){ + return (Symbol && Symbol[name]) || (setter ? Symbol : safeSymbol)(SYMBOL + DOT + name); +} +// The engine works fine with descriptors? Thank's IE8 for his funny defineProperty. +var DESC = !!function(){try{return defineProperty({}, DOT, ObjectProto)}catch(e){}}() + , sid = 0 + , hidden = createDefiner(1) + , set = Symbol ? simpleSet : hidden + , safeSymbol = Symbol || uid; +function assignHidden(target, src){ + for(var key in src)hidden(target, key, src[key]); + return target; +} + +var SYMBOL_UNSCOPABLES = getWellKnownSymbol('unscopables') + , ArrayUnscopables = ArrayProto[SYMBOL_UNSCOPABLES] || {} + , SYMBOL_SPECIES = getWellKnownSymbol('species'); +function setSpecies(C){ + if(framework || !isNative(C))defineProperty(C, SYMBOL_SPECIES, { + configurable: true, + get: returnThis + }); +} + +// Iterators +var SYMBOL_ITERATOR = getWellKnownSymbol(ITERATOR) + , SYMBOL_TAG = getWellKnownSymbol(TO_STRING_TAG) + , SUPPORT_FF_ITER = FF_ITERATOR in ArrayProto + , ITER = safeSymbol('iter') + , KEY = 1 + , VALUE = 2 + , Iterators = {} + , IteratorPrototype = {} + , NATIVE_ITERATORS = SYMBOL_ITERATOR in ArrayProto + // Safari define byggy iterators w/o `next` + , BUGGY_ITERATORS = 'keys' in ArrayProto && !('next' in [].keys()); +// 25.1.2.1.1 %IteratorPrototype%[@@iterator]() +setIterator(IteratorPrototype, returnThis); +function setIterator(O, value){ + hidden(O, SYMBOL_ITERATOR, value); + // Add iterator for FF iterator protocol + SUPPORT_FF_ITER && hidden(O, FF_ITERATOR, value); +} +function createIterator(Constructor, NAME, next, proto){ + Constructor[PROTOTYPE] = create(proto || IteratorPrototype, {next: descriptor(1, next)}); + setToStringTag(Constructor, NAME + ' Iterator'); +} +function defineIterator(Constructor, NAME, value, DEFAULT){ + var proto = Constructor[PROTOTYPE] + , iter = get(proto, SYMBOL_ITERATOR) || get(proto, FF_ITERATOR) || (DEFAULT && get(proto, DEFAULT)) || value; + if(framework){ + // Define iterator + setIterator(proto, iter); + if(iter !== value){ + var iterProto = getPrototypeOf(iter.call(new Constructor)); + // Set @@toStringTag to native iterators + setToStringTag(iterProto, NAME + ' Iterator', true); + // FF fix + has(proto, FF_ITERATOR) && setIterator(iterProto, returnThis); + } + } + // Plug for library + Iterators[NAME] = iter; + // FF & v8 fix + Iterators[NAME + ' Iterator'] = returnThis; + return iter; +} +function defineStdIterators(Base, NAME, Constructor, next, DEFAULT, IS_SET){ + function createIter(kind){ + return function(){ + return new Constructor(this, kind); + } + } + createIterator(Constructor, NAME, next); + var entries = createIter(KEY+VALUE) + , values = createIter(VALUE); + if(DEFAULT == VALUE)values = defineIterator(Base, NAME, values, 'values'); + else entries = defineIterator(Base, NAME, entries, 'entries'); + if(DEFAULT){ + $define(PROTO + FORCED * BUGGY_ITERATORS, NAME, { + entries: entries, + keys: IS_SET ? values : createIter(KEY), + values: values + }); + } +} +function iterResult(done, value){ + return {value: value, done: !!done}; +} +function isIterable(it){ + var O = Object(it) + , Symbol = global[SYMBOL] + , hasExt = (Symbol && Symbol[ITERATOR] || FF_ITERATOR) in O; + return hasExt || SYMBOL_ITERATOR in O || has(Iterators, classof(O)); +} +function getIterator(it){ + var Symbol = global[SYMBOL] + , ext = it[Symbol && Symbol[ITERATOR] || FF_ITERATOR] + , getIter = ext || it[SYMBOL_ITERATOR] || Iterators[classof(it)]; + return assertObject(getIter.call(it)); +} +function stepCall(fn, value, entries){ + return entries ? invoke(fn, value) : fn(value); +} +function forOf(iterable, entries, fn, that){ + var iterator = getIterator(iterable) + , f = ctx(fn, that, entries ? 2 : 1) + , step; + while(!(step = iterator.next()).done)if(stepCall(f, step.value, entries) === false)return; +} + +// core +var NODE = cof(process) == PROCESS + , core = {} + , path = framework ? global : core + , old = global.core + , exportGlobal + // type bitmap + , FORCED = 1 + , GLOBAL = 2 + , STATIC = 4 + , PROTO = 8 + , BIND = 16 + , WRAP = 32; +function $define(type, name, source){ + var key, own, out, exp + , isGlobal = type & GLOBAL + , target = isGlobal ? global : (type & STATIC) + ? global[name] : (global[name] || ObjectProto)[PROTOTYPE] + , exports = isGlobal ? core : core[name] || (core[name] = {}); + if(isGlobal)source = name; + for(key in source){ + // there is a similar native + own = !(type & FORCED) && target && key in target + && (!isFunction(target[key]) || isNative(target[key])); + // export native or passed + out = (own ? target : source)[key]; + // bind timers to global for call from export context + if(type & BIND && own)exp = ctx(out, global); + // wrap global constructors for prevent change them in library + else if(type & WRAP && !framework && target[key] == out){ + exp = function(param){ + return this instanceof out ? new out(param) : out(param); + } + exp[PROTOTYPE] = out[PROTOTYPE]; + } else exp = type & PROTO && isFunction(out) ? ctx(call, out) : out; + // export + if(exports[key] != out)hidden(exports, key, exp); + // extend global + if(framework && target && !own){ + if(isGlobal)target[key] = out; + else delete target[key] && hidden(target, key, out); + } + } +} +// CommonJS export +if(typeof module != 'undefined' && module.exports)module.exports = core; +// RequireJS export +else if(isFunction(define) && define.amd)define(function(){return core}); +// Export to global object +else exportGlobal = true; +if(exportGlobal || framework){ + core.noConflict = function(){ + global.core = old; + return core; + } + global.core = core; +} + +/****************************************************************************** + * Module : es5 * + ******************************************************************************/ + +// ECMAScript 5 shim +!function(IS_ENUMERABLE, Empty, _classof, $PROTO){ + if(!DESC){ + getOwnDescriptor = function(O, P){ + if(has(O, P))return descriptor(!ObjectProto[IS_ENUMERABLE].call(O, P), O[P]); + }; + defineProperty = function(O, P, Attributes){ + if('value' in Attributes)assertObject(O)[P] = Attributes.value; + return O; + }; + defineProperties = function(O, Properties){ + assertObject(O); + var keys = getKeys(Properties) + , length = keys.length + , i = 0 + , P, Attributes; + while(length > i){ + P = keys[i++]; + Attributes = Properties[P]; + if('value' in Attributes)O[P] = Attributes.value; + } + return O; + }; + } + $define(STATIC + FORCED * !DESC, OBJECT, { + // 19.1.2.6 / 15.2.3.3 Object.getOwnPropertyDescriptor(O, P) + getOwnPropertyDescriptor: getOwnDescriptor, + // 19.1.2.4 / 15.2.3.6 Object.defineProperty(O, P, Attributes) + defineProperty: defineProperty, + // 19.1.2.3 / 15.2.3.7 Object.defineProperties(O, Properties) + defineProperties: defineProperties + }); + + // IE 8- don't enum bug keys + var keys1 = [CONSTRUCTOR, HAS_OWN, 'isPrototypeOf', IS_ENUMERABLE, TO_LOCALE, TO_STRING, 'valueOf'] + // Additional keys for getOwnPropertyNames + , keys2 = keys1.concat('length', PROTOTYPE) + , keysLen1 = keys1.length; + + // Create object with `null` prototype: use iframe Object with cleared prototype + function createDict(){ + // Thrash, waste and sodomy: IE GC bug + var iframe = document[CREATE_ELEMENT]('iframe') + , i = keysLen1 + , iframeDocument; + iframe.style.display = 'none'; + html.appendChild(iframe); + iframe.src = 'javascript:'; + // createDict = iframe.contentWindow.Object; + // html.removeChild(iframe); + iframeDocument = iframe.contentWindow.document; + iframeDocument.open(); + iframeDocument.write(''); + iframeDocument.close(); + createDict = iframeDocument.F; + while(i--)delete createDict[PROTOTYPE][keys1[i]]; + return createDict(); + } + function createGetKeys(names, length, isNames){ + return function(object){ + var O = toObject(object) + , i = 0 + , result = [] + , key; + for(key in O)if(key != $PROTO)has(O, key) && result.push(key); + // Don't enum bug & hidden keys + while(length > i)if(has(O, key = names[i++])){ + ~indexOf.call(result, key) || result.push(key); + } + return result; + } + } + function isPrimitive(it){ return !isObject(it) } + $define(STATIC, OBJECT, { + // 19.1.2.9 / 15.2.3.2 Object.getPrototypeOf(O) + getPrototypeOf: getPrototypeOf = getPrototypeOf || function(O){ + O = Object(assertDefined(O)); + if(has(O, $PROTO))return O[$PROTO]; + if(isFunction(O[CONSTRUCTOR]) && O instanceof O[CONSTRUCTOR]){ + return O[CONSTRUCTOR][PROTOTYPE]; + } return O instanceof Object ? ObjectProto : null; + }, + // 19.1.2.7 / 15.2.3.4 Object.getOwnPropertyNames(O) + getOwnPropertyNames: getNames = getNames || createGetKeys(keys2, keys2.length, true), + // 19.1.2.2 / 15.2.3.5 Object.create(O [, Properties]) + create: create = create || function(O, /*?*/Properties){ + var result + if(O !== null){ + Empty[PROTOTYPE] = assertObject(O); + result = new Empty(); + Empty[PROTOTYPE] = null; + // add "__proto__" for Object.getPrototypeOf shim + if(result[CONSTRUCTOR][PROTOTYPE] !== O)result[$PROTO] = O; + } else result = createDict(); + return Properties === undefined ? result : defineProperties(result, Properties); + }, + // 19.1.2.14 / 15.2.3.14 Object.keys(O) + keys: getKeys = getKeys || createGetKeys(keys1, keysLen1, false), + // 19.1.2.17 / 15.2.3.8 Object.seal(O) + seal: returnIt, // <- cap + // 19.1.2.5 / 15.2.3.9 Object.freeze(O) + freeze: returnIt, // <- cap + // 19.1.2.15 / 15.2.3.10 Object.preventExtensions(O) + preventExtensions: returnIt, // <- cap + // 19.1.2.13 / 15.2.3.11 Object.isSealed(O) + isSealed: isPrimitive, // <- cap + // 19.1.2.12 / 15.2.3.12 Object.isFrozen(O) + isFrozen: isFrozen = isFrozen || isPrimitive, // <- cap + // 19.1.2.11 / 15.2.3.13 Object.isExtensible(O) + isExtensible: isObject // <- cap + }); + + // 19.2.3.2 / 15.3.4.5 Function.prototype.bind(thisArg, args...) + $define(PROTO, FUNCTION, { + bind: function(that /*, args... */){ + var fn = assertFunction(this) + , partArgs = slice.call(arguments, 1); + function bound(/* args... */){ + var args = partArgs.concat(slice.call(arguments)); + return this instanceof bound ? construct(fn, args) : invoke(fn, args, that); + } + return bound; + } + }); + + // Fix for not array-like ES3 string + function arrayMethodFix(fn){ + return function(){ + return fn.apply(ES5Object(this), arguments); + } + } + if(!(0 in Object(DOT) && DOT[0] == DOT)){ + ES5Object = function(it){ + return cof(it) == STRING ? it.split('') : Object(it); + } + slice = arrayMethodFix(slice); + } + $define(PROTO + FORCED * (ES5Object != Object), ARRAY, { + slice: slice, + join: arrayMethodFix(ArrayProto.join) + }); + + // 22.1.2.2 / 15.4.3.2 Array.isArray(arg) + $define(STATIC, ARRAY, { + isArray: function(arg){ + return cof(arg) == ARRAY + } + }); + function createArrayReduce(isRight){ + return function(callbackfn, memo){ + assertFunction(callbackfn); + var O = toObject(this) + , length = toLength(O.length) + , index = isRight ? length - 1 : 0 + , i = isRight ? -1 : 1; + if(2 > arguments.length)for(;;){ + if(index in O){ + memo = O[index]; + index += i; + break; + } + index += i; + assert(isRight ? index >= 0 : length > index, REDUCE_ERROR); + } + for(;isRight ? index >= 0 : length > index; index += i)if(index in O){ + memo = callbackfn(memo, O[index], index, this); + } + return memo; + } + } + $define(PROTO, ARRAY, { + // 22.1.3.10 / 15.4.4.18 Array.prototype.forEach(callbackfn [, thisArg]) + forEach: forEach = forEach || createArrayMethod(0), + // 22.1.3.15 / 15.4.4.19 Array.prototype.map(callbackfn [, thisArg]) + map: createArrayMethod(1), + // 22.1.3.7 / 15.4.4.20 Array.prototype.filter(callbackfn [, thisArg]) + filter: createArrayMethod(2), + // 22.1.3.23 / 15.4.4.17 Array.prototype.some(callbackfn [, thisArg]) + some: createArrayMethod(3), + // 22.1.3.5 / 15.4.4.16 Array.prototype.every(callbackfn [, thisArg]) + every: createArrayMethod(4), + // 22.1.3.18 / 15.4.4.21 Array.prototype.reduce(callbackfn [, initialValue]) + reduce: createArrayReduce(false), + // 22.1.3.19 / 15.4.4.22 Array.prototype.reduceRight(callbackfn [, initialValue]) + reduceRight: createArrayReduce(true), + // 22.1.3.11 / 15.4.4.14 Array.prototype.indexOf(searchElement [, fromIndex]) + indexOf: indexOf = indexOf || createArrayContains(false), + // 22.1.3.14 / 15.4.4.15 Array.prototype.lastIndexOf(searchElement [, fromIndex]) + lastIndexOf: function(el, fromIndex /* = @[*-1] */){ + var O = toObject(this) + , length = toLength(O.length) + , index = length - 1; + if(arguments.length > 1)index = min(index, toInteger(fromIndex)); + if(index < 0)index = toLength(length + index); + for(;index >= 0; index--)if(index in O)if(O[index] === el)return index; + return -1; + } + }); + + // 21.1.3.25 / 15.5.4.20 String.prototype.trim() + $define(PROTO, STRING, {trim: createReplacer(/^\s*([\s\S]*\S)?\s*$/, '$1')}); + + // 20.3.3.1 / 15.9.4.4 Date.now() + $define(STATIC, DATE, {now: function(){ + return +new Date; + }}); + + if(_classof(function(){return arguments}()) == OBJECT)classof = function(it){ + var cof = _classof(it); + return cof == OBJECT && isFunction(it.callee) ? ARGUMENTS : cof; + } +}('propertyIsEnumerable', function(){}, classof, safeSymbol(PROTOTYPE)); + +/****************************************************************************** + * Module : es6.symbol * + ******************************************************************************/ + +// ECMAScript 6 symbols shim +!function(TAG, SymbolRegistry, AllSymbols, setter){ + // 19.4.1.1 Symbol([description]) + if(!isNative(Symbol)){ + Symbol = function(description){ + assert(!(this instanceof Symbol), SYMBOL + ' is not a ' + CONSTRUCTOR); + var tag = uid(description) + , sym = set(create(Symbol[PROTOTYPE]), TAG, tag); + AllSymbols[tag] = sym; + DESC && setter && defineProperty(ObjectProto, tag, { + configurable: true, + set: function(value){ + hidden(this, tag, value); + } + }); + return sym; + } + hidden(Symbol[PROTOTYPE], TO_STRING, function(){ + return this[TAG]; + }); + } + $define(GLOBAL + WRAP, {Symbol: Symbol}); + + var symbolStatics = { + // 19.4.2.1 Symbol.for(key) + 'for': function(key){ + return has(SymbolRegistry, key += '') + ? SymbolRegistry[key] + : SymbolRegistry[key] = Symbol(key); + }, + // 19.4.2.4 Symbol.iterator + iterator: SYMBOL_ITERATOR, + // 19.4.2.5 Symbol.keyFor(sym) + keyFor: part.call(keyOf, SymbolRegistry), + // 19.4.2.10 Symbol.species + species: SYMBOL_SPECIES, + // 19.4.2.13 Symbol.toStringTag + toStringTag: SYMBOL_TAG = getWellKnownSymbol(TO_STRING_TAG, true), + // 19.4.2.14 Symbol.unscopables + unscopables: SYMBOL_UNSCOPABLES, + pure: safeSymbol, + set: set, + useSetter: function(){setter = true}, + useSimple: function(){setter = false} + }; + // 19.4.2.2 Symbol.hasInstance + // 19.4.2.3 Symbol.isConcatSpreadable + // 19.4.2.6 Symbol.match + // 19.4.2.8 Symbol.replace + // 19.4.2.9 Symbol.search + // 19.4.2.11 Symbol.split + // 19.4.2.12 Symbol.toPrimitive + forEach.call(array('hasInstance,isConcatSpreadable,match,replace,search,split,toPrimitive'), + function(it){ + symbolStatics[it] = getWellKnownSymbol(it); + } + ); + $define(STATIC, SYMBOL, symbolStatics); + + setToStringTag(Symbol, SYMBOL); + + $define(STATIC + FORCED * !isNative(Symbol), OBJECT, { + // 19.1.2.7 Object.getOwnPropertyNames(O) + getOwnPropertyNames: function(it){ + var names = getNames(toObject(it)), result = [], key, i = 0; + while(names.length > i)has(AllSymbols, key = names[i++]) || result.push(key); + return result; + }, + // 19.1.2.8 Object.getOwnPropertySymbols(O) + getOwnPropertySymbols: function(it){ + var names = getNames(toObject(it)), result = [], key, i = 0; + while(names.length > i)has(AllSymbols, key = names[i++]) && result.push(AllSymbols[key]); + return result; + } + }); +}(safeSymbol('tag'), {}, {}, true); + +/****************************************************************************** + * Module : es6.object * + ******************************************************************************/ + +!function(tmp){ + var objectStatic = { + // 19.1.3.1 Object.assign(target, source) + assign: assign, + // 19.1.3.10 Object.is(value1, value2) + is: function(x, y){ + return x === y ? x !== 0 || 1 / x === 1 / y : x != x && y != y; + } + }; + // 19.1.3.19 Object.setPrototypeOf(O, proto) + // Works with __proto__ only. Old v8 can't works with null proto objects. + '__proto__' in ObjectProto && function(buggy, set){ + try { + set = ctx(call, getOwnDescriptor(ObjectProto, '__proto__').set, 2); + set({}, ArrayProto); + } catch(e){ buggy = true } + objectStatic.setPrototypeOf = setPrototypeOf = setPrototypeOf || function(O, proto){ + assertObject(O); + assert(proto === null || isObject(proto), proto, ": can't set as prototype!"); + if(buggy)O.__proto__ = proto; + else set(O, proto); + return O; + } + }(); + $define(STATIC, OBJECT, objectStatic); + + if(framework){ + // 19.1.3.6 Object.prototype.toString() + tmp[SYMBOL_TAG] = DOT; + if(cof(tmp) != DOT)hidden(ObjectProto, TO_STRING, function(){ + return '[object ' + classof(this) + ']'; + }); + } + + // 20.2.1.9 Math[@@toStringTag] + setToStringTag(Math, MATH, true); + // 24.3.3 JSON[@@toStringTag] + setToStringTag(global.JSON, 'JSON', true); +}({}); + +/****************************************************************************** + * Module : es6.object.statics-accept-primitives * + ******************************************************************************/ + +!function(){ + // Object static methods accept primitives + function wrapObjectMethod(key, MODE){ + var fn = Object[key] + , exp = core[OBJECT][key] + , f = 0 + , o = {}; + if(!exp || isNative(exp)){ + o[key] = MODE == 1 ? function(it){ + return isObject(it) ? fn(it) : it; + } : MODE == 2 ? function(it){ + return isObject(it) ? fn(it) : true; + } : MODE == 3 ? function(it){ + return isObject(it) ? fn(it) : false; + } : MODE == 4 ? function(it, key){ + return fn(toObject(it), key); + } : function(it){ + return fn(toObject(it)); + }; + try { fn(DOT) } + catch(e){ f = 1 } + $define(STATIC + FORCED * f, OBJECT, o); + } + } + wrapObjectMethod('freeze', 1); + wrapObjectMethod('seal', 1); + wrapObjectMethod('preventExtensions', 1); + wrapObjectMethod('isFrozen', 2); + wrapObjectMethod('isSealed', 2); + wrapObjectMethod('isExtensible', 3); + wrapObjectMethod('getOwnPropertyDescriptor', 4); + wrapObjectMethod('getPrototypeOf'); + wrapObjectMethod('keys'); + wrapObjectMethod('getOwnPropertyNames'); +}(); + +/****************************************************************************** + * Module : es6.function * + ******************************************************************************/ + +!function(NAME){ + // 19.2.4.2 name + NAME in FunctionProto || defineProperty(FunctionProto, NAME, { + configurable: true, + get: function(){ + var match = String(this).match(/^\s*function ([^ (]*)/) + , name = match ? match[1] : ''; + has(this, NAME) || defineProperty(this, NAME, descriptor(5, name)); + return name; + }, + set: function(value){ + has(this, NAME) || defineProperty(this, NAME, descriptor(0, value)); + } + }); +}('name'); + +/****************************************************************************** + * Module : es6.number * + ******************************************************************************/ + +!function(isInteger){ + $define(STATIC, NUMBER, { + // 20.1.2.1 Number.EPSILON + EPSILON: pow(2, -52), + // 20.1.2.2 Number.isFinite(number) + isFinite: function(it){ + return typeof it == 'number' && isFinite(it); + }, + // 20.1.2.3 Number.isInteger(number) + isInteger: isInteger, + // 20.1.2.4 Number.isNaN(number) + isNaN: sameNaN, + // 20.1.2.5 Number.isSafeInteger(number) + isSafeInteger: function(number){ + return isInteger(number) && abs(number) <= MAX_SAFE_INTEGER; + }, + // 20.1.2.6 Number.MAX_SAFE_INTEGER + MAX_SAFE_INTEGER: MAX_SAFE_INTEGER, + // 20.1.2.10 Number.MIN_SAFE_INTEGER + MIN_SAFE_INTEGER: -MAX_SAFE_INTEGER, + // 20.1.2.12 Number.parseFloat(string) + parseFloat: parseFloat, + // 20.1.2.13 Number.parseInt(string, radix) + parseInt: parseInt + }); +// 20.1.2.3 Number.isInteger(number) +}(Number.isInteger || function(it){ + return !isObject(it) && isFinite(it) && floor(it) === it; +}); + +/****************************************************************************** + * Module : es6.math * + ******************************************************************************/ + +// ECMAScript 6 shim +!function(){ + // 20.2.2.28 Math.sign(x) + var E = Math.E + , exp = Math.exp + , log = Math.log + , sqrt = Math.sqrt + , sign = Math.sign || function(x){ + return (x = +x) == 0 || x != x ? x : x < 0 ? -1 : 1; + }; + + // 20.2.2.5 Math.asinh(x) + function asinh(x){ + return !isFinite(x = +x) || x == 0 ? x : x < 0 ? -asinh(-x) : log(x + sqrt(x * x + 1)); + } + // 20.2.2.14 Math.expm1(x) + function expm1(x){ + return (x = +x) == 0 ? x : x > -1e-6 && x < 1e-6 ? x + x * x / 2 : exp(x) - 1; + } + + $define(STATIC, MATH, { + // 20.2.2.3 Math.acosh(x) + acosh: function(x){ + return (x = +x) < 1 ? NaN : isFinite(x) ? log(x / E + sqrt(x + 1) * sqrt(x - 1) / E) + 1 : x; + }, + // 20.2.2.5 Math.asinh(x) + asinh: asinh, + // 20.2.2.7 Math.atanh(x) + atanh: function(x){ + return (x = +x) == 0 ? x : log((1 + x) / (1 - x)) / 2; + }, + // 20.2.2.9 Math.cbrt(x) + cbrt: function(x){ + return sign(x = +x) * pow(abs(x), 1 / 3); + }, + // 20.2.2.11 Math.clz32(x) + clz32: function(x){ + return (x >>>= 0) ? 32 - x[TO_STRING](2).length : 32; + }, + // 20.2.2.12 Math.cosh(x) + cosh: function(x){ + return (exp(x = +x) + exp(-x)) / 2; + }, + // 20.2.2.14 Math.expm1(x) + expm1: expm1, + // 20.2.2.16 Math.fround(x) + // TODO: fallback for IE9- + fround: function(x){ + return new Float32Array([x])[0]; + }, + // 20.2.2.17 Math.hypot([value1[, value2[, … ]]]) + hypot: function(value1, value2){ + var sum = 0 + , len1 = arguments.length + , len2 = len1 + , args = Array(len1) + , larg = -Infinity + , arg; + while(len1--){ + arg = args[len1] = +arguments[len1]; + if(arg == Infinity || arg == -Infinity)return Infinity; + if(arg > larg)larg = arg; + } + larg = arg || 1; + while(len2--)sum += pow(args[len2] / larg, 2); + return larg * sqrt(sum); + }, + // 20.2.2.18 Math.imul(x, y) + imul: function(x, y){ + var UInt16 = 0xffff + , xn = +x + , yn = +y + , xl = UInt16 & xn + , yl = UInt16 & yn; + return 0 | xl * yl + ((UInt16 & xn >>> 16) * yl + xl * (UInt16 & yn >>> 16) << 16 >>> 0); + }, + // 20.2.2.20 Math.log1p(x) + log1p: function(x){ + return (x = +x) > -1e-8 && x < 1e-8 ? x - x * x / 2 : log(1 + x); + }, + // 20.2.2.21 Math.log10(x) + log10: function(x){ + return log(x) / Math.LN10; + }, + // 20.2.2.22 Math.log2(x) + log2: function(x){ + return log(x) / Math.LN2; + }, + // 20.2.2.28 Math.sign(x) + sign: sign, + // 20.2.2.30 Math.sinh(x) + sinh: function(x){ + return (abs(x = +x) < 1) ? (expm1(x) - expm1(-x)) / 2 : (exp(x - 1) - exp(-x - 1)) * (E / 2); + }, + // 20.2.2.33 Math.tanh(x) + tanh: function(x){ + var a = expm1(x = +x) + , b = expm1(-x); + return a == Infinity ? 1 : b == Infinity ? -1 : (a - b) / (exp(x) + exp(-x)); + }, + // 20.2.2.34 Math.trunc(x) + trunc: trunc + }); +}(); + +/****************************************************************************** + * Module : es6.string * + ******************************************************************************/ + +!function(RangeError, fromCharCode){ + function assertNotRegExp(it){ + if(cof(it) == REGEXP)throw TypeError(); + } + + $define(STATIC, STRING, { + // 21.1.2.2 String.fromCodePoint(...codePoints) + fromCodePoint: function(x){ + var res = [] + , len = arguments.length + , i = 0 + , code + while(len > i){ + code = +arguments[i++]; + if(toIndex(code, 0x10ffff) !== code)throw RangeError(code + ' is not a valid code point'); + res.push(code < 0x10000 + ? fromCharCode(code) + : fromCharCode(((code -= 0x10000) >> 10) + 0xd800, code % 0x400 + 0xdc00) + ); + } return res.join(''); + }, + // 21.1.2.4 String.raw(callSite, ...substitutions) + raw: function(callSite){ + var raw = toObject(callSite.raw) + , len = toLength(raw.length) + , sln = arguments.length + , res = [] + , i = 0; + while(len > i){ + res.push(String(raw[i++])); + if(i < sln)res.push(String(arguments[i])); + } return res.join(''); + } + }); + + $define(PROTO, STRING, { + // 21.1.3.3 String.prototype.codePointAt(pos) + codePointAt: createPointAt(false), + // 21.1.3.6 String.prototype.endsWith(searchString [, endPosition]) + endsWith: function(searchString /*, endPosition = @length */){ + assertNotRegExp(searchString); + var that = String(assertDefined(this)) + , endPosition = arguments[1] + , len = toLength(that.length) + , end = endPosition === undefined ? len : min(toLength(endPosition), len); + searchString += ''; + return that.slice(end - searchString.length, end) === searchString; + }, + // 21.1.3.7 String.prototype.includes(searchString, position = 0) + includes: function(searchString /*, position = 0 */){ + assertNotRegExp(searchString); + return !!~String(assertDefined(this)).indexOf(searchString, arguments[1]); + }, + // 21.1.3.13 String.prototype.repeat(count) + repeat: function(count){ + var str = String(assertDefined(this)) + , res = '' + , n = toInteger(count); + if(0 > n || n == Infinity)throw RangeError("Count can't be negative"); + for(;n > 0; (n >>>= 1) && (str += str))if(n & 1)res += str; + return res; + }, + // 21.1.3.18 String.prototype.startsWith(searchString [, position ]) + startsWith: function(searchString /*, position = 0 */){ + assertNotRegExp(searchString); + var that = String(assertDefined(this)) + , index = toLength(min(arguments[1], that.length)); + searchString += ''; + return that.slice(index, index + searchString.length) === searchString; + } + }); +}(global.RangeError, String.fromCharCode); + +/****************************************************************************** + * Module : es6.array * + ******************************************************************************/ + +!function(){ + $define(STATIC, ARRAY, { + // 22.1.2.1 Array.from(arrayLike, mapfn = undefined, thisArg = undefined) + from: function(arrayLike/*, mapfn = undefined, thisArg = undefined*/){ + var O = Object(assertDefined(arrayLike)) + , result = new (generic(this, Array)) + , mapfn = arguments[1] + , that = arguments[2] + , mapping = mapfn !== undefined + , f = mapping ? ctx(mapfn, that, 2) : undefined + , index = 0 + , length; + if(isIterable(O))for(var iter = getIterator(O), step; !(step = iter.next()).done; index++){ + result[index] = mapping ? f(step.value, index) : step.value; + } else for(length = toLength(O.length); length > index; index++){ + result[index] = mapping ? f(O[index], index) : O[index]; + } + result.length = index; + return result; + }, + // 22.1.2.3 Array.of( ...items) + of: function(/* ...args */){ + var index = 0 + , length = arguments.length + , result = new (generic(this, Array))(length); + while(length > index)result[index] = arguments[index++]; + result.length = length; + return result; + } + }); + + $define(PROTO, ARRAY, { + // 22.1.3.3 Array.prototype.copyWithin(target, start, end = this.length) + copyWithin: function(target /* = 0 */, start /* = 0, end = @length */){ + var O = Object(assertDefined(this)) + , len = toLength(O.length) + , to = toIndex(target, len) + , from = toIndex(start, len) + , end = arguments[2] + , fin = end === undefined ? len : toIndex(end, len) + , count = min(fin - from, len - to) + , inc = 1; + if(from < to && to < from + count){ + inc = -1; + from = from + count - 1; + to = to + count - 1; + } + while(count-- > 0){ + if(from in O)O[to] = O[from]; + else delete O[to]; + to += inc; + from += inc; + } return O; + }, + // 22.1.3.6 Array.prototype.fill(value, start = 0, end = this.length) + fill: function(value /*, start = 0, end = @length */){ + var O = Object(assertDefined(this)) + , length = toLength(O.length) + , index = toIndex(arguments[1], length) + , end = arguments[2] + , endPos = end === undefined ? length : toIndex(end, length); + while(endPos > index)O[index++] = value; + return O; + }, + // 22.1.3.8 Array.prototype.find(predicate, thisArg = undefined) + find: createArrayMethod(5), + // 22.1.3.9 Array.prototype.findIndex(predicate, thisArg = undefined) + findIndex: createArrayMethod(6) + }); + + if(framework){ + // 22.1.3.31 Array.prototype[@@unscopables] + forEach.call(array('find,findIndex,fill,copyWithin,entries,keys,values'), function(it){ + ArrayUnscopables[it] = true; + }); + SYMBOL_UNSCOPABLES in ArrayProto || hidden(ArrayProto, SYMBOL_UNSCOPABLES, ArrayUnscopables); + } + + setSpecies(Array); +}(); + +/****************************************************************************** + * Module : es6.iterators * + ******************************************************************************/ + +!function(at){ + // 22.1.3.4 Array.prototype.entries() + // 22.1.3.13 Array.prototype.keys() + // 22.1.3.29 Array.prototype.values() + // 22.1.3.30 Array.prototype[@@iterator]() + defineStdIterators(Array, ARRAY, function(iterated, kind){ + set(this, ITER, {o: toObject(iterated), i: 0, k: kind}); + // 22.1.5.2.1 %ArrayIteratorPrototype%.next() + }, function(){ + var iter = this[ITER] + , O = iter.o + , kind = iter.k + , index = iter.i++; + if(!O || index >= O.length)return iter.o = undefined, iterResult(1); + if(kind == KEY) return iterResult(0, index); + if(kind == VALUE)return iterResult(0, O[index]); + return iterResult(0, [index, O[index]]); + }, VALUE); + + // argumentsList[@@iterator] is %ArrayProto_values% (9.4.4.6, 9.4.4.7) + Iterators[ARGUMENTS] = Iterators[ARRAY]; + + // 21.1.3.27 String.prototype[@@iterator]() + defineStdIterators(String, STRING, function(iterated){ + set(this, ITER, {o: String(iterated), i: 0}); + // 21.1.5.2.1 %StringIteratorPrototype%.next() + }, function(){ + var iter = this[ITER] + , O = iter.o + , index = iter.i + , point; + if(index >= O.length)return iterResult(1); + point = at.call(O, index); + iter.i += point.length; + return iterResult(0, point); + }); +}(createPointAt(true)); + +/****************************************************************************** + * Module : es6.regexp * + ******************************************************************************/ + +!function(RegExpProto, _RegExp){ + function assertRegExpWrapper(fn){ + return function(){ + assert(cof(this) === REGEXP); + return fn(this); + } + } + + // RegExp allows a regex with flags as the pattern + if(DESC && !function(){try{return RegExp(/a/g, 'i') == '/a/i'}catch(e){}}()){ + RegExp = function RegExp(pattern, flags){ + return new _RegExp(cof(pattern) == REGEXP && flags !== undefined + ? pattern.source : pattern, flags); + } + forEach.call(getNames(_RegExp), function(key){ + key in RegExp || defineProperty(RegExp, key, { + configurable: true, + get: function(){ return _RegExp[key] }, + set: function(it){ _RegExp[key] = it } + }); + }); + RegExpProto[CONSTRUCTOR] = RegExp; + RegExp[PROTOTYPE] = RegExpProto; + hidden(global, REGEXP, RegExp); + } + + // 21.2.5.3 get RegExp.prototype.flags() + if(/./g.flags != 'g')defineProperty(RegExpProto, 'flags', { + configurable: true, + get: assertRegExpWrapper(createReplacer(/^.*\/(\w*)$/, '$1', true)) + }); + + // 21.2.5.12 get RegExp.prototype.sticky() + // 21.2.5.15 get RegExp.prototype.unicode() + forEach.call(array('sticky,unicode'), function(key){ + key in /./ || defineProperty(RegExpProto, key, DESC ? { + configurable: true, + get: assertRegExpWrapper(function(){ + return false; + }) + } : descriptor(5, false)); + }); + + setSpecies(RegExp); +}(RegExp[PROTOTYPE], RegExp); + +/****************************************************************************** + * Module : web.immediate * + ******************************************************************************/ + +// setImmediate shim +// Node.js 0.9+ & IE10+ has setImmediate, else: +isFunction(setImmediate) && isFunction(clearImmediate) || function(ONREADYSTATECHANGE){ + var postMessage = global.postMessage + , addEventListener = global.addEventListener + , MessageChannel = global.MessageChannel + , counter = 0 + , queue = {} + , defer, channel, port; + setImmediate = function(fn){ + var args = [], i = 1; + while(arguments.length > i)args.push(arguments[i++]); + queue[++counter] = function(){ + invoke(isFunction(fn) ? fn : Function(fn), args); + } + defer(counter); + return counter; + } + clearImmediate = function(id){ + delete queue[id]; + } + function run(id){ + if(has(queue, id)){ + var fn = queue[id]; + delete queue[id]; + fn(); + } + } + function listner(event){ + run(event.data); + } + // Node.js 0.8- + if(NODE){ + defer = function(id){ + nextTick(part.call(run, id)); + } + // Modern browsers, skip implementation for WebWorkers + // IE8 has postMessage, but it's sync & typeof its postMessage is object + } else if(addEventListener && isFunction(postMessage) && !global.importScripts){ + defer = function(id){ + postMessage(id, '*'); + } + addEventListener('message', listner, false); + // WebWorkers + } else if(isFunction(MessageChannel)){ + channel = new MessageChannel; + port = channel.port2; + channel.port1.onmessage = listner; + defer = ctx(port.postMessage, port, 1); + // IE8- + } else if(document && ONREADYSTATECHANGE in document[CREATE_ELEMENT]('script')){ + defer = function(id){ + html.appendChild(document[CREATE_ELEMENT]('script'))[ONREADYSTATECHANGE] = function(){ + html.removeChild(this); + run(id); + } + } + // Rest old browsers + } else { + defer = function(id){ + setTimeout(run, 0, id); + } + } +}('onreadystatechange'); +$define(GLOBAL + BIND, { + setImmediate: setImmediate, + clearImmediate: clearImmediate +}); + +/****************************************************************************** + * Module : es6.promise * + ******************************************************************************/ + +// ES6 promises shim +// Based on https://github.com/getify/native-promise-only/ +!function(Promise, test){ + isFunction(Promise) && isFunction(Promise.resolve) + && Promise.resolve(test = new Promise(function(){})) == test + || function(asap, DEF){ + function isThenable(o){ + var then; + if(isObject(o))then = o.then; + return isFunction(then) ? then : false; + } + function notify(def){ + var chain = def.chain; + chain.length && asap(function(){ + var msg = def.msg + , ok = def.state == 1 + , i = 0; + while(chain.length > i)!function(react){ + var cb = ok ? react.ok : react.fail + , ret, then; + try { + if(cb){ + ret = cb === true ? msg : cb(msg); + if(ret === react.P){ + react.rej(TypeError(PROMISE + '-chain cycle')); + } else if(then = isThenable(ret)){ + then.call(ret, react.res, react.rej); + } else react.res(ret); + } else react.rej(msg); + } catch(err){ + react.rej(err); + } + }(chain[i++]); + chain.length = 0; + }); + } + function resolve(msg){ + var def = this + , then, wrapper; + if(def.done)return; + def.done = true; + def = def.def || def; // unwrap + try { + if(then = isThenable(msg)){ + wrapper = {def: def, done: false}; // wrap + then.call(msg, ctx(resolve, wrapper, 1), ctx(reject, wrapper, 1)); + } else { + def.msg = msg; + def.state = 1; + notify(def); + } + } catch(err){ + reject.call(wrapper || {def: def, done: false}, err); // wrap + } + } + function reject(msg){ + var def = this; + if(def.done)return; + def.done = true; + def = def.def || def; // unwrap + def.msg = msg; + def.state = 2; + notify(def); + } + function getConstructor(C){ + var S = assertObject(C)[SYMBOL_SPECIES]; + return S != undefined ? S : C; + } + // 25.4.3.1 Promise(executor) + Promise = function(executor){ + assertFunction(executor); + assertInstance(this, Promise, PROMISE); + var def = {chain: [], state: 0, done: false, msg: undefined}; + hidden(this, DEF, def); + try { + executor(ctx(resolve, def, 1), ctx(reject, def, 1)); + } catch(err){ + reject.call(def, err); + } + } + assignHidden(Promise[PROTOTYPE], { + // 25.4.5.3 Promise.prototype.then(onFulfilled, onRejected) + then: function(onFulfilled, onRejected){ + var S = assertObject(assertObject(this)[CONSTRUCTOR])[SYMBOL_SPECIES]; + var react = { + ok: isFunction(onFulfilled) ? onFulfilled : true, + fail: isFunction(onRejected) ? onRejected : false + } , P = react.P = new (S != undefined ? S : Promise)(function(resolve, reject){ + react.res = assertFunction(resolve); + react.rej = assertFunction(reject); + }), def = this[DEF]; + def.chain.push(react); + def.state && notify(def); + return P; + }, + // 25.4.5.1 Promise.prototype.catch(onRejected) + 'catch': function(onRejected){ + return this.then(undefined, onRejected); + } + }); + assignHidden(Promise, { + // 25.4.4.1 Promise.all(iterable) + all: function(iterable){ + var Promise = getConstructor(this) + , values = []; + return new Promise(function(resolve, reject){ + forOf(iterable, false, push, values); + var remaining = values.length + , results = Array(remaining); + if(remaining)forEach.call(values, function(promise, index){ + Promise.resolve(promise).then(function(value){ + results[index] = value; + --remaining || resolve(results); + }, reject); + }); + else resolve(results); + }); + }, + // 25.4.4.4 Promise.race(iterable) + race: function(iterable){ + var Promise = getConstructor(this); + return new Promise(function(resolve, reject){ + forOf(iterable, false, function(promise){ + Promise.resolve(promise).then(resolve, reject); + }); + }); + }, + // 25.4.4.5 Promise.reject(r) + reject: function(r){ + return new (getConstructor(this))(function(resolve, reject){ + reject(r); + }); + }, + // 25.4.4.6 Promise.resolve(x) + resolve: function(x){ + return isObject(x) && DEF in x && getPrototypeOf(x) === this[PROTOTYPE] + ? x : new (getConstructor(this))(function(resolve, reject){ + resolve(x); + }); + } + }); + }(nextTick || setImmediate, safeSymbol('def')); + setToStringTag(Promise, PROMISE); + setSpecies(Promise); + $define(GLOBAL + FORCED * !isNative(Promise), {Promise: Promise}); +}(global[PROMISE]); + +/****************************************************************************** + * Module : es6.collections * + ******************************************************************************/ + +// ECMAScript 6 collections shim +!function(){ + var UID = safeSymbol('uid') + , O1 = safeSymbol('O1') + , WEAK = safeSymbol('weak') + , LEAK = safeSymbol('leak') + , LAST = safeSymbol('last') + , FIRST = safeSymbol('first') + , SIZE = DESC ? safeSymbol('size') : 'size' + , uid = 0 + , tmp = {}; + + function getCollection(C, NAME, methods, commonMethods, isMap, isWeak){ + var ADDER = isMap ? 'set' : 'add' + , proto = C && C[PROTOTYPE] + , O = {}; + function initFromIterable(that, iterable){ + if(iterable != undefined)forOf(iterable, isMap, that[ADDER], that); + return that; + } + function fixSVZ(key, chain){ + var method = proto[key]; + if(framework)proto[key] = function(a, b){ + var result = method.call(this, a === 0 ? 0 : a, b); + return chain ? this : result; + }; + } + if(!isNative(C) || !(isWeak || (!BUGGY_ITERATORS && has(proto, FOR_EACH) && has(proto, 'entries')))){ + // create collection constructor + C = isWeak + ? function(iterable){ + assertInstance(this, C, NAME); + set(this, UID, uid++); + initFromIterable(this, iterable); + } + : function(iterable){ + var that = this; + assertInstance(that, C, NAME); + set(that, O1, create(null)); + set(that, SIZE, 0); + set(that, LAST, undefined); + set(that, FIRST, undefined); + initFromIterable(that, iterable); + }; + assignHidden(assignHidden(C[PROTOTYPE], methods), commonMethods); + isWeak || defineProperty(C[PROTOTYPE], 'size', {get: function(){ + return assertDefined(this[SIZE]); + }}); + } else { + var Native = C + , inst = new C + , chain = inst[ADDER](isWeak ? {} : -0, 1) + , buggyZero; + // wrap to init collections from iterable + if(!NATIVE_ITERATORS || !C.length){ + C = function(iterable){ + assertInstance(this, C, NAME); + return initFromIterable(new Native, iterable); + } + C[PROTOTYPE] = proto; + if(framework)proto[CONSTRUCTOR] = C; + } + isWeak || inst[FOR_EACH](function(val, key){ + buggyZero = 1 / key === -Infinity; + }); + // fix converting -0 key to +0 + if(buggyZero){ + fixSVZ('delete'); + fixSVZ('has'); + isMap && fixSVZ('get'); + } + // + fix .add & .set for chaining + if(buggyZero || chain !== inst)fixSVZ(ADDER, true); + } + setToStringTag(C, NAME); + setSpecies(C); + + O[NAME] = C; + $define(GLOBAL + WRAP + FORCED * !isNative(C), O); + + // add .keys, .values, .entries, [@@iterator] + // 23.1.3.4, 23.1.3.8, 23.1.3.11, 23.1.3.12, 23.2.3.5, 23.2.3.8, 23.2.3.10, 23.2.3.11 + isWeak || defineStdIterators(C, NAME, function(iterated, kind){ + set(this, ITER, {o: iterated, k: kind}); + }, function(){ + var iter = this[ITER] + , kind = iter.k + , entry = iter.l; + // revert to the last existing entry + while(entry && entry.r)entry = entry.p; + // get next entry + if(!iter.o || !(iter.l = entry = entry ? entry.n : iter.o[FIRST])){ + // or finish the iteration + return iter.o = undefined, iterResult(1); + } + // return step by kind + if(kind == KEY) return iterResult(0, entry.k); + if(kind == VALUE)return iterResult(0, entry.v); + return iterResult(0, [entry.k, entry.v]); + }, isMap ? KEY+VALUE : VALUE, !isMap); + + return C; + } + + function fastKey(it, create){ + // return primitive with prefix + if(!isObject(it))return (typeof it == 'string' ? 'S' : 'P') + it; + // can't set id to frozen object + if(isFrozen(it))return 'F'; + if(!has(it, UID)){ + // not necessary to add id + if(!create)return 'E'; + // add missing object id + hidden(it, UID, ++uid); + // return object id with prefix + } return 'O' + it[UID]; + } + function getEntry(that, key){ + // fast case + var index = fastKey(key), entry; + if(index != 'F')return that[O1][index]; + // frozen object case + for(entry = that[FIRST]; entry; entry = entry.n){ + if(entry.k == key)return entry; + } + } + function def(that, key, value){ + var entry = getEntry(that, key) + , prev, index; + // change existing entry + if(entry)entry.v = value; + // create new entry + else { + that[LAST] = entry = { + i: index = fastKey(key, true), // <- index + k: key, // <- key + v: value, // <- value + p: prev = that[LAST], // <- previous entry + n: undefined, // <- next entry + r: false // <- removed + }; + if(!that[FIRST])that[FIRST] = entry; + if(prev)prev.n = entry; + that[SIZE]++; + // add to index + if(index != 'F')that[O1][index] = entry; + } return that; + } + + var collectionMethods = { + // 23.1.3.1 Map.prototype.clear() + // 23.2.3.2 Set.prototype.clear() + clear: function(){ + for(var that = this, data = that[O1], entry = that[FIRST]; entry; entry = entry.n){ + entry.r = true; + entry.p = entry.n = undefined; + delete data[entry.i]; + } + that[FIRST] = that[LAST] = undefined; + that[SIZE] = 0; + }, + // 23.1.3.3 Map.prototype.delete(key) + // 23.2.3.4 Set.prototype.delete(value) + 'delete': function(key){ + var that = this + , entry = getEntry(that, key); + if(entry){ + var next = entry.n + , prev = entry.p; + delete that[O1][entry.i]; + entry.r = true; + if(prev)prev.n = next; + if(next)next.p = prev; + if(that[FIRST] == entry)that[FIRST] = next; + if(that[LAST] == entry)that[LAST] = prev; + that[SIZE]--; + } return !!entry; + }, + // 23.2.3.6 Set.prototype.forEach(callbackfn, thisArg = undefined) + // 23.1.3.5 Map.prototype.forEach(callbackfn, thisArg = undefined) + forEach: function(callbackfn /*, that = undefined */){ + var f = ctx(callbackfn, arguments[1], 3) + , entry; + while(entry = entry ? entry.n : this[FIRST]){ + f(entry.v, entry.k, this); + // revert to the last existing entry + while(entry && entry.r)entry = entry.p; + } + }, + // 23.1.3.7 Map.prototype.has(key) + // 23.2.3.7 Set.prototype.has(value) + has: function(key){ + return !!getEntry(this, key); + } + } + + // 23.1 Map Objects + Map = getCollection(Map, MAP, { + // 23.1.3.6 Map.prototype.get(key) + get: function(key){ + var entry = getEntry(this, key); + return entry && entry.v; + }, + // 23.1.3.9 Map.prototype.set(key, value) + set: function(key, value){ + return def(this, key === 0 ? 0 : key, value); + } + }, collectionMethods, true); + + // 23.2 Set Objects + Set = getCollection(Set, SET, { + // 23.2.3.1 Set.prototype.add(value) + add: function(value){ + return def(this, value = value === 0 ? 0 : value, value); + } + }, collectionMethods); + + function defWeak(that, key, value){ + if(isFrozen(assertObject(key)))leakStore(that).set(key, value); + else { + has(key, WEAK) || hidden(key, WEAK, {}); + key[WEAK][that[UID]] = value; + } return that; + } + function leakStore(that){ + return that[LEAK] || hidden(that, LEAK, new Map)[LEAK]; + } + + var weakMethods = { + // 23.3.3.2 WeakMap.prototype.delete(key) + // 23.4.3.3 WeakSet.prototype.delete(value) + 'delete': function(key){ + if(!isObject(key))return false; + if(isFrozen(key))return leakStore(this)['delete'](key); + return has(key, WEAK) && has(key[WEAK], this[UID]) && delete key[WEAK][this[UID]]; + }, + // 23.3.3.4 WeakMap.prototype.has(key) + // 23.4.3.4 WeakSet.prototype.has(value) + has: function(key){ + if(!isObject(key))return false; + if(isFrozen(key))return leakStore(this).has(key); + return has(key, WEAK) && has(key[WEAK], this[UID]); + } + }; + + // 23.3 WeakMap Objects + WeakMap = getCollection(WeakMap, WEAKMAP, { + // 23.3.3.3 WeakMap.prototype.get(key) + get: function(key){ + if(isObject(key)){ + if(isFrozen(key))return leakStore(this).get(key); + if(has(key, WEAK))return key[WEAK][this[UID]]; + } + }, + // 23.3.3.5 WeakMap.prototype.set(key, value) + set: function(key, value){ + return defWeak(this, key, value); + } + }, weakMethods, true, true); + + // IE11 WeakMap frozen keys fix + if(framework && new WeakMap().set(Object.freeze(tmp), 7).get(tmp) != 7){ + forEach.call(array('delete,has,get,set'), function(key){ + var method = WeakMap[PROTOTYPE][key]; + WeakMap[PROTOTYPE][key] = function(a, b){ + // store frozen objects on leaky map + if(isObject(a) && isFrozen(a)){ + var result = leakStore(this)[key](a, b); + return key == 'set' ? this : result; + // store all the rest on native weakmap + } return method.call(this, a, b); + }; + }); + } + + // 23.4 WeakSet Objects + WeakSet = getCollection(WeakSet, WEAKSET, { + // 23.4.3.1 WeakSet.prototype.add(value) + add: function(value){ + return defWeak(this, value, true); + } + }, weakMethods, false, true); +}(); + +/****************************************************************************** + * Module : es6.reflect * + ******************************************************************************/ + +!function(){ + function Enumerate(iterated){ + var keys = [], key; + for(key in iterated)keys.push(key); + set(this, ITER, {o: iterated, a: keys, i: 0}); + } + createIterator(Enumerate, OBJECT, function(){ + var iter = this[ITER] + , keys = iter.a + , key; + do { + if(iter.i >= keys.length)return iterResult(1); + } while(!((key = keys[iter.i++]) in iter.o)); + return iterResult(0, key); + }); + + function wrap(fn){ + return function(it){ + assertObject(it); + try { + return fn.apply(undefined, arguments), true; + } catch(e){ + return false; + } + } + } + + function reflectGet(target, propertyKey/*, receiver*/){ + var receiver = arguments.length < 3 ? target : arguments[2] + , desc = getOwnDescriptor(assertObject(target), propertyKey), proto; + if(desc)return desc.get ? desc.get.call(receiver) : desc.value; + return isObject(proto = getPrototypeOf(target)) ? reflectGet(proto, propertyKey, receiver) : undefined; + } + function reflectSet(target, propertyKey, V/*, receiver*/){ + var receiver = arguments.length < 4 ? target : arguments[3] + , desc = getOwnDescriptor(assertObject(target), propertyKey), proto; + if(desc){ + if(desc.writable === false)return false; + if(desc.set)return desc.set.call(receiver, V), true; + } + if(isObject(proto = getPrototypeOf(target)))return reflectSet(proto, propertyKey, V, receiver); + desc = getOwnDescriptor(receiver, propertyKey) || descriptor(0); + desc.value = V; + return defineProperty(receiver, propertyKey, desc), true; + } + var isExtensible = Object.isExtensible || returnIt; + + var reflect = { + // 26.1.1 Reflect.apply(target, thisArgument, argumentsList) + apply: ctx(call, apply, 3), + // 26.1.2 Reflect.construct(target, argumentsList [, newTarget]) + construct: construct, + // 26.1.3 Reflect.defineProperty(target, propertyKey, attributes) + defineProperty: wrap(defineProperty), + // 26.1.4 Reflect.deleteProperty(target, propertyKey) + deleteProperty: function(target, propertyKey){ + var desc = getOwnDescriptor(assertObject(target), propertyKey); + return desc && !desc.configurable ? false : delete target[propertyKey]; + }, + // 26.1.5 Reflect.enumerate(target) + enumerate: function(target){ + return new Enumerate(assertObject(target)); + }, + // 26.1.6 Reflect.get(target, propertyKey [, receiver]) + get: reflectGet, + // 26.1.7 Reflect.getOwnPropertyDescriptor(target, propertyKey) + getOwnPropertyDescriptor: function(target, propertyKey){ + return getOwnDescriptor(assertObject(target), propertyKey); + }, + // 26.1.8 Reflect.getPrototypeOf(target) + getPrototypeOf: function(target){ + return getPrototypeOf(assertObject(target)); + }, + // 26.1.9 Reflect.has(target, propertyKey) + has: function(target, propertyKey){ + return propertyKey in target; + }, + // 26.1.10 Reflect.isExtensible(target) + isExtensible: function(target){ + return !!isExtensible(assertObject(target)); + }, + // 26.1.11 Reflect.ownKeys(target) + ownKeys: ownKeys, + // 26.1.12 Reflect.preventExtensions(target) + preventExtensions: wrap(Object.preventExtensions || returnIt), + // 26.1.13 Reflect.set(target, propertyKey, V [, receiver]) + set: reflectSet + } + // 26.1.14 Reflect.setPrototypeOf(target, proto) + if(setPrototypeOf)reflect.setPrototypeOf = function(target, proto){ + return setPrototypeOf(assertObject(target), proto), true; + }; + + $define(GLOBAL, {Reflect: {}}); + $define(STATIC, 'Reflect', reflect); +}(); + +/****************************************************************************** + * Module : es7.proposals * + ******************************************************************************/ + +!function(){ + $define(PROTO, ARRAY, { + // https://github.com/domenic/Array.prototype.includes + includes: createArrayContains(true) + }); + $define(PROTO, STRING, { + // https://github.com/mathiasbynens/String.prototype.at + at: createPointAt(true) + }); + + function createObjectToArray(isEntries){ + return function(object){ + var O = toObject(object) + , keys = getKeys(object) + , length = keys.length + , i = 0 + , result = Array(length) + , key; + if(isEntries)while(length > i)result[i] = [key = keys[i++], O[key]]; + else while(length > i)result[i] = O[keys[i++]]; + return result; + } + } + $define(STATIC, OBJECT, { + // https://github.com/rwaldron/tc39-notes/blob/master/es6/2014-04/apr-9.md#51-objectentries-objectvalues + values: createObjectToArray(false), + entries: createObjectToArray(true) + }); + $define(STATIC, REGEXP, { + // https://gist.github.com/kangax/9698100 + escape: createReplacer(/([\\\-[\]{}()*+?.,^$|])/g, '\\$1', true) + }); +}(); + +/****************************************************************************** + * Module : es7.abstract-refs * + ******************************************************************************/ + +// https://github.com/zenparsing/es-abstract-refs +!function(REFERENCE){ + REFERENCE_GET = getWellKnownSymbol(REFERENCE+'Get', true); + var REFERENCE_SET = getWellKnownSymbol(REFERENCE+SET, true) + , REFERENCE_DELETE = getWellKnownSymbol(REFERENCE+'Delete', true); + + $define(STATIC, SYMBOL, { + referenceGet: REFERENCE_GET, + referenceSet: REFERENCE_SET, + referenceDelete: REFERENCE_DELETE + }); + + hidden(FunctionProto, REFERENCE_GET, returnThis); + + function setMapMethods(Constructor){ + if(Constructor){ + var MapProto = Constructor[PROTOTYPE]; + hidden(MapProto, REFERENCE_GET, MapProto.get); + hidden(MapProto, REFERENCE_SET, MapProto.set); + hidden(MapProto, REFERENCE_DELETE, MapProto['delete']); + } + } + setMapMethods(Map); + setMapMethods(WeakMap); +}('reference'); + +/****************************************************************************** + * Module : core.dict * + ******************************************************************************/ + +!function(DICT){ + Dict = function(iterable){ + var dict = create(null); + if(iterable != undefined){ + if(isIterable(iterable)){ + for(var iter = getIterator(iterable), step, value; !(step = iter.next()).done;){ + value = step.value; + dict[value[0]] = value[1]; + } + } else assign(dict, iterable); + } + return dict; + } + Dict[PROTOTYPE] = null; + + function DictIterator(iterated, kind){ + set(this, ITER, {o: toObject(iterated), a: getKeys(iterated), i: 0, k: kind}); + } + createIterator(DictIterator, DICT, function(){ + var iter = this[ITER] + , O = iter.o + , keys = iter.a + , kind = iter.k + , key; + do { + if(iter.i >= keys.length)return iterResult(1); + } while(!has(O, key = keys[iter.i++])); + if(kind == KEY) return iterResult(0, key); + if(kind == VALUE)return iterResult(0, O[key]); + return iterResult(0, [key, O[key]]); + }); + function createDictIter(kind){ + return function(it){ + return new DictIterator(it, kind); + } + } + + /* + * 0 -> forEach + * 1 -> map + * 2 -> filter + * 3 -> some + * 4 -> every + * 5 -> find + * 6 -> findKey + * 7 -> mapPairs + */ + function createDictMethod(type){ + var isMap = type == 1 + , isEvery = type == 4; + return function(object, callbackfn, that /* = undefined */){ + var f = ctx(callbackfn, that, 3) + , O = toObject(object) + , result = isMap || type == 7 || type == 2 ? new (generic(this, Dict)) : undefined + , key, val, res; + for(key in O)if(has(O, key)){ + val = O[key]; + res = f(val, key, object); + if(type){ + if(isMap)result[key] = res; // map + else if(res)switch(type){ + case 2: result[key] = val; break // filter + case 3: return true; // some + case 5: return val; // find + case 6: return key; // findKey + case 7: result[res[0]] = res[1]; // mapPairs + } else if(isEvery)return false; // every + } + } + return type == 3 || isEvery ? isEvery : result; + } + } + function createDictReduce(isTurn){ + return function(object, mapfn, init){ + assertFunction(mapfn); + var O = toObject(object) + , keys = getKeys(O) + , length = keys.length + , i = 0 + , memo, key, result; + if(isTurn)memo = init == undefined ? new (generic(this, Dict)) : Object(init); + else if(arguments.length < 3){ + assert(length, REDUCE_ERROR); + memo = O[keys[i++]]; + } else memo = Object(init); + while(length > i)if(has(O, key = keys[i++])){ + result = mapfn(memo, O[key], key, object); + if(isTurn){ + if(result === false)break; + } else memo = result; + } + return memo; + } + } + var findKey = createDictMethod(6); + function includes(object, el){ + return (el == el ? keyOf(object, el) : findKey(object, sameNaN)) !== undefined; + } + + var dictMethods = { + keys: createDictIter(KEY), + values: createDictIter(VALUE), + entries: createDictIter(KEY+VALUE), + forEach: createDictMethod(0), + map: createDictMethod(1), + filter: createDictMethod(2), + some: createDictMethod(3), + every: createDictMethod(4), + find: createDictMethod(5), + findKey: findKey, + mapPairs:createDictMethod(7), + reduce: createDictReduce(false), + turn: createDictReduce(true), + keyOf: keyOf, + includes:includes, + // Has / get / set own property + has: has, + get: get, + set: createDefiner(0), + isDict: function(it){ + return isObject(it) && getPrototypeOf(it) === Dict[PROTOTYPE]; + } + }; + + if(REFERENCE_GET)for(var key in dictMethods)!function(fn){ + function method(){ + for(var args = [this], i = 0; i < arguments.length;)args.push(arguments[i++]); + return invoke(fn, args); + } + fn[REFERENCE_GET] = function(){ + return method; + } + }(dictMethods[key]); + + $define(GLOBAL + FORCED, {Dict: assignHidden(Dict, dictMethods)}); +}('Dict'); + +/****************************************************************************** + * Module : core.$for * + ******************************************************************************/ + +!function(ENTRIES, FN){ + function $for(iterable, entries){ + if(!(this instanceof $for))return new $for(iterable, entries); + this[ITER] = getIterator(iterable); + this[ENTRIES] = !!entries; + } + + createIterator($for, 'Wrapper', function(){ + return this[ITER].next(); + }); + var $forProto = $for[PROTOTYPE]; + setIterator($forProto, function(){ + return this[ITER]; // unwrap + }); + + function createChainIterator(next){ + function Iter(I, fn, that){ + this[ITER] = getIterator(I); + this[ENTRIES] = I[ENTRIES]; + this[FN] = ctx(fn, that, I[ENTRIES] ? 2 : 1); + } + createIterator(Iter, 'Chain', next, $forProto); + setIterator(Iter[PROTOTYPE], returnThis); // override $forProto iterator + return Iter; + } + + var MapIter = createChainIterator(function(){ + var step = this[ITER].next(); + return step.done ? step : iterResult(0, stepCall(this[FN], step.value, this[ENTRIES])); + }); + + var FilterIter = createChainIterator(function(){ + for(;;){ + var step = this[ITER].next(); + if(step.done || stepCall(this[FN], step.value, this[ENTRIES]))return step; + } + }); + + assignHidden($forProto, { + of: function(fn, that){ + forOf(this, this[ENTRIES], fn, that); + }, + array: function(fn, that){ + var result = []; + forOf(fn != undefined ? this.map(fn, that) : this, false, push, result); + return result; + }, + filter: function(fn, that){ + return new FilterIter(this, fn, that); + }, + map: function(fn, that){ + return new MapIter(this, fn, that); + } + }); + + $for.isIterable = isIterable; + $for.getIterator = getIterator; + + $define(GLOBAL + FORCED, {$for: $for}); +}('entries', safeSymbol('fn')); + +/****************************************************************************** + * Module : core.binding * + ******************************************************************************/ + +!function(_, toLocaleString){ + // Placeholder + core._ = path._ = path._ || {}; + + $define(PROTO + FORCED, FUNCTION, { + part: part, + only: function(numberArguments, that /* = @ */){ + var fn = assertFunction(this) + , n = toLength(numberArguments) + , isThat = arguments.length > 1; + return function(/* ...args */){ + var length = min(n, arguments.length) + , args = Array(length) + , i = 0; + while(length > i)args[i] = arguments[i++]; + return invoke(fn, args, isThat ? that : this); + } + } + }); + + function tie(key){ + var that = this + , bound = {}; + return hidden(that, _, function(key){ + if(key === undefined || !(key in that))return toLocaleString.call(that); + return has(bound, key) ? bound[key] : (bound[key] = ctx(that[key], that, -1)); + })[_](key); + } + + hidden(path._, TO_STRING, function(){ + return _; + }); + + hidden(ObjectProto, _, tie); + DESC || hidden(ArrayProto, _, tie); + // IE8- dirty hack - redefined toLocaleString is not enumerable +}(DESC ? uid('tie') : TO_LOCALE, ObjectProto[TO_LOCALE]); + +/****************************************************************************** + * Module : core.object * + ******************************************************************************/ + +!function(){ + function define(target, mixin){ + var keys = ownKeys(toObject(mixin)) + , length = keys.length + , i = 0, key; + while(length > i)defineProperty(target, key = keys[i++], getOwnDescriptor(mixin, key)); + return target; + }; + $define(STATIC + FORCED, OBJECT, { + isObject: isObject, + classof: classof, + define: define, + make: function(proto, mixin){ + return define(create(proto), mixin); + } + }); +}(); + +/****************************************************************************** + * Module : core.array * + ******************************************************************************/ + +$define(PROTO + FORCED, ARRAY, { + turn: function(fn, target /* = [] */){ + assertFunction(fn); + var memo = target == undefined ? [] : Object(target) + , O = ES5Object(this) + , length = toLength(O.length) + , index = 0; + while(length > index)if(fn(memo, O[index], index++, this) === false)break; + return memo; + } +}); +if(framework)ArrayUnscopables.turn = true; + +/****************************************************************************** + * Module : core.number * + ******************************************************************************/ + +!function(numberMethods){ + function NumberIterator(iterated){ + set(this, ITER, {l: toLength(iterated), i: 0}); + } + createIterator(NumberIterator, NUMBER, function(){ + var iter = this[ITER] + , i = iter.i++; + return i < iter.l ? iterResult(0, i) : iterResult(1); + }); + defineIterator(Number, NUMBER, function(){ + return new NumberIterator(this); + }); + + numberMethods.random = function(lim /* = 0 */){ + var a = +this + , b = lim == undefined ? 0 : +lim + , m = min(a, b); + return random() * (max(a, b) - m) + m; + }; + + forEach.call(array( + // ES3: + 'round,floor,ceil,abs,sin,asin,cos,acos,tan,atan,exp,sqrt,max,min,pow,atan2,' + + // ES6: + 'acosh,asinh,atanh,cbrt,clz32,cosh,expm1,hypot,imul,log1p,log10,log2,sign,sinh,tanh,trunc' + ), function(key){ + var fn = Math[key]; + if(fn)numberMethods[key] = function(/* ...args */){ + // ie9- dont support strict mode & convert `this` to object -> convert it to number + var args = [+this] + , i = 0; + while(arguments.length > i)args.push(arguments[i++]); + return invoke(fn, args); + } + } + ); + + $define(PROTO + FORCED, NUMBER, numberMethods); +}({}); + +/****************************************************************************** + * Module : core.string * + ******************************************************************************/ + +!function(){ + var escapeHTMLDict = { + '&': '&', + '<': '<', + '>': '>', + '"': '"', + "'": ''' + }, unescapeHTMLDict = {}, key; + for(key in escapeHTMLDict)unescapeHTMLDict[escapeHTMLDict[key]] = key; + $define(PROTO + FORCED, STRING, { + escapeHTML: createReplacer(/[&<>"']/g, escapeHTMLDict), + unescapeHTML: createReplacer(/&(?:amp|lt|gt|quot|apos);/g, unescapeHTMLDict) + }); +}(); + +/****************************************************************************** + * Module : core.date * + ******************************************************************************/ + +!function(formatRegExp, flexioRegExp, locales, current, SECONDS, MINUTES, HOURS, MONTH, YEAR){ + function createFormat(prefix){ + return function(template, locale /* = current */){ + var that = this + , dict = locales[has(locales, locale) ? locale : current]; + function get(unit){ + return that[prefix + unit](); + } + return String(template).replace(formatRegExp, function(part){ + switch(part){ + case 's' : return get(SECONDS); // Seconds : 0-59 + case 'ss' : return lz(get(SECONDS)); // Seconds : 00-59 + case 'm' : return get(MINUTES); // Minutes : 0-59 + case 'mm' : return lz(get(MINUTES)); // Minutes : 00-59 + case 'h' : return get(HOURS); // Hours : 0-23 + case 'hh' : return lz(get(HOURS)); // Hours : 00-23 + case 'D' : return get(DATE); // Date : 1-31 + case 'DD' : return lz(get(DATE)); // Date : 01-31 + case 'W' : return dict[0][get('Day')]; // Day : Понедельник + case 'N' : return get(MONTH) + 1; // Month : 1-12 + case 'NN' : return lz(get(MONTH) + 1); // Month : 01-12 + case 'M' : return dict[2][get(MONTH)]; // Month : Январь + case 'MM' : return dict[1][get(MONTH)]; // Month : Января + case 'Y' : return get(YEAR); // Year : 2014 + case 'YY' : return lz(get(YEAR) % 100); // Year : 14 + } return part; + }); + } + } + function lz(num){ + return num > 9 ? num : '0' + num; + } + function addLocale(lang, locale){ + function split(index){ + var result = []; + forEach.call(array(locale.months), function(it){ + result.push(it.replace(flexioRegExp, '$' + index)); + }); + return result; + } + locales[lang] = [array(locale.weekdays), split(1), split(2)]; + return core; + } + $define(PROTO + FORCED, DATE, { + format: createFormat('get'), + formatUTC: createFormat('getUTC') + }); + addLocale(current, { + weekdays: 'Sunday,Monday,Tuesday,Wednesday,Thursday,Friday,Saturday', + months: 'January,February,March,April,May,June,July,August,September,October,November,December' + }); + addLocale('ru', { + weekdays: 'Воскресенье,Понедельник,Вторник,Среда,Четверг,Пятница,Суббота', + months: 'Январ:я|ь,Феврал:я|ь,Март:а|,Апрел:я|ь,Ма:я|й,Июн:я|ь,' + + 'Июл:я|ь,Август:а|,Сентябр:я|ь,Октябр:я|ь,Ноябр:я|ь,Декабр:я|ь' + }); + core.locale = function(locale){ + return has(locales, locale) ? current = locale : current; + }; + core.addLocale = addLocale; +}(/\b\w\w?\b/g, /:(.*)\|(.*)$/, {}, 'en', 'Seconds', 'Minutes', 'Hours', 'Month', 'FullYear'); + +/****************************************************************************** + * Module : core.global * + ******************************************************************************/ + +$define(GLOBAL + FORCED, {global: global}); + +/****************************************************************************** + * Module : js.array.statics * + ******************************************************************************/ + +// JavaScript 1.6 / Strawman array statics shim +!function(arrayStatics){ + function setArrayStatics(keys, length){ + forEach.call(array(keys), function(key){ + if(key in ArrayProto)arrayStatics[key] = ctx(call, ArrayProto[key], length); + }); + } + setArrayStatics('pop,reverse,shift,keys,values,entries', 1); + setArrayStatics('indexOf,every,some,forEach,map,filter,find,findIndex,includes', 3); + setArrayStatics('join,slice,concat,push,splice,unshift,sort,lastIndexOf,' + + 'reduce,reduceRight,copyWithin,fill,turn'); + $define(STATIC, ARRAY, arrayStatics); +}({}); + +/****************************************************************************** + * Module : web.dom.itarable * + ******************************************************************************/ + +!function(NodeList){ + if(framework && NodeList && !(SYMBOL_ITERATOR in NodeList[PROTOTYPE])){ + hidden(NodeList[PROTOTYPE], SYMBOL_ITERATOR, Iterators[ARRAY]); + } + Iterators.NodeList = Iterators[ARRAY]; +}(global.NodeList); + +/****************************************************************************** + * Module : web.timers * + ******************************************************************************/ + +// ie9- setTimeout & setInterval additional parameters fix +!function(MSIE){ + function wrap(set){ + return MSIE ? function(fn, time /*, ...args */){ + return set(invoke(part, slice.call(arguments, 2), isFunction(fn) ? fn : Function(fn)), time); + } : set; + } + $define(GLOBAL + BIND + FORCED * MSIE, { + setTimeout: setTimeout = wrap(setTimeout), + setInterval: wrap(setInterval) + }); + // ie9- dirty check +}(!!navigator && /MSIE .\./.test(navigator.userAgent)); + +/****************************************************************************** + * Module : web.console * + ******************************************************************************/ + +!function(console, enabled){ + var _console = { + enable: function(){ enabled = true }, + disable: function(){ enabled = false } + }; + // Methods from: + // https://github.com/DeveloperToolsWG/console-object/blob/master/api.md + // https://developer.mozilla.org/en-US/docs/Web/API/console + forEach.call(array('assert,clear,count,debug,dir,dirxml,error,exception,group,' + + 'groupCollapsed,groupEnd,info,isIndependentlyComposed,log,markTimeline,profile,' + + 'profileEnd,table,time,timeEnd,timeline,timelineEnd,timeStamp,trace,warn'), + function(key){ + var fn = console[key]; + _console[key] = function(){ + if(enabled && fn)return apply.call(fn, console, arguments); + }; + } + ); + // console methods in some browsers are not configurable + try { + framework && delete global.console; + } catch(e){} + $define(GLOBAL + FORCED, {console: _console}); +}(global.console || {}, true); +}(typeof self != 'undefined' && self.Math === Math ? self : Function('return this')(), true); \ No newline at end of file diff --git a/src/Quartz.Web/App/scripts/core-js/client/core.min.js b/src/Quartz.Web/App/scripts/core-js/client/core.min.js new file mode 100644 index 000000000..5d0bfa81f --- /dev/null +++ b/src/Quartz.Web/App/scripts/core-js/client/core.min.js @@ -0,0 +1,8 @@ +/** + * Core.js 0.4.10 + * https://github.com/zloirock/core-js + * License: http://rock.mit-license.org + * © 2015 Denis Pushkarev + */ +!function(a,A,c){"use strict";function h(a){return null!==a&&("object"==typeof a||"function"==typeof a)}function o(a){return"function"==typeof a}function gb(a,b,c){a&&!f(a=c?a:a[d],Bb)&&g(a,Bb,b)}function Z(a){return a==c?a===c?"Undefined":"Null":ed.call(a).slice(8,-1)}function ob(a){var b,c=Z(a);return c==E&&(b=a[Bb])?b:c}function Qb(){for(var e=H(this),a=arguments.length,b=G(a),c=0,f=Jb._,d=!1;a>c;)(b[c]=arguments[c++])===f&&(d=!0);return function(){var c,i=this,j=arguments.length,g=0,h=0;if(!d&&!j)return S(e,b,i);if(c=b.slice(),d)for(;a>g;g++)c[g]===f&&(c[g]=arguments[h++]);for(;j>h;)c.push(arguments[h++]);return S(e,c,i)}}function i(a,b,d){if(H(a),~d&&b===c)return a;switch(d){case 1:return function(c){return a.call(b,c)};case 2:return function(c,d){return a.call(b,c,d)};case 3:return function(c,d,e){return a.call(b,c,d,e)}}return function(){return a.apply(b,arguments)}}function S(b,a,d){var e=d===c;switch(0|a.length){case 0:return e?b():b.call(d);case 1:return e?b(a[0]):b.call(d,a[0]);case 2:return e?b(a[0],a[1]):b.call(d,a[0],a[1]);case 3:return e?b(a[0],a[1],a[2]):b.call(d,a[0],a[1],a[2]);case 4:return e?b(a[0],a[1],a[2],a[3]):b.call(d,a[0],a[1],a[2],a[3]);case 5:return e?b(a[0],a[1],a[2],a[3],a[4]):b.call(d,a[0],a[1],a[2],a[3],a[4])}return b.apply(d,a)}function Rc(a,f){var b=H(arguments.length<3?a:arguments[2])[d],c=U(h(b)?b:D),e=_b.call(a,c,f);return h(e)?e:c}function r(a){return fb(C(a))}function Cb(a){return a}function pb(){return this}function Rb(a,b){return f(a,b)?a[b]:c}function Gc(a){return l(a),Qc?hb(a).concat(Qc(a)):hb(a)}function Xb(e,f){for(var a,b=r(e),c=eb(b),g=c.length,d=0;g>d;)if(b[a=c[d++]]===f)return a}function O(a){return z(a).split(",")}function kb(a){var d=1==a,g=2==a,h=3==a,b=4==a,f=6==a,j=5==a||f;return function(r){for(var l,m,p=e(C(this)),s=arguments[1],n=fb(p),t=i(r,s,3),q=u(n.length),k=0,o=d?G(q):g?[]:c;q>k;k++)if((j||k in n)&&(l=n[k],m=t(l,k,p),a))if(d)o[k]=m;else if(m)switch(a){case 3:return!0;case 5:return l;case 6:return k;case 2:o.push(l)}else if(b)return!1;return f?-1:h||b?b:o}}function Nc(a){return function(d){var c=r(this),e=u(c.length),b=ib(arguments[1],e);if(a&&d!=d){for(;e>b;b++)if(cc(c[b]))return a||b}else for(;e>b;b++)if((a||b in c)&&c[b]===d)return a||b;return!a&&-1}}function Ob(a,b){return"function"==typeof a?a:b}function cc(a){return a!=a}function xb(a){return isNaN(a)?0:Cc(a)}function u(a){return a>0?ab(xb(a),Ub):0}function ib(a,b){var a=xb(a);return 0>a?zc(a+b,0):ab(a,b)}function yb(b,a,c){var d=h(a)?function(b){return a[b]}:a;return function(a){return z(c?a:this).replace(b,d)}}function fc(a){return function(h){var d,f,e=z(C(this)),b=xb(h),g=e.length;return 0>b||b>=g?a?"":c:(d=e.charCodeAt(b),55296>d||d>56319||b+1===g||(f=e.charCodeAt(b+1))<56320||f>57343?a?e.charAt(b):d:a?e.slice(b,b+2):(d-55296<<10)+(f-56320)+65536)}}function bb(c,a,b){if(!c)throw Lb(b?a+b:a)}function C(a){if(a==c)throw Lb("Function called on null or undefined");return a}function H(a){return bb(o(a),a," is not a function!"),a}function l(a){return bb(h(a),a," is not an object!"),a}function Mb(a,b,c){bb(a instanceof b,c,": use the 'new' operator!")}function jb(a,b){return{enumerable:!(1&a),configurable:!(2&a),writable:!(4&a),value:b}}function Sc(a,b,c){return a[b]=c,a}function Xc(a){return L?function(b,c,d){return q(b,c,jb(a,d))}:Sc}function qc(a){return Q+"("+a+")_"+(++bd+Yc())[T](36)}function M(a,b){return w&&w[a]||(b?w:v)(Q+W+a)}function nb(a,b){for(var c in b)g(a,c,b[c]);return a}function Tb(a){(A||!X(a))&&q(a,Sb,{configurable:!0,get:pb})}function zb(a,b){g(a,Y,b),ad&&g(a,wb,b)}function ub(a,b,c,e){a[d]=U(e||Tc,{next:jb(1,c)}),gb(a,b+" Iterator")}function ec(e,c,g,h){var a=e[d],b=Rb(a,Y)||Rb(a,wb)||h&&Rb(a,h)||g;if(A&&(zb(a,b),b!==g)){var i=db(b.call(new e));gb(i,c+" Iterator",!0),f(a,wb)&&zb(i,pb)}return R[c]=b,R[c+" Iterator"]=pb,b}function nc(f,a,g,i,h,j){function d(a){return function(){return new g(this,a)}}ub(g,a,i);var e=d(_+J),c=d(J);h==J?c=ec(f,a,c,"values"):e=ec(f,a,e,"entries"),h&&b(s+m*Vc,a,{entries:e,keys:j?c:d(_),values:c})}function j(a,b){return{value:b,done:!!a}}function uc(d){var b=e(d),c=a[Q],g=(c&&c[Wb]||wb)in b;return g||Y in b||f(R,ob(b))}function tb(b){var c=a[Q],d=b[c&&c[Wb]||wb],e=d||b[Y]||R[ob(b)];return l(e.call(b))}function wc(a,b,c){return c?S(a,b):a(b)}function Gb(c,a,d,e){for(var b,f=tb(c),g=i(d,e,a?2:1);!(b=f.next()).done;)if(wc(g,b.value,a)===!1)return}function b(f,h,p){var c,l,b,j,n=f&I,e=n?a:f&k?a[h]:(a[h]||D)[d],q=n?y:y[h]||(y[h]={});n&&(p=h);for(c in p)l=!(f&m)&&e&&c in e&&(!o(e[c])||X(e[c])),b=(l?e:p)[c],f&Zb&&l?j=i(b,a):f&Yb&&!A&&e[c]==b?(j=function(a){return this instanceof b?new b(a):b(a)},j[d]=b[d]):j=f&s&&o(b)?i(Ab,b):b,q[c]!=b&&g(q,c,j),A&&e&&!l&&(n?e[c]=b:delete e[c]&&g(e,c,b))}var mb,rb,E="Object",vc="Function",x="Array",$="String",Eb="Number",qb="RegExp",Db="Date",Pc="Map",tc="Set",Mc="WeakMap",Lc="WeakSet",Q="Symbol",Hb="Promise",rc="Math",Ic="Arguments",d="prototype",P="constructor",T="toString",Hc=T+"Tag",pc="toLocaleString",Ac="hasOwnProperty",kc="forEach",Wb="iterator",wb="@@"+Wb,Jc="process",hc="createElement",gc=a[vc],e=a[E],G=a[x],z=a[$],Oc=a[Eb],K=a[qb],dd=a[Db],Vb=a[Pc],Kc=a[tc],vb=a[Mc],xc=a[Lc],w=a[Q],p=a[rc],Lb=a.TypeError,bc=a.setTimeout,Nb=a.setImmediate,ac=a.clearImmediate,Pb=a.isFinite,$b=a[Jc],Uc=$b&&$b.nextTick,sb=a.document,jc=sb&&sb.documentElement,Bc=a.navigator,oc=a.define,t=G[d],D=e[d],Fb=gc[d],V=1/0,W=".",X=i(/./.test,/\[native code\]\s*\}\s*$/,1),ed=D[T],Ab=Fb.call,_b=Fb.apply,U=e.create,db=e.getPrototypeOf,Kb=e.setPrototypeOf,q=e.defineProperty,dc=e.defineProperties,N=e.getOwnPropertyDescriptor,eb=e.keys,hb=e.getOwnPropertyNames,Qc=e.getOwnPropertySymbols,cb=e.isFrozen,f=i(Ab,D[Ac],2),fb=e,Ec=e.assign||function(h){for(var a=e(C(h)),i=arguments.length,b=1;i>b;)for(var c,d=fb(arguments[b++]),f=eb(d),j=f.length,g=0;j>g;)a[c=f[g++]]=d[c];return a},Fc=t.push,lb=t.slice,ic=t.indexOf,F=t[kc],Ub=9007199254740991,lc=p.pow,mc=p.abs,cd=p.ceil,yc=p.floor,zc=p.max,ab=p.min,Yc=p.random,Cc=p.trunc||function(a){return(a>0?yc:cd)(a)},Dc="Reduce of empty object with no initial value",L=!!function(){try{return q({},W,D)}catch(a){}}(),bd=0,g=Xc(1),B=w?Sc:g,v=w||qc,Ib=M("unscopables"),sc=t[Ib]||{},Sb=M("species"),Y=M(Wb),Bb=M(Hc),ad=wb in t,n=v("iter"),_=1,J=2,R={},Tc={},$c=Y in t,Vc="keys"in t&&!("next"in[].keys());zb(Tc,pb);var Wc,Zc=Z($b)==Jc,y={},Jb=A?a:y,_c=a.core,m=1,I=2,k=4,s=8,Zb=16,Yb=32;"undefined"!=typeof module&&module.exports?module.exports=y:o(oc)&&oc.amd?oc(function(){return y}):Wc=!0,(Wc||A)&&(y.noConflict=function(){return a.core=_c,y},a.core=y),!function(v,j,z,a){function g(){var a,b=sb[hc]("iframe"),c=B;for(b.style.display="none",jc.appendChild(b),b.src="javascript:",a=b.contentWindow.document,a.open(),a.write(""),a.close(),g=a.F;c--;)delete g[d][i[c]];return g()}function p(b,c){return function(i){var d,g=r(i),h=0,e=[];for(d in g)d!=a&&f(g,d)&&e.push(d);for(;c>h;)f(g,d=b[h++])&&(~ic.call(e,d)||e.push(d));return e}}function n(a){return!h(a)}function w(a){return function(){return a.apply(fb(this),arguments)}}function y(a){return function(g,d){H(g);var c=r(this),e=u(c.length),b=a?e-1:0,f=a?-1:1;if(2>arguments.length)for(;;){if(b in c){d=c[b],b+=f;break}b+=f,bb(a?b>=0:e>b,Dc)}for(;a?b>=0:e>b;b+=f)b in c&&(d=g(d,c[b],b,this));return d}}L||(N=function(a,b){return f(a,b)?jb(!D[v].call(a,b),a[b]):c},q=function(a,c,b){return"value"in b&&(l(a)[c]=b.value),a},dc=function(a,d){l(a);for(var b,c,e=eb(d),g=e.length,f=0;g>f;)b=e[f++],c=d[b],"value"in c&&(a[b]=c.value);return a}),b(k+m*!L,E,{getOwnPropertyDescriptor:N,defineProperty:q,defineProperties:dc});var i=[P,Ac,"isPrototypeOf",v,pc,T,"valueOf"],A=i.concat("length",d),B=i.length;b(k,E,{getPrototypeOf:db=db||function(b){return b=e(C(b)),f(b,a)?b[a]:o(b[P])&&b instanceof b[P]?b[P][d]:b instanceof e?D:null},getOwnPropertyNames:hb=hb||p(A,A.length,!0),create:U=U||function(e,f){var b;return null!==e?(j[d]=l(e),b=new j,j[d]=null,b[P][d]!==e&&(b[a]=e)):b=g(),f===c?b:dc(b,f)},keys:eb=eb||p(i,B,!1),seal:Cb,freeze:Cb,preventExtensions:Cb,isSealed:n,isFrozen:cb=cb||n,isExtensible:h}),b(s,vc,{bind:function(c){function a(){var e=d.concat(lb.call(arguments));return this instanceof a?Rc(b,e):S(b,e,c)}var b=H(this),d=lb.call(arguments,1);return a}}),0 in e(W)&&W[0]==W||(fb=function(a){return Z(a)==$?a.split(""):e(a)},lb=w(lb)),b(s+m*(fb!=e),x,{slice:lb,join:w(t.join)}),b(k,x,{isArray:function(a){return Z(a)==x}}),b(s,x,{forEach:F=F||kb(0),map:kb(1),filter:kb(2),some:kb(3),every:kb(4),reduce:y(!1),reduceRight:y(!0),indexOf:ic=ic||Nc(!1),lastIndexOf:function(d,e){var b=r(this),c=u(b.length),a=c-1;for(arguments.length>1&&(a=ab(a,xb(e))),0>a&&(a=u(c+a));a>=0;a--)if(a in b&&b[a]===d)return a;return-1}}),b(s,$,{trim:yb(/^\s*([\s\S]*\S)?\s*$/,"$1")}),b(k,Db,{now:function(){return+new dd}}),z(function(){return arguments}())==E&&(ob=function(a){var b=z(a);return b==E&&o(a.callee)?Ic:b})}("propertyIsEnumerable",function(){},ob,v(d)),!function(h,a,c,e){X(w)||(w=function(f){bb(!(this instanceof w),Q+" is not a "+P);var a=qc(f),b=B(U(w[d]),h,a);return c[a]=b,L&&e&&q(D,a,{configurable:!0,set:function(b){g(this,a,b)}}),b},g(w[d],T,function(){return this[h]})),b(I+Yb,{Symbol:w});var i={"for":function(b){return f(a,b+="")?a[b]:a[b]=w(b)},iterator:Y,keyFor:Qb.call(Xb,a),species:Sb,toStringTag:Bb=M(Hc,!0),unscopables:Ib,pure:v,set:B,useSetter:function(){e=!0},useSimple:function(){e=!1}};F.call(O("hasInstance,isConcatSpreadable,match,replace,search,split,toPrimitive"),function(a){i[a]=M(a)}),b(k,Q,i),gb(w,Q),b(k+m*!X(w),E,{getOwnPropertyNames:function(g){for(var a,b=hb(r(g)),d=[],e=0;b.length>e;)f(c,a=b[e++])||d.push(a);return d},getOwnPropertySymbols:function(g){for(var a,b=hb(r(g)),d=[],e=0;b.length>e;)f(c,a=b[e++])&&d.push(c[a]);return d}})}(v("tag"),{},{},!0),!function(c){var d={assign:Ec,is:function(a,b){return a===b?0!==a||1/a===1/b:a!=a&&b!=b}};"__proto__"in D&&function(b,a){try{a=i(Ab,N(D,"__proto__").set,2),a({},t)}catch(c){b=!0}d.setPrototypeOf=Kb=Kb||function(d,c){return l(d),bb(null===c||h(c),c,": can't set as prototype!"),b?d.__proto__=c:a(d,c),d}}(),b(k,E,d),A&&(c[Bb]=W,Z(c)!=W&&g(D,T,function(){return"[object "+ob(this)+"]"})),gb(p,rc,!0),gb(a.JSON,"JSON",!0)}({}),!function(){function a(d,c){var a=e[d],f=y[E][d],g=0,i={};if(!f||X(f)){i[d]=1==c?function(b){return h(b)?a(b):b}:2==c?function(b){return h(b)?a(b):!0}:3==c?function(b){return h(b)?a(b):!1}:4==c?function(b,c){return a(r(b),c)}:function(b){return a(r(b))};try{a(W)}catch(j){g=1}b(k+m*g,E,i)}}a("freeze",1),a("seal",1),a("preventExtensions",1),a("isFrozen",2),a("isSealed",2),a("isExtensible",3),a("getOwnPropertyDescriptor",4),a("getPrototypeOf"),a("keys"),a("getOwnPropertyNames")}(),!function(a){a in Fb||q(Fb,a,{configurable:!0,get:function(){var b=z(this).match(/^\s*function ([^ (]*)/),c=b?b[1]:"";return f(this,a)||q(this,a,jb(5,c)),c},set:function(b){f(this,a)||q(this,a,jb(0,b))}})}("name"),!function(a){b(k,Eb,{EPSILON:lc(2,-52),isFinite:function(a){return"number"==typeof a&&Pb(a)},isInteger:a,isNaN:cc,isSafeInteger:function(b){return a(b)&&mc(b)<=Ub},MAX_SAFE_INTEGER:Ub,MIN_SAFE_INTEGER:-Ub,parseFloat:parseFloat,parseInt:parseInt})}(Oc.isInteger||function(a){return!h(a)&&Pb(a)&&yc(a)===a}),!function(){function g(a){return Pb(a=+a)&&0!=a?0>a?-g(-a):c(a+e(a*a+1)):a}function d(b){return 0==(b=+b)?b:b>-1e-6&&1e-6>b?b+b*b/2:a(b)-1}var f=p.E,a=p.exp,c=p.log,e=p.sqrt,h=p.sign||function(a){return 0==(a=+a)||a!=a?a:0>a?-1:1};b(k,rc,{acosh:function(a){return(a=+a)<1?0/0:Pb(a)?c(a/f+e(a+1)*e(a-1)/f)+1:a},asinh:g,atanh:function(a){return 0==(a=+a)?a:c((1+a)/(1-a))/2},cbrt:function(a){return h(a=+a)*lc(mc(a),1/3)},clz32:function(a){return(a>>>=0)?32-a[T](2).length:32},cosh:function(b){return(a(b=+b)+a(-b))/2},expm1:d,fround:function(a){return new Float32Array([a])[0]},hypot:function(){for(var a,d=0,b=arguments.length,f=b,g=G(b),c=-V;b--;){if(a=g[b]=+arguments[b],a==V||a==-V)return V;a>c&&(c=a)}for(c=a||1;f--;)d+=lc(g[f]/c,2);return c*e(d)},imul:function(f,g){var a=65535,b=+f,c=+g,d=a&b,e=a&c;return 0|d*e+((a&b>>>16)*e+d*(a&c>>>16)<<16>>>0)},log1p:function(a){return(a=+a)>-1e-8&&1e-8>a?a-a*a/2:c(1+a)},log10:function(a){return c(a)/p.LN10},log2:function(a){return c(a)/p.LN2},sign:h,sinh:function(b){return mc(b=+b)<1?(d(b)-d(-b))/2:(a(b-1)-a(-b-1))*(f/2)},tanh:function(b){var c=d(b=+b),e=d(-b);return c==V?1:e==V?-1:(c-e)/(a(b)+a(-b))},trunc:Cc})}(),!function(d,e){function a(a){if(Z(a)==qb)throw Lb()}b(k,$,{fromCodePoint:function(){for(var a,b=[],f=arguments.length,c=0;f>c;){if(a=+arguments[c++],ib(a,1114111)!==a)throw d(a+" is not a valid code point");b.push(65536>a?e(a):e(((a-=65536)>>10)+55296,a%1024+56320))}return b.join("")},raw:function(d){for(var c=r(d.raw),e=u(c.length),f=arguments.length,b=[],a=0;e>a;)b.push(z(c[a++])),f>a&&b.push(z(arguments[a]));return b.join("")}}),b(s,$,{codePointAt:fc(!1),endsWith:function(b){a(b);var d=z(C(this)),e=arguments[1],f=u(d.length),g=e===c?f:ab(u(e),f);return b+="",d.slice(g-b.length,g)===b},includes:function(b){return a(b),!!~z(C(this)).indexOf(b,arguments[1])},repeat:function(e){var b=z(C(this)),c="",a=xb(e);if(0>a||a==V)throw d("Count can't be negative");for(;a>0;(a>>>=1)&&(b+=b))1&a&&(c+=b);return c},startsWith:function(b){a(b);var c=z(C(this)),d=u(ab(arguments[1],c.length));return b+="",c.slice(d,d+b.length)===b}})}(a.RangeError,z.fromCharCode),!function(){b(k,x,{from:function(m){var j,b=e(C(m)),d=new(Ob(this,G)),h=arguments[1],l=arguments[2],f=h!==c,k=f?i(h,l,2):c,a=0;if(uc(b))for(var g,n=tb(b);!(g=n.next()).done;a++)d[a]=f?k(g.value,a):g.value;else for(j=u(b.length);j>a;a++)d[a]=f?k(b[a],a):b[a];return d.length=a,d},of:function(){for(var a=0,b=arguments.length,c=new(Ob(this,G))(b);b>a;)c[a]=arguments[a++];return c.length=b,c}}),b(s,x,{copyWithin:function(j,k){var d=e(C(this)),f=u(d.length),a=ib(j,f),b=ib(k,f),i=arguments[2],l=i===c?f:ib(i,f),g=ab(l-b,f-a),h=1;for(a>b&&b+g>a&&(h=-1,b=b+g-1,a=a+g-1);g-->0;)b in d?d[a]=d[b]:delete d[a],a+=h,b+=h;return d},fill:function(g){for(var a=e(C(this)),b=u(a.length),d=ib(arguments[1],b),f=arguments[2],h=f===c?b:ib(f,b);h>d;)a[d++]=g;return a},find:kb(5),findIndex:kb(6)}),A&&(F.call(O("find,findIndex,fill,copyWithin,entries,keys,values"),function(a){sc[a]=!0}),Ib in t||g(t,Ib,sc)),Tb(G)}(),!function(a){nc(G,x,function(a,b){B(this,n,{o:r(a),i:0,k:b})},function(){var b=this[n],d=b.o,e=b.k,a=b.i++;return!d||a>=d.length?(b.o=c,j(1)):e==_?j(0,a):e==J?j(0,d[a]):j(0,[a,d[a]])},J),R[Ic]=R[x],nc(z,$,function(a){B(this,n,{o:z(a),i:0})},function(){var b,c=this[n],d=c.o,e=c.i;return e>=d.length?j(1):(b=a.call(d,e),c.i+=b.length,j(0,b))})}(fc(!0)),!function(b,e){function f(a){return function(){return bb(Z(this)===qb),a(this)}}L&&!function(){try{return"/a/i"==K(/a/g,"i")}catch(a){}}()&&(K=function(a,b){return new e(Z(a)==qb&&b!==c?a.source:a,b)},F.call(hb(e),function(a){a in K||q(K,a,{configurable:!0,get:function(){return e[a]},set:function(b){e[a]=b}})}),b[P]=K,K[d]=b,g(a,qb,K)),"g"!=/./g.flags&&q(b,"flags",{configurable:!0,get:f(yb(/^.*\/(\w*)$/,"$1",!0))}),F.call(O("sticky,unicode"),function(a){a in/./||q(b,a,L?{configurable:!0,get:f(function(){return!1})}:jb(5,!1))}),Tb(K)}(K[d],K),o(Nb)&&o(ac)||function(n){function d(a){if(f(b,a)){var c=b[a];delete b[a],c()}}function m(a){d(a.data)}var c,g,e,j=a.postMessage,k=a.addEventListener,l=a.MessageChannel,h=0,b={};Nb=function(a){for(var d=[],e=1;arguments.length>e;)d.push(arguments[e++]);return b[++h]=function(){S(o(a)?a:gc(a),d)},c(h),h},ac=function(a){delete b[a]},Zc?c=function(a){Uc(Qb.call(d,a))}:k&&o(j)&&!a.importScripts?(c=function(a){j(a,"*")},k("message",m,!1)):o(l)?(g=new l,e=g.port2,g.port1.onmessage=m,c=i(e.postMessage,e,1)):c=sb&&n in sb[hc]("script")?function(a){jc.appendChild(sb[hc]("script"))[n]=function(){jc.removeChild(this),d(a)}}:function(a){bc(d,0,a)}}("onreadystatechange"),b(I+Zb,{setImmediate:Nb,clearImmediate:ac}),!function(a,e){o(a)&&o(a.resolve)&&a.resolve(e=new a(function(){}))==e||function(n,f){function k(b){var a;return h(b)&&(a=b.then),o(a)?a:!1}function j(b){var a=b.chain;a.length&&n(function(){for(var c=b.msg,e=1==b.state,d=0;a.length>d;)!function(a){var b,f,d=e?a.ok:a.fail;try{d?(b=d===!0?c:d(c),b===a.P?a.rej(Lb(Hb+"-chain cycle")):(f=k(b))?f.call(b,a.res,a.rej):a.res(b)):a.rej(c)}catch(g){a.rej(g)}}(a[d++]);a.length=0})}function m(d){var e,c,a=this;if(!a.done){a.done=!0,a=a.def||a;try{(e=k(d))?(c={def:a,done:!1},e.call(d,i(m,c,1),i(b,c,1))):(a.msg=d,a.state=1,j(a))}catch(f){b.call(c||{def:a,done:!1},f)}}}function b(b){var a=this;a.done||(a.done=!0,a=a.def||a,a.msg=b,a.state=2,j(a))}function e(a){var b=l(a)[Sb];return b!=c?b:a}a=function(e){H(e),Mb(this,a,Hb);var d={chain:[],state:0,done:!1,msg:c};g(this,f,d);try{e(i(m,d,1),i(b,d,1))}catch(h){b.call(d,h)}},nb(a[d],{then:function(e,g){var h=l(l(this)[P])[Sb],b={ok:o(e)?e:!0,fail:o(g)?g:!1},i=b.P=new(h!=c?h:a)(function(a,c){b.res=H(a),b.rej=H(c)}),d=this[f];return d.chain.push(b),d.state&&j(d),i},"catch":function(a){return this.then(c,a)}}),nb(a,{all:function(c){var b=e(this),a=[];return new b(function(f,g){Gb(c,!1,Fc,a);var d=a.length,e=G(d);d?F.call(a,function(a,c){b.resolve(a).then(function(a){e[c]=a,--d||f(e)},g)}):f(e)})},race:function(b){var a=e(this);return new a(function(c,d){Gb(b,!1,function(b){a.resolve(b).then(c,d)})})},reject:function(a){return new(e(this))(function(c,b){b(a)})},resolve:function(a){return h(a)&&f in a&&db(a)===this[d]?a:new(e(this))(function(b){b(a)})}})}(Uc||Nb,v("def")),gb(a,Hb),Tb(a),b(I+m*!X(a),{Promise:a})}(a[Hb]),!function(){function u(a,g,z,y,i,h){function s(a,b){return b!=c&&Gb(b,i,a[u],a),a}function l(a,b){var c=e[a];A&&(e[a]=function(a,d){var e=c.call(this,0===a?0:a,d);return b?this:e})}var u=i?"set":"add",e=a&&a[d],x={};if(X(a)&&(h||!Vc&&f(e,kc)&&f(e,"entries"))){var v,D=a,w=new a,F=w[u](h?{}:-0,1);$c&&a.length||(a=function(b){return Mb(this,a,g),s(new D,b)},a[d]=e,A&&(e[P]=a)),h||w[kc](function(b,a){v=1/a===-V}),v&&(l("delete"),l("has"),i&&l("get")),(v||F!==w)&&l(u,!0)}else a=h?function(b){Mb(this,a,g),B(this,o,E++),s(this,b)}:function(d){var b=this;Mb(b,a,g),B(b,t,U(null)),B(b,r,0),B(b,p,c),B(b,k,c),s(b,d)},nb(nb(a[d],z),y),h||q(a[d],"size",{get:function(){return C(this[r])}});return gb(a,g),Tb(a),x[g]=a,b(I+Yb+m*!X(a),x),h||nc(a,g,function(a,b){B(this,n,{o:a,k:b})},function(){for(var b=this[n],d=b.k,a=b.l;a&&a.r;)a=a.p;return b.o&&(b.l=a=a?a.n:b.o[k])?d==_?j(0,a.k):d==J?j(0,a.v):j(0,[a.k,a.v]):(b.o=c,j(1))},i?_+J:J,!i),a}function y(a,b){if(!h(a))return("string"==typeof a?"S":"P")+a;if(cb(a))return"F";if(!f(a,o)){if(!b)return"E";g(a,o,++E)}return"O"+a[o]}function w(b,c){var a,d=y(c);if("F"!=d)return b[t][d];for(a=b[k];a;a=a.n)if(a.k==c)return a}function D(a,d,g){var e,f,b=w(a,d);return b?b.v=g:(a[p]=b={i:f=y(d,!0),k:d,v:g,p:e=a[p],n:c,r:!1},a[k]||(a[k]=b),e&&(e.n=b),a[r]++,"F"!=f&&(a[t][f]=b)),a}function z(c,b,d){return cb(l(b))?s(c).set(b,d):(f(b,a)||g(b,a,{}),b[a][c[o]]=d),c}function s(a){return a[x]||g(a,x,new Vb)[x]}var o=v("uid"),t=v("O1"),a=v("weak"),x=v("leak"),p=v("last"),k=v("first"),r=L?v("size"):"size",E=0,G={},H={clear:function(){for(var b=this,d=b[t],a=b[k];a;a=a.n)a.r=!0,a.p=a.n=c,delete d[a.i];b[k]=b[p]=c,b[r]=0},"delete":function(e){var b=this,a=w(b,e);if(a){var c=a.n,d=a.p;delete b[t][a.i],a.r=!0,d&&(d.n=c),c&&(c.p=d),b[k]==a&&(b[k]=c),b[p]==a&&(b[p]=d),b[r]--}return!!a},forEach:function(b){for(var a,c=i(b,arguments[1],3);a=a?a.n:this[k];)for(c(a.v,a.k,this);a&&a.r;)a=a.p},has:function(a){return!!w(this,a)}};Vb=u(Vb,Pc,{get:function(b){var a=w(this,b);return a&&a.v},set:function(a,b){return D(this,0===a?0:a,b)}},H,!0),Kc=u(Kc,tc,{add:function(a){return D(this,a=0===a?0:a,a)}},H);var K={"delete":function(b){return h(b)?cb(b)?s(this)["delete"](b):f(b,a)&&f(b[a],this[o])&&delete b[a][this[o]]:!1},has:function(b){return h(b)?cb(b)?s(this).has(b):f(b,a)&&f(b[a],this[o]):!1}};vb=u(vb,Mc,{get:function(b){if(h(b)){if(cb(b))return s(this).get(b);if(f(b,a))return b[a][this[o]]}},set:function(a,b){return z(this,a,b)}},K,!0,!0),A&&7!=(new vb).set(e.freeze(G),7).get(G)&&F.call(O("delete,has,get,set"),function(a){var b=vb[d][a];vb[d][a]=function(c,d){if(h(c)&&cb(c)){var e=s(this)[a](c,d);return"set"==a?this:e}return b.call(this,c,d)}}),xc=u(xc,Lc,{add:function(a){return z(this,a,!0)}},K,!1,!0)}(),!function(){function a(a){var b,c=[];for(b in a)c.push(b);B(this,n,{o:a,a:c,i:0})}function d(a){return function(b){l(b);try{return a.apply(c,arguments),!0}catch(d){return!1}}}function f(b,d){var e,g=arguments.length<3?b:arguments[2],a=N(l(b),d);return a?a.get?a.get.call(g):a.value:h(e=db(b))?f(e,d,g):c}function g(d,b,e){var f,c=arguments.length<4?d:arguments[3],a=N(l(d),b);if(a){if(a.writable===!1)return!1;if(a.set)return a.set.call(c,e),!0}return h(f=db(d))?g(f,b,e,c):(a=N(c,b)||jb(0),a.value=e,q(c,b,a),!0)}ub(a,E,function(){var b,a=this[n],c=a.a;do if(a.i>=c.length)return j(1);while(!((b=c[a.i++])in a.o));return j(0,b)});var o=e.isExtensible||Cb,m={apply:i(Ab,_b,3),construct:Rc,defineProperty:d(q),deleteProperty:function(a,b){var c=N(l(a),b);return c&&!c.configurable?!1:delete a[b]},enumerate:function(b){return new a(l(b))},get:f,getOwnPropertyDescriptor:function(a,b){return N(l(a),b)},getPrototypeOf:function(a){return db(l(a))},has:function(a,b){return b in a},isExtensible:function(a){return!!o(l(a))},ownKeys:Gc,preventExtensions:d(e.preventExtensions||Cb),set:g};Kb&&(m.setPrototypeOf=function(a,b){return Kb(l(a),b),!0}),b(I,{Reflect:{}}),b(k,"Reflect",m)}(),!function(){function a(a){return function(f){var g,h=r(f),c=eb(f),d=c.length,b=0,e=G(d);if(a)for(;d>b;)e[b]=[g=c[b++],h[g]];else for(;d>b;)e[b]=h[c[b++]];return e}}b(s,x,{includes:Nc(!0)}),b(s,$,{at:fc(!0)}),b(k,E,{values:a(!1),entries:a(!0)}),b(k,qb,{escape:yb(/([\\\-[\]{}()*+?.,^$|])/g,"\\$1",!0)})}(),!function(a){function c(b){if(b){var a=b[d];g(a,mb,a.get),g(a,e,a.set),g(a,f,a["delete"])}}mb=M(a+"Get",!0);var e=M(a+tc,!0),f=M(a+"Delete",!0);b(k,Q,{referenceGet:mb,referenceSet:e,referenceDelete:f}),g(Fb,mb,pb),c(Vb),c(vb)}("reference"),!function(q){function l(a,b){B(this,n,{o:r(a),a:eb(a),i:0,k:b})}function g(a){return function(b){return new l(b,a)}}function a(a){var d=1==a,b=4==a;return function(l,m,n){var e,h,g,o=i(m,n,3),k=r(l),j=d||7==a||2==a?new(Ob(this,rb)):c;for(e in k)if(f(k,e)&&(h=k[e],g=o(h,e,l),a))if(d)j[e]=g;else if(g)switch(a){case 2:j[e]=h;break;case 3:return!0;case 5:return h;case 6:return e;case 7:j[g[0]]=g[1]}else if(b)return!1;return 3==a||b?b:j}}function o(a){return function(l,m,g){H(m);var b,h,i,d=r(l),j=eb(d),n=j.length,k=0;for(a?b=g==c?new(Ob(this,rb)):e(g):arguments.length<3?(bb(n,Dc),b=d[j[k++]]):b=e(g);n>k;)if(f(d,h=j[k++]))if(i=m(b,d[h],h,l),a){if(i===!1)break}else b=i;return b}}function s(b,a){return(a==a?Xb(b,a):p(b,cc))!==c}rb=function(a){var b=U(null);if(a!=c)if(uc(a))for(var e,d,f=tb(a);!(e=f.next()).done;)d=e.value,b[d[0]]=d[1];else Ec(b,a);return b},rb[d]=null,ub(l,q,function(){var a,b=this[n],c=b.o,d=b.a,e=b.k;do if(b.i>=d.length)return j(1);while(!f(c,a=d[b.i++]));return e==_?j(0,a):e==J?j(0,c[a]):j(0,[a,c[a]])});var p=a(6),k={keys:g(_),values:g(J),entries:g(_+J),forEach:a(0),map:a(1),filter:a(2),some:a(3),every:a(4),find:a(5),findKey:p,mapPairs:a(7),reduce:o(!1),turn:o(!0),keyOf:Xb,includes:s,has:f,get:Rb,set:Xc(0),isDict:function(a){return h(a)&&db(a)===rb[d]}};if(mb)for(var t in k)!function(a){function b(){for(var b=[this],c=0;c1;return function(){for(var f=ab(d,arguments.length),g=G(f),a=0;f>a;)g[a]=arguments[a++];return S(c,g,e?b:this)}}}),g(Jb._,T,function(){return a}),g(D,a,d),L||g(t,a,d)}(L?qc("tie"):pc,D[pc]),!function(){function a(a,b){for(var c,d=Gc(r(b)),f=d.length,e=0;f>e;)q(a,c=d[e++],N(b,c));return a}b(k+m,E,{isObject:h,classof:ob,define:a,make:function(b,c){return a(U(b),c)}})}(),b(s+m,x,{turn:function(b,d){H(b);for(var f=d==c?[]:e(d),g=fb(this),h=u(g.length),a=0;h>a&&b(f,g[a],a++,this)!==!1;);return f}}),A&&(sc.turn=!0),!function(a){function d(a){B(this,n,{l:u(a),i:0})}ub(d,Eb,function(){var a=this[n],b=a.i++;return a.l>b?j(0,b):j(1)}),ec(Oc,Eb,function(){return new d(this)}),a.random=function(a){var b=+this,d=a==c?0:+a,e=ab(b,d);return Yc()*(zc(b,d)-e)+e},F.call(O("round,floor,ceil,abs,sin,asin,cos,acos,tan,atan,exp,sqrt,max,min,pow,atan2,acosh,asinh,atanh,cbrt,clz32,cosh,expm1,hypot,imul,log1p,log10,log2,sign,sinh,tanh,trunc"),function(b){var c=p[b];c&&(a[b]=function(){for(var a=[+this],b=0;arguments.length>b;)a.push(arguments[b++]);return S(c,a)})}),b(s+m,Eb,a)}({}),!function(){var a,c={"&":"&","<":"<",">":">",'"':""","'":"'"},d={};for(a in c)d[c[a]]=a;b(s+m,$,{escapeHTML:yb(/[&<>"']/g,c),unescapeHTML:yb(/&(?:amp|lt|gt|quot|apos);/g,d)})}(),!function(o,n,c,d,j,h,i,e,k){function l(b){return function(n,m){function g(a){return p[b+a]()}var p=this,l=c[f(c,m)?m:d];return z(n).replace(o,function(b){switch(b){case"s":return g(j);case"ss":return a(g(j));case"m":return g(h);case"mm":return a(g(h));case"h":return g(i);case"hh":return a(g(i));case"D":return g(Db);case"DD":return a(g(Db));case"W":return l[0][g("Day")];case"N":return g(e)+1;case"NN":return a(g(e)+1);case"M":return l[2][g(e)];case"MM":return l[1][g(e)];case"Y":return g(k);case"YY":return a(g(k)%100)}return b})}}function a(a){return a>9?a:"0"+a}function g(d,a){function b(c){var b=[];return F.call(O(a.months),function(a){b.push(a.replace(n,"$"+c))}),b}return c[d]=[O(a.weekdays),b(1),b(2)],y}b(s+m,Db,{format:l("get"),formatUTC:l("getUTC")}),g(d,{weekdays:"Sunday,Monday,Tuesday,Wednesday,Thursday,Friday,Saturday",months:"January,February,March,April,May,June,July,August,September,October,November,December"}),g("ru",{weekdays:"Воскресенье,Понедельник,Вторник,Среда,Четверг,Пятница,Суббота",months:"Январ:я|ь,Феврал:я|ь,Март:а|,Апрел:я|ь,Ма:я|й,Июн:я|ь,Июл:я|ь,Август:а|,Сентябр:я|ь,Октябр:я|ь,Ноябр:я|ь,Декабр:я|ь"}),y.locale=function(a){return f(c,a)?d=a:d},y.addLocale=g}(/\b\w\w?\b/g,/:(.*)\|(.*)$/,{},"en","Seconds","Minutes","Hours","Month","FullYear"),b(I+m,{global:a}),!function(c){function a(a,b){F.call(O(a),function(a){a in t&&(c[a]=i(Ab,t[a],b))})}a("pop,reverse,shift,keys,values,entries",1),a("indexOf,every,some,forEach,map,filter,find,findIndex,includes",3),a("join,slice,concat,push,splice,unshift,sort,lastIndexOf,reduce,reduceRight,copyWithin,fill,turn"),b(k,x,c)}({}),!function(a){!A||!a||Y in a[d]||g(a[d],Y,R[x]),R.NodeList=R[x]}(a.NodeList),!function(a){function c(b){return a?function(a,c){return b(S(Qb,lb.call(arguments,2),o(a)?a:gc(a)),c)}:b}b(I+Zb+m*a,{setTimeout:bc=c(bc),setInterval:c(setInterval)})}(!!Bc&&/MSIE .\./.test(Bc.userAgent)),!function(e,d){var f={enable:function(){d=!0},disable:function(){d=!1}};F.call(O("assert,clear,count,debug,dir,dirxml,error,exception,group,groupCollapsed,groupEnd,info,isIndependentlyComposed,log,markTimeline,profile,profileEnd,table,time,timeEnd,timeline,timelineEnd,timeStamp,trace,warn"),function(a){var b=e[a];f[a]=function(){return d&&b?_b.call(b,e,arguments):c}});try{A&&delete a.console}catch(g){}b(I+m,{console:f})}(a.console||{},!0)}("undefined"!=typeof self&&self.Math===Math?self:Function("return this")(),!0); +//# sourceMappingURL=core.min.js.map \ No newline at end of file diff --git a/src/Quartz.Web/App/scripts/core-js/client/core.min.js.map b/src/Quartz.Web/App/scripts/core-js/client/core.min.js.map new file mode 100644 index 000000000..570bf1d0d --- /dev/null +++ b/src/Quartz.Web/App/scripts/core-js/client/core.min.js.map @@ -0,0 +1 @@ +{"version":3,"file":"core.min.js","sources":["core.js"],"names":["global","framework","undefined","isObject","it","isFunction","setToStringTag","tag","stat","has","PROTOTYPE","SYMBOL_TAG","hidden","cof","toString","call","slice","classof","klass","OBJECT","part","fn","assertFunction","this","length","arguments","args","Array","i","_","path","holder","_args","that","_length","j","invoke","push","ctx","a","b","c","apply","un","construct","target","argumentsList","proto","instance","create","ObjectProto","result","toObject","ES5Object","assertDefined","returnIt","returnThis","get","object","key","ownKeys","assertObject","getSymbols","getNames","concat","keyOf","el","O","keys","getKeys","index","array","String","split","createArrayMethod","type","isMap","isFilter","isSome","isEvery","isFindIndex","noholes","callbackfn","val","res","Object","self","f","toLength","createArrayContains","isContains","toIndex","sameNaN","generic","A","B","number","toInteger","isNaN","trunc","min","MAX_SAFE_INTEGER","max","createReplacer","regExp","replace","isStatic","replacer","createPointAt","pos","s","l","charCodeAt","charAt","assert","condition","msg1","msg2","TypeError","assertInstance","Constructor","name","descriptor","bitmap","value","enumerable","configurable","writable","simpleSet","createDefiner","DESC","defineProperty","uid","SYMBOL","sid","random","TO_STRING","getWellKnownSymbol","setter","Symbol","safeSymbol","DOT","assignHidden","src","setSpecies","C","isNative","SYMBOL_SPECIES","setIterator","SYMBOL_ITERATOR","SUPPORT_FF_ITER","FF_ITERATOR","createIterator","NAME","next","IteratorPrototype","defineIterator","DEFAULT","iter","iterProto","getPrototypeOf","Iterators","defineStdIterators","Base","IS_SET","createIter","kind","entries","KEY","VALUE","values","$define","PROTO","FORCED","BUGGY_ITERATORS","iterResult","done","isIterable","hasExt","ITERATOR","getIterator","ext","getIter","stepCall","forOf","iterable","step","iterator","source","own","out","exp","isGlobal","GLOBAL","STATIC","exports","core","BIND","WRAP","param","REFERENCE_GET","Dict","FUNCTION","ARRAY","STRING","NUMBER","REGEXP","DATE","MAP","SET","WEAKMAP","WEAKSET","PROMISE","MATH","ARGUMENTS","CONSTRUCTOR","TO_STRING_TAG","TO_LOCALE","HAS_OWN","FOR_EACH","PROCESS","CREATE_ELEMENT","Function","Number","RegExp","Date","Map","Set","WeakMap","WeakSet","Math","setTimeout","setImmediate","clearImmediate","isFinite","process","nextTick","document","html","documentElement","navigator","define","ArrayProto","FunctionProto","Infinity","test","setPrototypeOf","defineProperties","getOwnDescriptor","getOwnPropertyDescriptor","getOwnPropertyNames","getOwnPropertySymbols","isFrozen","assign","T","S","indexOf","forEach","pow","abs","ceil","floor","REDUCE_ERROR","e","set","SYMBOL_UNSCOPABLES","ArrayUnscopables","ITER","NATIVE_ITERATORS","exportGlobal","NODE","old","module","amd","noConflict","IS_ENUMERABLE","Empty","_classof","$PROTO","createDict","iframeDocument","iframe","keysLen1","style","display","appendChild","contentWindow","open","write","close","F","keys1","createGetKeys","names","isPrimitive","arrayMethodFix","createArrayReduce","isRight","memo","P","Attributes","Properties","keys2","seal","freeze","preventExtensions","isSealed","isExtensible","bind","bound","partArgs","join","isArray","arg","map","filter","some","every","reduce","reduceRight","lastIndexOf","fromIndex","trim","now","callee","TAG","SymbolRegistry","AllSymbols","description","sym","symbolStatics","for","keyFor","species","toStringTag","unscopables","pure","useSetter","useSimple","tmp","objectStatic","is","x","y","buggy","__proto__","JSON","wrapObjectMethod","MODE","o","match","isInteger","EPSILON","isSafeInteger","MIN_SAFE_INTEGER","parseFloat","parseInt","asinh","log","sqrt","expm1","E","sign","acosh","NaN","atanh","cbrt","clz32","cosh","fround","Float32Array","hypot","sum","len1","len2","larg","imul","UInt16","xn","yn","xl","yl","log1p","log10","LN10","log2","LN2","sinh","tanh","RangeError","fromCharCode","assertNotRegExp","fromCodePoint","code","len","raw","callSite","sln","codePointAt","endsWith","searchString","endPosition","end","includes","repeat","count","str","n","startsWith","from","arrayLike","mapfn","mapping","of","copyWithin","start","to","fin","inc","fill","endPos","find","findIndex","at","iterated","k","point","RegExpProto","_RegExp","assertRegExpWrapper","pattern","flags","ONREADYSTATECHANGE","run","id","queue","listner","event","data","defer","channel","port","postMessage","addEventListener","MessageChannel","counter","importScripts","port2","port1","onmessage","removeChild","Promise","resolve","asap","DEF","isThenable","then","notify","def","chain","msg","ok","state","react","ret","cb","fail","rej","err","wrapper","reject","getConstructor","executor","onFulfilled","onRejected","catch","all","remaining","results","promise","race","r","getCollection","methods","commonMethods","isWeak","initFromIterable","ADDER","fixSVZ","method","buggyZero","Native","inst","UID","O1","SIZE","LAST","FIRST","entry","p","v","fastKey","getEntry","prev","defWeak","leakStore","WEAK","LEAK","collectionMethods","clear","delete","add","weakMethods","Enumerate","wrap","reflectGet","propertyKey","receiver","desc","reflectSet","V","reflect","deleteProperty","enumerate","Reflect","createObjectToArray","isEntries","escape","REFERENCE","setMapMethods","MapProto","REFERENCE_SET","REFERENCE_DELETE","referenceGet","referenceSet","referenceDelete","DICT","DictIterator","createDictIter","createDictMethod","createDictReduce","isTurn","init","findKey","dict","dictMethods","mapPairs","turn","isDict","ENTRIES","FN","$for","createChainIterator","Iter","I","$forProto","MapIter","FilterIter","toLocaleString","tie","only","numberArguments","isThat","mixin","make","numberMethods","NumberIterator","lim","m","escapeHTMLDict","&","<",">","\"","'","unescapeHTMLDict","escapeHTML","unescapeHTML","formatRegExp","flexioRegExp","locales","current","SECONDS","MINUTES","HOURS","MONTH","YEAR","createFormat","prefix","template","locale","unit","lz","num","addLocale","lang","months","weekdays","format","formatUTC","arrayStatics","setArrayStatics","NodeList","MSIE","time","setInterval","userAgent","console","enabled","_console","enable","disable"],"mappings":"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"} \ No newline at end of file diff --git a/src/Quartz.Web/App/scripts/core-js/client/core.min.map b/src/Quartz.Web/App/scripts/core-js/client/core.min.map new file mode 100644 index 000000000..a27a235f4 --- /dev/null +++ b/src/Quartz.Web/App/scripts/core-js/client/core.min.map @@ -0,0 +1 @@ +{"version":3,"file":"core.min.js","sources":["core.js"],"names":["global","framework","undefined","isObject","it","isFunction","setToStringTag","tag","stat","has","PROTOTYPE","SYMBOL_TAG","hidden","cof","toString","call","slice","classof","klass","OBJECT","buildIn","part","fn","assertFunction","this","length","arguments","args","Array","i","_","path","holder","_args","that","_length","j","invoke","push","ctx","a","b","c","apply","un","construct","target","argumentsList","proto","instance","create","ObjectProto","result","toObject","ES5Object","assertDefined","returnIt","returnThis","get","object","key","ownKeys","assertObject","getSymbols","getNames","concat","keyOf","el","O","keys","getKeys","index","array","String","split","createArrayMethod","type","isMap","isFilter","isSome","isEvery","isFindIndex","noholes","callbackfn","val","res","Object","self","f","toLength","createArrayContains","isContains","toIndex","sameNaN","generic","A","B","number","toInteger","isNaN","trunc","min","MAX_SAFE_INTEGER","max","createReplacer","regExp","replace","isStatic","replacer","createPointAt","pos","s","l","charCodeAt","charAt","assert","condition","msg1","msg2","TypeError","assertInstance","Constructor","name","descriptor","bitmap","value","enumerable","configurable","writable","simpleSet","createDefiner","DESC","defineProperty","uid","SYMBOL","sid","random","TO_STRING","getWellKnownSymbol","setter","Symbol","safeSymbol","DOT","assignHidden","src","setSpecies","C","isNative","SYMBOL_SPECIES","setIterator","SYMBOL_ITERATOR","SUPPORT_FF_ITER","FF_ITERATOR","createIterator","NAME","next","IteratorPrototype","defineIterator","DEFAULT","iter","iterProto","getPrototypeOf","Iterators","defineStdIterators","Base","IS_SET","createIter","kind","entries","KEY","VALUE","values","$define","PROTO","FORCED","BUGGY_ITERATORS","iterResult","done","isIterable","hasExt","ITERATOR","getIterator","ext","getIter","stepCall","forOf","iterable","step","iterator","source","own","out","exp","isGlobal","GLOBAL","STATIC","exports","core","BIND","WRAP","param","REFERENCE_GET","Dict","FUNCTION","ARRAY","STRING","NUMBER","REGEXP","DATE","MAP","SET","WEAKMAP","WEAKSET","PROMISE","MATH","ARGUMENTS","CONSTRUCTOR","TO_STRING_TAG","TO_LOCALE","HAS_OWN","FOR_EACH","PROCESS","CREATE_ELEMENT","Function","Number","RegExp","Date","Map","Set","WeakMap","WeakSet","Math","setTimeout","setImmediate","clearImmediate","process","nextTick","document","html","documentElement","navigator","define","ArrayProto","FunctionProto","Infinity","test","Undefined","Null","Arguments","Error","Boolean","setPrototypeOf","defineProperties","getOwnDescriptor","getOwnPropertyDescriptor","getOwnPropertyNames","getOwnPropertySymbols","isFrozen","assign","T","S","indexOf","forEach","ceil","floor","REDUCE_ERROR","e","set","SYMBOL_UNSCOPABLES","ArrayUnscopables","ITER","NATIVE_ITERATORS","exportGlobal","NODE","old","module","amd","noConflict","IS_ENUMERABLE","Empty","_classof","$PROTO","createDict","iframeDocument","iframe","keysLen1","style","display","appendChild","contentWindow","open","write","close","F","keys1","createGetKeys","names","isPrimitive","arrayMethodFix","createArrayReduce","isRight","memo","P","Attributes","Properties","keys2","seal","freeze","preventExtensions","isSealed","isExtensible","bind","bound","partArgs","join","isArray","arg","map","filter","some","every","reduce","reduceRight","lastIndexOf","fromIndex","trim","now","callee","TAG","SymbolRegistry","AllSymbols","description","sym","symbolStatics","for","keyFor","species","toStringTag","unscopables","pure","useSetter","useSimple","RegExpProto","isFinite","tmp","STICKY","UNICODE","asinh","x","log","sqrt","expm1","assertNotRegExp","wrapObjectMethod","MODE","o","getFlagCap","RangeError","isInteger","sign","E","pow","abs","fcc","fromCharCode","at","objectStatic","is","y","buggy","__proto__","EPSILON","isSafeInteger","MIN_SAFE_INTEGER","parseFloat","parseInt","acosh","NaN","atanh","cbrt","clz32","cosh","fround","Float32Array","hypot","sum","len1","len2","larg","imul","UInt16","xn","yn","xl","yl","log1p","log10","LN10","log2","LN2","sinh","tanh","fromCodePoint","code","len","raw","callSite","sln","codePointAt","endsWith","searchString","endPosition","end","includes","repeat","count","str","n","startsWith","iterated","point","from","arrayLike","mapfn","mapping","of","copyWithin","start","to","fin","inc","fill","endPos","find","findIndex","k","JSON","match","_RegExp","pattern","flags","ONREADYSTATECHANGE","run","id","queue","listner","event","data","defer","channel","port","postMessage","addEventListener","MessageChannel","counter","importScripts","port2","port1","onmessage","removeChild","Promise","resolve","asap","DEF","isThenable","then","notify","def","chain","msg","ok","state","react","ret","cb","fail","rej","err","wrapper","reject","getConstructor","executor","onFulfilled","onRejected","catch","all","remaining","results","promise","race","r","getCollection","methods","commonMethods","isWeak","initFromIterable","ADDER","fixSVZ","method","buggyZero","Native","inst","UID","O1","SIZE","LAST","FIRST","entry","p","v","fastKey","getEntry","prev","defWeak","leakStore","WEAK","LEAK","collectionMethods","clear","delete","add","weakMethods","Enumerate","wrap","reflectGet","propertyKey","receiver","desc","reflectSet","V","reflect","deleteProperty","enumerate","Reflect","createObjectToArray","isEntries","escape","REFERENCE","setMapMethods","MapProto","REFERENCE_SET","REFERENCE_DELETE","referenceGet","referenceSet","referenceDelete","NodeList","DICT","DictIterator","createDictIter","createDictMethod","createDictReduce","isTurn","init","findKey","dict","dictMethods","mapPairs","turn","isDict","ENTRIES","FN","$for","createChainIterator","Iter","I","$forProto","MapIter","FilterIter","MSIE","time","setInterval","userAgent","toLocaleString","tie","only","numberArguments","isThat","mixin","make","arrayStatics","setArrayStatics","numberMethods","NumberIterator","lim","m","escapeHTMLDict","&","<",">","\"","'","unescapeHTMLDict","escapeHTML","unescapeHTML","formatRegExp","flexioRegExp","locales","current","SECONDS","MINUTES","HOURS","MONTH","YEAR","createFormat","prefix","template","locale","unit","lz","num","addLocale","lang","months","weekdays","format","formatUTC","console","enabled","_console","enable","disable"],"mappings":"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"} \ No newline at end of file diff --git a/src/Quartz.Web/App/scripts/core-js/client/library.js b/src/Quartz.Web/App/scripts/core-js/client/library.js new file mode 100644 index 000000000..d8cfa3bfb --- /dev/null +++ b/src/Quartz.Web/App/scripts/core-js/client/library.js @@ -0,0 +1,2458 @@ +/** + * Core.js 0.4.10 + * https://github.com/zloirock/core-js + * License: http://rock.mit-license.org + * © 2015 Denis Pushkarev + */ +!function(global, framework, undefined){ +'use strict'; + +/****************************************************************************** + * Module : common * + ******************************************************************************/ + + // Shortcuts for [[Class]] & property names +var OBJECT = 'Object' + , FUNCTION = 'Function' + , ARRAY = 'Array' + , STRING = 'String' + , NUMBER = 'Number' + , REGEXP = 'RegExp' + , DATE = 'Date' + , MAP = 'Map' + , SET = 'Set' + , WEAKMAP = 'WeakMap' + , WEAKSET = 'WeakSet' + , SYMBOL = 'Symbol' + , PROMISE = 'Promise' + , MATH = 'Math' + , ARGUMENTS = 'Arguments' + , PROTOTYPE = 'prototype' + , CONSTRUCTOR = 'constructor' + , TO_STRING = 'toString' + , TO_STRING_TAG = TO_STRING + 'Tag' + , TO_LOCALE = 'toLocaleString' + , HAS_OWN = 'hasOwnProperty' + , FOR_EACH = 'forEach' + , ITERATOR = 'iterator' + , FF_ITERATOR = '@@' + ITERATOR + , PROCESS = 'process' + , CREATE_ELEMENT = 'createElement' + // Aliases global objects and prototypes + , Function = global[FUNCTION] + , Object = global[OBJECT] + , Array = global[ARRAY] + , String = global[STRING] + , Number = global[NUMBER] + , RegExp = global[REGEXP] + , Date = global[DATE] + , Map = global[MAP] + , Set = global[SET] + , WeakMap = global[WEAKMAP] + , WeakSet = global[WEAKSET] + , Symbol = global[SYMBOL] + , Math = global[MATH] + , TypeError = global.TypeError + , setTimeout = global.setTimeout + , setImmediate = global.setImmediate + , clearImmediate = global.clearImmediate + , isFinite = global.isFinite + , process = global[PROCESS] + , nextTick = process && process.nextTick + , document = global.document + , html = document && document.documentElement + , navigator = global.navigator + , define = global.define + , ArrayProto = Array[PROTOTYPE] + , ObjectProto = Object[PROTOTYPE] + , FunctionProto = Function[PROTOTYPE] + , Infinity = 1 / 0 + , DOT = '.'; + +// http://jsperf.com/core-js-isobject +function isObject(it){ + return it !== null && (typeof it == 'object' || typeof it == 'function'); +} +function isFunction(it){ + return typeof it == 'function'; +} +// Native function? +var isNative = ctx(/./.test, /\[native code\]\s*\}\s*$/, 1); + +// Object internal [[Class]] or toStringTag +// http://people.mozilla.org/~jorendorff/es6-draft.html#sec-object.prototype.tostring +var toString = ObjectProto[TO_STRING]; +function setToStringTag(it, tag, stat){ + if(it && !has(it = stat ? it : it[PROTOTYPE], SYMBOL_TAG))hidden(it, SYMBOL_TAG, tag); +} +function cof(it){ + return it == undefined ? it === undefined + ? 'Undefined' : 'Null' : toString.call(it).slice(8, -1); +} +function classof(it){ + var klass = cof(it), tag; + return klass == OBJECT && (tag = it[SYMBOL_TAG]) ? tag : klass; +} + +// Function +var call = FunctionProto.call + , apply = FunctionProto.apply + , REFERENCE_GET; +// Partial apply +function part(/* ...args */){ + var fn = assertFunction(this) + , length = arguments.length + , args = Array(length) + , i = 0 + , _ = path._ + , holder = false; + while(length > i)if((args[i] = arguments[i++]) === _)holder = true; + return function(/* ...args */){ + var that = this + , _length = arguments.length + , i = 0, j = 0, _args; + if(!holder && !_length)return invoke(fn, args, that); + _args = args.slice(); + if(holder)for(;length > i; i++)if(_args[i] === _)_args[i] = arguments[j++]; + while(_length > j)_args.push(arguments[j++]); + return invoke(fn, _args, that); + } +} +// Optional / simple context binding +function ctx(fn, that, length){ + assertFunction(fn); + if(~length && that === undefined)return fn; + switch(length){ + case 1: return function(a){ + return fn.call(that, a); + } + case 2: return function(a, b){ + return fn.call(that, a, b); + } + case 3: return function(a, b, c){ + return fn.call(that, a, b, c); + } + } return function(/* ...args */){ + return fn.apply(that, arguments); + } +} +// Fast apply +// http://jsperf.lnkit.com/fast-apply/5 +function invoke(fn, args, that){ + var un = that === undefined; + switch(args.length | 0){ + case 0: return un ? fn() + : fn.call(that); + case 1: return un ? fn(args[0]) + : fn.call(that, args[0]); + case 2: return un ? fn(args[0], args[1]) + : fn.call(that, args[0], args[1]); + case 3: return un ? fn(args[0], args[1], args[2]) + : fn.call(that, args[0], args[1], args[2]); + case 4: return un ? fn(args[0], args[1], args[2], args[3]) + : fn.call(that, args[0], args[1], args[2], args[3]); + case 5: return un ? fn(args[0], args[1], args[2], args[3], args[4]) + : fn.call(that, args[0], args[1], args[2], args[3], args[4]); + } return fn.apply(that, args); +} +function construct(target, argumentsList /*, newTarget*/){ + var proto = assertFunction(arguments.length < 3 ? target : arguments[2])[PROTOTYPE] + , instance = create(isObject(proto) ? proto : ObjectProto) + , result = apply.call(target, instance, argumentsList); + return isObject(result) ? result : instance; +} + +// Object: +var create = Object.create + , getPrototypeOf = Object.getPrototypeOf + , setPrototypeOf = Object.setPrototypeOf + , defineProperty = Object.defineProperty + , defineProperties = Object.defineProperties + , getOwnDescriptor = Object.getOwnPropertyDescriptor + , getKeys = Object.keys + , getNames = Object.getOwnPropertyNames + , getSymbols = Object.getOwnPropertySymbols + , isFrozen = Object.isFrozen + , has = ctx(call, ObjectProto[HAS_OWN], 2) + // Dummy, fix for not array-like ES3 string in es5 module + , ES5Object = Object + , Dict; +function toObject(it){ + return ES5Object(assertDefined(it)); +} +function returnIt(it){ + return it; +} +function returnThis(){ + return this; +} +function get(object, key){ + if(has(object, key))return object[key]; +} +function ownKeys(it){ + assertObject(it); + return getSymbols ? getNames(it).concat(getSymbols(it)) : getNames(it); +} +// 19.1.2.1 Object.assign(target, source, ...) +var assign = Object.assign || function(target, source){ + var T = Object(assertDefined(target)) + , l = arguments.length + , i = 1; + while(l > i){ + var S = ES5Object(arguments[i++]) + , keys = getKeys(S) + , length = keys.length + , j = 0 + , key; + while(length > j)T[key = keys[j++]] = S[key]; + } + return T; +} +function keyOf(object, el){ + var O = toObject(object) + , keys = getKeys(O) + , length = keys.length + , index = 0 + , key; + while(length > index)if(O[key = keys[index++]] === el)return key; +} + +// Array +// array('str1,str2,str3') => ['str1', 'str2', 'str3'] +function array(it){ + return String(it).split(','); +} +var push = ArrayProto.push + , unshift = ArrayProto.unshift + , slice = ArrayProto.slice + , splice = ArrayProto.splice + , indexOf = ArrayProto.indexOf + , forEach = ArrayProto[FOR_EACH]; +/* + * 0 -> forEach + * 1 -> map + * 2 -> filter + * 3 -> some + * 4 -> every + * 5 -> find + * 6 -> findIndex + */ +function createArrayMethod(type){ + var isMap = type == 1 + , isFilter = type == 2 + , isSome = type == 3 + , isEvery = type == 4 + , isFindIndex = type == 6 + , noholes = type == 5 || isFindIndex; + return function(callbackfn/*, that = undefined */){ + var O = Object(assertDefined(this)) + , that = arguments[1] + , self = ES5Object(O) + , f = ctx(callbackfn, that, 3) + , length = toLength(self.length) + , index = 0 + , result = isMap ? Array(length) : isFilter ? [] : undefined + , val, res; + for(;length > index; index++)if(noholes || index in self){ + val = self[index]; + res = f(val, index, O); + if(type){ + if(isMap)result[index] = res; // map + else if(res)switch(type){ + case 3: return true; // some + case 5: return val; // find + case 6: return index; // findIndex + case 2: result.push(val); // filter + } else if(isEvery)return false; // every + } + } + return isFindIndex ? -1 : isSome || isEvery ? isEvery : result; + } +} +function createArrayContains(isContains){ + return function(el /*, fromIndex = 0 */){ + var O = toObject(this) + , length = toLength(O.length) + , index = toIndex(arguments[1], length); + if(isContains && el != el){ + for(;length > index; index++)if(sameNaN(O[index]))return isContains || index; + } else for(;length > index; index++)if(isContains || index in O){ + if(O[index] === el)return isContains || index; + } return !isContains && -1; + } +} +function generic(A, B){ + // strange IE quirks mode bug -> use typeof vs isFunction + return typeof A == 'function' ? A : B; +} + +// Math +var MAX_SAFE_INTEGER = 0x1fffffffffffff // pow(2, 53) - 1 == 9007199254740991 + , pow = Math.pow + , abs = Math.abs + , ceil = Math.ceil + , floor = Math.floor + , max = Math.max + , min = Math.min + , random = Math.random + , trunc = Math.trunc || function(it){ + return (it > 0 ? floor : ceil)(it); + } +// 20.1.2.4 Number.isNaN(number) +function sameNaN(number){ + return number != number; +} +// 7.1.4 ToInteger +function toInteger(it){ + return isNaN(it) ? 0 : trunc(it); +} +// 7.1.15 ToLength +function toLength(it){ + return it > 0 ? min(toInteger(it), MAX_SAFE_INTEGER) : 0; +} +function toIndex(index, length){ + var index = toInteger(index); + return index < 0 ? max(index + length, 0) : min(index, length); +} + +function createReplacer(regExp, replace, isStatic){ + var replacer = isObject(replace) ? function(part){ + return replace[part]; + } : replace; + return function(it){ + return String(isStatic ? it : this).replace(regExp, replacer); + } +} +function createPointAt(toString){ + return function(pos){ + var s = String(assertDefined(this)) + , i = toInteger(pos) + , l = s.length + , a, b; + if(i < 0 || i >= l)return toString ? '' : undefined; + a = s.charCodeAt(i); + return a < 0xd800 || a > 0xdbff || i + 1 === l || (b = s.charCodeAt(i + 1)) < 0xdc00 || b > 0xdfff + ? toString ? s.charAt(i) : a + : toString ? s.slice(i, i + 2) : (a - 0xd800 << 10) + (b - 0xdc00) + 0x10000; + } +} + +// Assertion & errors +var REDUCE_ERROR = 'Reduce of empty object with no initial value'; +function assert(condition, msg1, msg2){ + if(!condition)throw TypeError(msg2 ? msg1 + msg2 : msg1); +} +function assertDefined(it){ + if(it == undefined)throw TypeError('Function called on null or undefined'); + return it; +} +function assertFunction(it){ + assert(isFunction(it), it, ' is not a function!'); + return it; +} +function assertObject(it){ + assert(isObject(it), it, ' is not an object!'); + return it; +} +function assertInstance(it, Constructor, name){ + assert(it instanceof Constructor, name, ": use the 'new' operator!"); +} + +// Property descriptors & Symbol +function descriptor(bitmap, value){ + return { + enumerable : !(bitmap & 1), + configurable: !(bitmap & 2), + writable : !(bitmap & 4), + value : value + } +} +function simpleSet(object, key, value){ + object[key] = value; + return object; +} +function createDefiner(bitmap){ + return DESC ? function(object, key, value){ + return defineProperty(object, key, descriptor(bitmap, value)); + } : simpleSet; +} +function uid(key){ + return SYMBOL + '(' + key + ')_' + (++sid + random())[TO_STRING](36); +} +function getWellKnownSymbol(name, setter){ + return (Symbol && Symbol[name]) || (setter ? Symbol : safeSymbol)(SYMBOL + DOT + name); +} +// The engine works fine with descriptors? Thank's IE8 for his funny defineProperty. +var DESC = !!function(){try{return defineProperty({}, DOT, ObjectProto)}catch(e){}}() + , sid = 0 + , hidden = createDefiner(1) + , set = Symbol ? simpleSet : hidden + , safeSymbol = Symbol || uid; +function assignHidden(target, src){ + for(var key in src)hidden(target, key, src[key]); + return target; +} + +var SYMBOL_UNSCOPABLES = getWellKnownSymbol('unscopables') + , ArrayUnscopables = ArrayProto[SYMBOL_UNSCOPABLES] || {} + , SYMBOL_SPECIES = getWellKnownSymbol('species'); +function setSpecies(C){ + if(framework || !isNative(C))defineProperty(C, SYMBOL_SPECIES, { + configurable: true, + get: returnThis + }); +} + +// Iterators +var SYMBOL_ITERATOR = getWellKnownSymbol(ITERATOR) + , SYMBOL_TAG = getWellKnownSymbol(TO_STRING_TAG) + , SUPPORT_FF_ITER = FF_ITERATOR in ArrayProto + , ITER = safeSymbol('iter') + , KEY = 1 + , VALUE = 2 + , Iterators = {} + , IteratorPrototype = {} + , NATIVE_ITERATORS = SYMBOL_ITERATOR in ArrayProto + // Safari define byggy iterators w/o `next` + , BUGGY_ITERATORS = 'keys' in ArrayProto && !('next' in [].keys()); +// 25.1.2.1.1 %IteratorPrototype%[@@iterator]() +setIterator(IteratorPrototype, returnThis); +function setIterator(O, value){ + hidden(O, SYMBOL_ITERATOR, value); + // Add iterator for FF iterator protocol + SUPPORT_FF_ITER && hidden(O, FF_ITERATOR, value); +} +function createIterator(Constructor, NAME, next, proto){ + Constructor[PROTOTYPE] = create(proto || IteratorPrototype, {next: descriptor(1, next)}); + setToStringTag(Constructor, NAME + ' Iterator'); +} +function defineIterator(Constructor, NAME, value, DEFAULT){ + var proto = Constructor[PROTOTYPE] + , iter = get(proto, SYMBOL_ITERATOR) || get(proto, FF_ITERATOR) || (DEFAULT && get(proto, DEFAULT)) || value; + if(framework){ + // Define iterator + setIterator(proto, iter); + if(iter !== value){ + var iterProto = getPrototypeOf(iter.call(new Constructor)); + // Set @@toStringTag to native iterators + setToStringTag(iterProto, NAME + ' Iterator', true); + // FF fix + has(proto, FF_ITERATOR) && setIterator(iterProto, returnThis); + } + } + // Plug for library + Iterators[NAME] = iter; + // FF & v8 fix + Iterators[NAME + ' Iterator'] = returnThis; + return iter; +} +function defineStdIterators(Base, NAME, Constructor, next, DEFAULT, IS_SET){ + function createIter(kind){ + return function(){ + return new Constructor(this, kind); + } + } + createIterator(Constructor, NAME, next); + var entries = createIter(KEY+VALUE) + , values = createIter(VALUE); + if(DEFAULT == VALUE)values = defineIterator(Base, NAME, values, 'values'); + else entries = defineIterator(Base, NAME, entries, 'entries'); + if(DEFAULT){ + $define(PROTO + FORCED * BUGGY_ITERATORS, NAME, { + entries: entries, + keys: IS_SET ? values : createIter(KEY), + values: values + }); + } +} +function iterResult(done, value){ + return {value: value, done: !!done}; +} +function isIterable(it){ + var O = Object(it) + , Symbol = global[SYMBOL] + , hasExt = (Symbol && Symbol[ITERATOR] || FF_ITERATOR) in O; + return hasExt || SYMBOL_ITERATOR in O || has(Iterators, classof(O)); +} +function getIterator(it){ + var Symbol = global[SYMBOL] + , ext = it[Symbol && Symbol[ITERATOR] || FF_ITERATOR] + , getIter = ext || it[SYMBOL_ITERATOR] || Iterators[classof(it)]; + return assertObject(getIter.call(it)); +} +function stepCall(fn, value, entries){ + return entries ? invoke(fn, value) : fn(value); +} +function forOf(iterable, entries, fn, that){ + var iterator = getIterator(iterable) + , f = ctx(fn, that, entries ? 2 : 1) + , step; + while(!(step = iterator.next()).done)if(stepCall(f, step.value, entries) === false)return; +} + +// core +var NODE = cof(process) == PROCESS + , core = {} + , path = framework ? global : core + , old = global.core + , exportGlobal + // type bitmap + , FORCED = 1 + , GLOBAL = 2 + , STATIC = 4 + , PROTO = 8 + , BIND = 16 + , WRAP = 32; +function $define(type, name, source){ + var key, own, out, exp + , isGlobal = type & GLOBAL + , target = isGlobal ? global : (type & STATIC) + ? global[name] : (global[name] || ObjectProto)[PROTOTYPE] + , exports = isGlobal ? core : core[name] || (core[name] = {}); + if(isGlobal)source = name; + for(key in source){ + // there is a similar native + own = !(type & FORCED) && target && key in target + && (!isFunction(target[key]) || isNative(target[key])); + // export native or passed + out = (own ? target : source)[key]; + // bind timers to global for call from export context + if(type & BIND && own)exp = ctx(out, global); + // wrap global constructors for prevent change them in library + else if(type & WRAP && !framework && target[key] == out){ + exp = function(param){ + return this instanceof out ? new out(param) : out(param); + } + exp[PROTOTYPE] = out[PROTOTYPE]; + } else exp = type & PROTO && isFunction(out) ? ctx(call, out) : out; + // export + if(exports[key] != out)hidden(exports, key, exp); + // extend global + if(framework && target && !own){ + if(isGlobal)target[key] = out; + else delete target[key] && hidden(target, key, out); + } + } +} +// CommonJS export +if(typeof module != 'undefined' && module.exports)module.exports = core; +// RequireJS export +else if(isFunction(define) && define.amd)define(function(){return core}); +// Export to global object +else exportGlobal = true; +if(exportGlobal || framework){ + core.noConflict = function(){ + global.core = old; + return core; + } + global.core = core; +} + +/****************************************************************************** + * Module : es5 * + ******************************************************************************/ + +// ECMAScript 5 shim +!function(IS_ENUMERABLE, Empty, _classof, $PROTO){ + if(!DESC){ + getOwnDescriptor = function(O, P){ + if(has(O, P))return descriptor(!ObjectProto[IS_ENUMERABLE].call(O, P), O[P]); + }; + defineProperty = function(O, P, Attributes){ + if('value' in Attributes)assertObject(O)[P] = Attributes.value; + return O; + }; + defineProperties = function(O, Properties){ + assertObject(O); + var keys = getKeys(Properties) + , length = keys.length + , i = 0 + , P, Attributes; + while(length > i){ + P = keys[i++]; + Attributes = Properties[P]; + if('value' in Attributes)O[P] = Attributes.value; + } + return O; + }; + } + $define(STATIC + FORCED * !DESC, OBJECT, { + // 19.1.2.6 / 15.2.3.3 Object.getOwnPropertyDescriptor(O, P) + getOwnPropertyDescriptor: getOwnDescriptor, + // 19.1.2.4 / 15.2.3.6 Object.defineProperty(O, P, Attributes) + defineProperty: defineProperty, + // 19.1.2.3 / 15.2.3.7 Object.defineProperties(O, Properties) + defineProperties: defineProperties + }); + + // IE 8- don't enum bug keys + var keys1 = [CONSTRUCTOR, HAS_OWN, 'isPrototypeOf', IS_ENUMERABLE, TO_LOCALE, TO_STRING, 'valueOf'] + // Additional keys for getOwnPropertyNames + , keys2 = keys1.concat('length', PROTOTYPE) + , keysLen1 = keys1.length; + + // Create object with `null` prototype: use iframe Object with cleared prototype + function createDict(){ + // Thrash, waste and sodomy: IE GC bug + var iframe = document[CREATE_ELEMENT]('iframe') + , i = keysLen1 + , iframeDocument; + iframe.style.display = 'none'; + html.appendChild(iframe); + iframe.src = 'javascript:'; + // createDict = iframe.contentWindow.Object; + // html.removeChild(iframe); + iframeDocument = iframe.contentWindow.document; + iframeDocument.open(); + iframeDocument.write(''); + iframeDocument.close(); + createDict = iframeDocument.F; + while(i--)delete createDict[PROTOTYPE][keys1[i]]; + return createDict(); + } + function createGetKeys(names, length, isNames){ + return function(object){ + var O = toObject(object) + , i = 0 + , result = [] + , key; + for(key in O)if(key != $PROTO)has(O, key) && result.push(key); + // Don't enum bug & hidden keys + while(length > i)if(has(O, key = names[i++])){ + ~indexOf.call(result, key) || result.push(key); + } + return result; + } + } + function isPrimitive(it){ return !isObject(it) } + $define(STATIC, OBJECT, { + // 19.1.2.9 / 15.2.3.2 Object.getPrototypeOf(O) + getPrototypeOf: getPrototypeOf = getPrototypeOf || function(O){ + O = Object(assertDefined(O)); + if(has(O, $PROTO))return O[$PROTO]; + if(isFunction(O[CONSTRUCTOR]) && O instanceof O[CONSTRUCTOR]){ + return O[CONSTRUCTOR][PROTOTYPE]; + } return O instanceof Object ? ObjectProto : null; + }, + // 19.1.2.7 / 15.2.3.4 Object.getOwnPropertyNames(O) + getOwnPropertyNames: getNames = getNames || createGetKeys(keys2, keys2.length, true), + // 19.1.2.2 / 15.2.3.5 Object.create(O [, Properties]) + create: create = create || function(O, /*?*/Properties){ + var result + if(O !== null){ + Empty[PROTOTYPE] = assertObject(O); + result = new Empty(); + Empty[PROTOTYPE] = null; + // add "__proto__" for Object.getPrototypeOf shim + if(result[CONSTRUCTOR][PROTOTYPE] !== O)result[$PROTO] = O; + } else result = createDict(); + return Properties === undefined ? result : defineProperties(result, Properties); + }, + // 19.1.2.14 / 15.2.3.14 Object.keys(O) + keys: getKeys = getKeys || createGetKeys(keys1, keysLen1, false), + // 19.1.2.17 / 15.2.3.8 Object.seal(O) + seal: returnIt, // <- cap + // 19.1.2.5 / 15.2.3.9 Object.freeze(O) + freeze: returnIt, // <- cap + // 19.1.2.15 / 15.2.3.10 Object.preventExtensions(O) + preventExtensions: returnIt, // <- cap + // 19.1.2.13 / 15.2.3.11 Object.isSealed(O) + isSealed: isPrimitive, // <- cap + // 19.1.2.12 / 15.2.3.12 Object.isFrozen(O) + isFrozen: isFrozen = isFrozen || isPrimitive, // <- cap + // 19.1.2.11 / 15.2.3.13 Object.isExtensible(O) + isExtensible: isObject // <- cap + }); + + // 19.2.3.2 / 15.3.4.5 Function.prototype.bind(thisArg, args...) + $define(PROTO, FUNCTION, { + bind: function(that /*, args... */){ + var fn = assertFunction(this) + , partArgs = slice.call(arguments, 1); + function bound(/* args... */){ + var args = partArgs.concat(slice.call(arguments)); + return this instanceof bound ? construct(fn, args) : invoke(fn, args, that); + } + return bound; + } + }); + + // Fix for not array-like ES3 string + function arrayMethodFix(fn){ + return function(){ + return fn.apply(ES5Object(this), arguments); + } + } + if(!(0 in Object(DOT) && DOT[0] == DOT)){ + ES5Object = function(it){ + return cof(it) == STRING ? it.split('') : Object(it); + } + slice = arrayMethodFix(slice); + } + $define(PROTO + FORCED * (ES5Object != Object), ARRAY, { + slice: slice, + join: arrayMethodFix(ArrayProto.join) + }); + + // 22.1.2.2 / 15.4.3.2 Array.isArray(arg) + $define(STATIC, ARRAY, { + isArray: function(arg){ + return cof(arg) == ARRAY + } + }); + function createArrayReduce(isRight){ + return function(callbackfn, memo){ + assertFunction(callbackfn); + var O = toObject(this) + , length = toLength(O.length) + , index = isRight ? length - 1 : 0 + , i = isRight ? -1 : 1; + if(2 > arguments.length)for(;;){ + if(index in O){ + memo = O[index]; + index += i; + break; + } + index += i; + assert(isRight ? index >= 0 : length > index, REDUCE_ERROR); + } + for(;isRight ? index >= 0 : length > index; index += i)if(index in O){ + memo = callbackfn(memo, O[index], index, this); + } + return memo; + } + } + $define(PROTO, ARRAY, { + // 22.1.3.10 / 15.4.4.18 Array.prototype.forEach(callbackfn [, thisArg]) + forEach: forEach = forEach || createArrayMethod(0), + // 22.1.3.15 / 15.4.4.19 Array.prototype.map(callbackfn [, thisArg]) + map: createArrayMethod(1), + // 22.1.3.7 / 15.4.4.20 Array.prototype.filter(callbackfn [, thisArg]) + filter: createArrayMethod(2), + // 22.1.3.23 / 15.4.4.17 Array.prototype.some(callbackfn [, thisArg]) + some: createArrayMethod(3), + // 22.1.3.5 / 15.4.4.16 Array.prototype.every(callbackfn [, thisArg]) + every: createArrayMethod(4), + // 22.1.3.18 / 15.4.4.21 Array.prototype.reduce(callbackfn [, initialValue]) + reduce: createArrayReduce(false), + // 22.1.3.19 / 15.4.4.22 Array.prototype.reduceRight(callbackfn [, initialValue]) + reduceRight: createArrayReduce(true), + // 22.1.3.11 / 15.4.4.14 Array.prototype.indexOf(searchElement [, fromIndex]) + indexOf: indexOf = indexOf || createArrayContains(false), + // 22.1.3.14 / 15.4.4.15 Array.prototype.lastIndexOf(searchElement [, fromIndex]) + lastIndexOf: function(el, fromIndex /* = @[*-1] */){ + var O = toObject(this) + , length = toLength(O.length) + , index = length - 1; + if(arguments.length > 1)index = min(index, toInteger(fromIndex)); + if(index < 0)index = toLength(length + index); + for(;index >= 0; index--)if(index in O)if(O[index] === el)return index; + return -1; + } + }); + + // 21.1.3.25 / 15.5.4.20 String.prototype.trim() + $define(PROTO, STRING, {trim: createReplacer(/^\s*([\s\S]*\S)?\s*$/, '$1')}); + + // 20.3.3.1 / 15.9.4.4 Date.now() + $define(STATIC, DATE, {now: function(){ + return +new Date; + }}); + + if(_classof(function(){return arguments}()) == OBJECT)classof = function(it){ + var cof = _classof(it); + return cof == OBJECT && isFunction(it.callee) ? ARGUMENTS : cof; + } +}('propertyIsEnumerable', function(){}, classof, safeSymbol(PROTOTYPE)); + +/****************************************************************************** + * Module : es6.symbol * + ******************************************************************************/ + +// ECMAScript 6 symbols shim +!function(TAG, SymbolRegistry, AllSymbols, setter){ + // 19.4.1.1 Symbol([description]) + if(!isNative(Symbol)){ + Symbol = function(description){ + assert(!(this instanceof Symbol), SYMBOL + ' is not a ' + CONSTRUCTOR); + var tag = uid(description) + , sym = set(create(Symbol[PROTOTYPE]), TAG, tag); + AllSymbols[tag] = sym; + DESC && setter && defineProperty(ObjectProto, tag, { + configurable: true, + set: function(value){ + hidden(this, tag, value); + } + }); + return sym; + } + hidden(Symbol[PROTOTYPE], TO_STRING, function(){ + return this[TAG]; + }); + } + $define(GLOBAL + WRAP, {Symbol: Symbol}); + + var symbolStatics = { + // 19.4.2.1 Symbol.for(key) + 'for': function(key){ + return has(SymbolRegistry, key += '') + ? SymbolRegistry[key] + : SymbolRegistry[key] = Symbol(key); + }, + // 19.4.2.4 Symbol.iterator + iterator: SYMBOL_ITERATOR, + // 19.4.2.5 Symbol.keyFor(sym) + keyFor: part.call(keyOf, SymbolRegistry), + // 19.4.2.10 Symbol.species + species: SYMBOL_SPECIES, + // 19.4.2.13 Symbol.toStringTag + toStringTag: SYMBOL_TAG = getWellKnownSymbol(TO_STRING_TAG, true), + // 19.4.2.14 Symbol.unscopables + unscopables: SYMBOL_UNSCOPABLES, + pure: safeSymbol, + set: set, + useSetter: function(){setter = true}, + useSimple: function(){setter = false} + }; + // 19.4.2.2 Symbol.hasInstance + // 19.4.2.3 Symbol.isConcatSpreadable + // 19.4.2.6 Symbol.match + // 19.4.2.8 Symbol.replace + // 19.4.2.9 Symbol.search + // 19.4.2.11 Symbol.split + // 19.4.2.12 Symbol.toPrimitive + forEach.call(array('hasInstance,isConcatSpreadable,match,replace,search,split,toPrimitive'), + function(it){ + symbolStatics[it] = getWellKnownSymbol(it); + } + ); + $define(STATIC, SYMBOL, symbolStatics); + + setToStringTag(Symbol, SYMBOL); + + $define(STATIC + FORCED * !isNative(Symbol), OBJECT, { + // 19.1.2.7 Object.getOwnPropertyNames(O) + getOwnPropertyNames: function(it){ + var names = getNames(toObject(it)), result = [], key, i = 0; + while(names.length > i)has(AllSymbols, key = names[i++]) || result.push(key); + return result; + }, + // 19.1.2.8 Object.getOwnPropertySymbols(O) + getOwnPropertySymbols: function(it){ + var names = getNames(toObject(it)), result = [], key, i = 0; + while(names.length > i)has(AllSymbols, key = names[i++]) && result.push(AllSymbols[key]); + return result; + } + }); +}(safeSymbol('tag'), {}, {}, true); + +/****************************************************************************** + * Module : es6.object * + ******************************************************************************/ + +!function(tmp){ + var objectStatic = { + // 19.1.3.1 Object.assign(target, source) + assign: assign, + // 19.1.3.10 Object.is(value1, value2) + is: function(x, y){ + return x === y ? x !== 0 || 1 / x === 1 / y : x != x && y != y; + } + }; + // 19.1.3.19 Object.setPrototypeOf(O, proto) + // Works with __proto__ only. Old v8 can't works with null proto objects. + '__proto__' in ObjectProto && function(buggy, set){ + try { + set = ctx(call, getOwnDescriptor(ObjectProto, '__proto__').set, 2); + set({}, ArrayProto); + } catch(e){ buggy = true } + objectStatic.setPrototypeOf = setPrototypeOf = setPrototypeOf || function(O, proto){ + assertObject(O); + assert(proto === null || isObject(proto), proto, ": can't set as prototype!"); + if(buggy)O.__proto__ = proto; + else set(O, proto); + return O; + } + }(); + $define(STATIC, OBJECT, objectStatic); + + if(framework){ + // 19.1.3.6 Object.prototype.toString() + tmp[SYMBOL_TAG] = DOT; + if(cof(tmp) != DOT)hidden(ObjectProto, TO_STRING, function(){ + return '[object ' + classof(this) + ']'; + }); + } + + // 20.2.1.9 Math[@@toStringTag] + setToStringTag(Math, MATH, true); + // 24.3.3 JSON[@@toStringTag] + setToStringTag(global.JSON, 'JSON', true); +}({}); + +/****************************************************************************** + * Module : es6.object.statics-accept-primitives * + ******************************************************************************/ + +!function(){ + // Object static methods accept primitives + function wrapObjectMethod(key, MODE){ + var fn = Object[key] + , exp = core[OBJECT][key] + , f = 0 + , o = {}; + if(!exp || isNative(exp)){ + o[key] = MODE == 1 ? function(it){ + return isObject(it) ? fn(it) : it; + } : MODE == 2 ? function(it){ + return isObject(it) ? fn(it) : true; + } : MODE == 3 ? function(it){ + return isObject(it) ? fn(it) : false; + } : MODE == 4 ? function(it, key){ + return fn(toObject(it), key); + } : function(it){ + return fn(toObject(it)); + }; + try { fn(DOT) } + catch(e){ f = 1 } + $define(STATIC + FORCED * f, OBJECT, o); + } + } + wrapObjectMethod('freeze', 1); + wrapObjectMethod('seal', 1); + wrapObjectMethod('preventExtensions', 1); + wrapObjectMethod('isFrozen', 2); + wrapObjectMethod('isSealed', 2); + wrapObjectMethod('isExtensible', 3); + wrapObjectMethod('getOwnPropertyDescriptor', 4); + wrapObjectMethod('getPrototypeOf'); + wrapObjectMethod('keys'); + wrapObjectMethod('getOwnPropertyNames'); +}(); + +/****************************************************************************** + * Module : es6.number * + ******************************************************************************/ + +!function(isInteger){ + $define(STATIC, NUMBER, { + // 20.1.2.1 Number.EPSILON + EPSILON: pow(2, -52), + // 20.1.2.2 Number.isFinite(number) + isFinite: function(it){ + return typeof it == 'number' && isFinite(it); + }, + // 20.1.2.3 Number.isInteger(number) + isInteger: isInteger, + // 20.1.2.4 Number.isNaN(number) + isNaN: sameNaN, + // 20.1.2.5 Number.isSafeInteger(number) + isSafeInteger: function(number){ + return isInteger(number) && abs(number) <= MAX_SAFE_INTEGER; + }, + // 20.1.2.6 Number.MAX_SAFE_INTEGER + MAX_SAFE_INTEGER: MAX_SAFE_INTEGER, + // 20.1.2.10 Number.MIN_SAFE_INTEGER + MIN_SAFE_INTEGER: -MAX_SAFE_INTEGER, + // 20.1.2.12 Number.parseFloat(string) + parseFloat: parseFloat, + // 20.1.2.13 Number.parseInt(string, radix) + parseInt: parseInt + }); +// 20.1.2.3 Number.isInteger(number) +}(Number.isInteger || function(it){ + return !isObject(it) && isFinite(it) && floor(it) === it; +}); + +/****************************************************************************** + * Module : es6.math * + ******************************************************************************/ + +// ECMAScript 6 shim +!function(){ + // 20.2.2.28 Math.sign(x) + var E = Math.E + , exp = Math.exp + , log = Math.log + , sqrt = Math.sqrt + , sign = Math.sign || function(x){ + return (x = +x) == 0 || x != x ? x : x < 0 ? -1 : 1; + }; + + // 20.2.2.5 Math.asinh(x) + function asinh(x){ + return !isFinite(x = +x) || x == 0 ? x : x < 0 ? -asinh(-x) : log(x + sqrt(x * x + 1)); + } + // 20.2.2.14 Math.expm1(x) + function expm1(x){ + return (x = +x) == 0 ? x : x > -1e-6 && x < 1e-6 ? x + x * x / 2 : exp(x) - 1; + } + + $define(STATIC, MATH, { + // 20.2.2.3 Math.acosh(x) + acosh: function(x){ + return (x = +x) < 1 ? NaN : isFinite(x) ? log(x / E + sqrt(x + 1) * sqrt(x - 1) / E) + 1 : x; + }, + // 20.2.2.5 Math.asinh(x) + asinh: asinh, + // 20.2.2.7 Math.atanh(x) + atanh: function(x){ + return (x = +x) == 0 ? x : log((1 + x) / (1 - x)) / 2; + }, + // 20.2.2.9 Math.cbrt(x) + cbrt: function(x){ + return sign(x = +x) * pow(abs(x), 1 / 3); + }, + // 20.2.2.11 Math.clz32(x) + clz32: function(x){ + return (x >>>= 0) ? 32 - x[TO_STRING](2).length : 32; + }, + // 20.2.2.12 Math.cosh(x) + cosh: function(x){ + return (exp(x = +x) + exp(-x)) / 2; + }, + // 20.2.2.14 Math.expm1(x) + expm1: expm1, + // 20.2.2.16 Math.fround(x) + // TODO: fallback for IE9- + fround: function(x){ + return new Float32Array([x])[0]; + }, + // 20.2.2.17 Math.hypot([value1[, value2[, … ]]]) + hypot: function(value1, value2){ + var sum = 0 + , len1 = arguments.length + , len2 = len1 + , args = Array(len1) + , larg = -Infinity + , arg; + while(len1--){ + arg = args[len1] = +arguments[len1]; + if(arg == Infinity || arg == -Infinity)return Infinity; + if(arg > larg)larg = arg; + } + larg = arg || 1; + while(len2--)sum += pow(args[len2] / larg, 2); + return larg * sqrt(sum); + }, + // 20.2.2.18 Math.imul(x, y) + imul: function(x, y){ + var UInt16 = 0xffff + , xn = +x + , yn = +y + , xl = UInt16 & xn + , yl = UInt16 & yn; + return 0 | xl * yl + ((UInt16 & xn >>> 16) * yl + xl * (UInt16 & yn >>> 16) << 16 >>> 0); + }, + // 20.2.2.20 Math.log1p(x) + log1p: function(x){ + return (x = +x) > -1e-8 && x < 1e-8 ? x - x * x / 2 : log(1 + x); + }, + // 20.2.2.21 Math.log10(x) + log10: function(x){ + return log(x) / Math.LN10; + }, + // 20.2.2.22 Math.log2(x) + log2: function(x){ + return log(x) / Math.LN2; + }, + // 20.2.2.28 Math.sign(x) + sign: sign, + // 20.2.2.30 Math.sinh(x) + sinh: function(x){ + return (abs(x = +x) < 1) ? (expm1(x) - expm1(-x)) / 2 : (exp(x - 1) - exp(-x - 1)) * (E / 2); + }, + // 20.2.2.33 Math.tanh(x) + tanh: function(x){ + var a = expm1(x = +x) + , b = expm1(-x); + return a == Infinity ? 1 : b == Infinity ? -1 : (a - b) / (exp(x) + exp(-x)); + }, + // 20.2.2.34 Math.trunc(x) + trunc: trunc + }); +}(); + +/****************************************************************************** + * Module : es6.string * + ******************************************************************************/ + +!function(RangeError, fromCharCode){ + function assertNotRegExp(it){ + if(cof(it) == REGEXP)throw TypeError(); + } + + $define(STATIC, STRING, { + // 21.1.2.2 String.fromCodePoint(...codePoints) + fromCodePoint: function(x){ + var res = [] + , len = arguments.length + , i = 0 + , code + while(len > i){ + code = +arguments[i++]; + if(toIndex(code, 0x10ffff) !== code)throw RangeError(code + ' is not a valid code point'); + res.push(code < 0x10000 + ? fromCharCode(code) + : fromCharCode(((code -= 0x10000) >> 10) + 0xd800, code % 0x400 + 0xdc00) + ); + } return res.join(''); + }, + // 21.1.2.4 String.raw(callSite, ...substitutions) + raw: function(callSite){ + var raw = toObject(callSite.raw) + , len = toLength(raw.length) + , sln = arguments.length + , res = [] + , i = 0; + while(len > i){ + res.push(String(raw[i++])); + if(i < sln)res.push(String(arguments[i])); + } return res.join(''); + } + }); + + $define(PROTO, STRING, { + // 21.1.3.3 String.prototype.codePointAt(pos) + codePointAt: createPointAt(false), + // 21.1.3.6 String.prototype.endsWith(searchString [, endPosition]) + endsWith: function(searchString /*, endPosition = @length */){ + assertNotRegExp(searchString); + var that = String(assertDefined(this)) + , endPosition = arguments[1] + , len = toLength(that.length) + , end = endPosition === undefined ? len : min(toLength(endPosition), len); + searchString += ''; + return that.slice(end - searchString.length, end) === searchString; + }, + // 21.1.3.7 String.prototype.includes(searchString, position = 0) + includes: function(searchString /*, position = 0 */){ + assertNotRegExp(searchString); + return !!~String(assertDefined(this)).indexOf(searchString, arguments[1]); + }, + // 21.1.3.13 String.prototype.repeat(count) + repeat: function(count){ + var str = String(assertDefined(this)) + , res = '' + , n = toInteger(count); + if(0 > n || n == Infinity)throw RangeError("Count can't be negative"); + for(;n > 0; (n >>>= 1) && (str += str))if(n & 1)res += str; + return res; + }, + // 21.1.3.18 String.prototype.startsWith(searchString [, position ]) + startsWith: function(searchString /*, position = 0 */){ + assertNotRegExp(searchString); + var that = String(assertDefined(this)) + , index = toLength(min(arguments[1], that.length)); + searchString += ''; + return that.slice(index, index + searchString.length) === searchString; + } + }); +}(global.RangeError, String.fromCharCode); + +/****************************************************************************** + * Module : es6.array * + ******************************************************************************/ + +!function(){ + $define(STATIC, ARRAY, { + // 22.1.2.1 Array.from(arrayLike, mapfn = undefined, thisArg = undefined) + from: function(arrayLike/*, mapfn = undefined, thisArg = undefined*/){ + var O = Object(assertDefined(arrayLike)) + , result = new (generic(this, Array)) + , mapfn = arguments[1] + , that = arguments[2] + , mapping = mapfn !== undefined + , f = mapping ? ctx(mapfn, that, 2) : undefined + , index = 0 + , length; + if(isIterable(O))for(var iter = getIterator(O), step; !(step = iter.next()).done; index++){ + result[index] = mapping ? f(step.value, index) : step.value; + } else for(length = toLength(O.length); length > index; index++){ + result[index] = mapping ? f(O[index], index) : O[index]; + } + result.length = index; + return result; + }, + // 22.1.2.3 Array.of( ...items) + of: function(/* ...args */){ + var index = 0 + , length = arguments.length + , result = new (generic(this, Array))(length); + while(length > index)result[index] = arguments[index++]; + result.length = length; + return result; + } + }); + + $define(PROTO, ARRAY, { + // 22.1.3.3 Array.prototype.copyWithin(target, start, end = this.length) + copyWithin: function(target /* = 0 */, start /* = 0, end = @length */){ + var O = Object(assertDefined(this)) + , len = toLength(O.length) + , to = toIndex(target, len) + , from = toIndex(start, len) + , end = arguments[2] + , fin = end === undefined ? len : toIndex(end, len) + , count = min(fin - from, len - to) + , inc = 1; + if(from < to && to < from + count){ + inc = -1; + from = from + count - 1; + to = to + count - 1; + } + while(count-- > 0){ + if(from in O)O[to] = O[from]; + else delete O[to]; + to += inc; + from += inc; + } return O; + }, + // 22.1.3.6 Array.prototype.fill(value, start = 0, end = this.length) + fill: function(value /*, start = 0, end = @length */){ + var O = Object(assertDefined(this)) + , length = toLength(O.length) + , index = toIndex(arguments[1], length) + , end = arguments[2] + , endPos = end === undefined ? length : toIndex(end, length); + while(endPos > index)O[index++] = value; + return O; + }, + // 22.1.3.8 Array.prototype.find(predicate, thisArg = undefined) + find: createArrayMethod(5), + // 22.1.3.9 Array.prototype.findIndex(predicate, thisArg = undefined) + findIndex: createArrayMethod(6) + }); + + if(framework){ + // 22.1.3.31 Array.prototype[@@unscopables] + forEach.call(array('find,findIndex,fill,copyWithin,entries,keys,values'), function(it){ + ArrayUnscopables[it] = true; + }); + SYMBOL_UNSCOPABLES in ArrayProto || hidden(ArrayProto, SYMBOL_UNSCOPABLES, ArrayUnscopables); + } + + setSpecies(Array); +}(); + +/****************************************************************************** + * Module : es6.iterators * + ******************************************************************************/ + +!function(at){ + // 22.1.3.4 Array.prototype.entries() + // 22.1.3.13 Array.prototype.keys() + // 22.1.3.29 Array.prototype.values() + // 22.1.3.30 Array.prototype[@@iterator]() + defineStdIterators(Array, ARRAY, function(iterated, kind){ + set(this, ITER, {o: toObject(iterated), i: 0, k: kind}); + // 22.1.5.2.1 %ArrayIteratorPrototype%.next() + }, function(){ + var iter = this[ITER] + , O = iter.o + , kind = iter.k + , index = iter.i++; + if(!O || index >= O.length)return iter.o = undefined, iterResult(1); + if(kind == KEY) return iterResult(0, index); + if(kind == VALUE)return iterResult(0, O[index]); + return iterResult(0, [index, O[index]]); + }, VALUE); + + // argumentsList[@@iterator] is %ArrayProto_values% (9.4.4.6, 9.4.4.7) + Iterators[ARGUMENTS] = Iterators[ARRAY]; + + // 21.1.3.27 String.prototype[@@iterator]() + defineStdIterators(String, STRING, function(iterated){ + set(this, ITER, {o: String(iterated), i: 0}); + // 21.1.5.2.1 %StringIteratorPrototype%.next() + }, function(){ + var iter = this[ITER] + , O = iter.o + , index = iter.i + , point; + if(index >= O.length)return iterResult(1); + point = at.call(O, index); + iter.i += point.length; + return iterResult(0, point); + }); +}(createPointAt(true)); + +/****************************************************************************** + * Module : web.immediate * + ******************************************************************************/ + +// setImmediate shim +// Node.js 0.9+ & IE10+ has setImmediate, else: +isFunction(setImmediate) && isFunction(clearImmediate) || function(ONREADYSTATECHANGE){ + var postMessage = global.postMessage + , addEventListener = global.addEventListener + , MessageChannel = global.MessageChannel + , counter = 0 + , queue = {} + , defer, channel, port; + setImmediate = function(fn){ + var args = [], i = 1; + while(arguments.length > i)args.push(arguments[i++]); + queue[++counter] = function(){ + invoke(isFunction(fn) ? fn : Function(fn), args); + } + defer(counter); + return counter; + } + clearImmediate = function(id){ + delete queue[id]; + } + function run(id){ + if(has(queue, id)){ + var fn = queue[id]; + delete queue[id]; + fn(); + } + } + function listner(event){ + run(event.data); + } + // Node.js 0.8- + if(NODE){ + defer = function(id){ + nextTick(part.call(run, id)); + } + // Modern browsers, skip implementation for WebWorkers + // IE8 has postMessage, but it's sync & typeof its postMessage is object + } else if(addEventListener && isFunction(postMessage) && !global.importScripts){ + defer = function(id){ + postMessage(id, '*'); + } + addEventListener('message', listner, false); + // WebWorkers + } else if(isFunction(MessageChannel)){ + channel = new MessageChannel; + port = channel.port2; + channel.port1.onmessage = listner; + defer = ctx(port.postMessage, port, 1); + // IE8- + } else if(document && ONREADYSTATECHANGE in document[CREATE_ELEMENT]('script')){ + defer = function(id){ + html.appendChild(document[CREATE_ELEMENT]('script'))[ONREADYSTATECHANGE] = function(){ + html.removeChild(this); + run(id); + } + } + // Rest old browsers + } else { + defer = function(id){ + setTimeout(run, 0, id); + } + } +}('onreadystatechange'); +$define(GLOBAL + BIND, { + setImmediate: setImmediate, + clearImmediate: clearImmediate +}); + +/****************************************************************************** + * Module : es6.promise * + ******************************************************************************/ + +// ES6 promises shim +// Based on https://github.com/getify/native-promise-only/ +!function(Promise, test){ + isFunction(Promise) && isFunction(Promise.resolve) + && Promise.resolve(test = new Promise(function(){})) == test + || function(asap, DEF){ + function isThenable(o){ + var then; + if(isObject(o))then = o.then; + return isFunction(then) ? then : false; + } + function notify(def){ + var chain = def.chain; + chain.length && asap(function(){ + var msg = def.msg + , ok = def.state == 1 + , i = 0; + while(chain.length > i)!function(react){ + var cb = ok ? react.ok : react.fail + , ret, then; + try { + if(cb){ + ret = cb === true ? msg : cb(msg); + if(ret === react.P){ + react.rej(TypeError(PROMISE + '-chain cycle')); + } else if(then = isThenable(ret)){ + then.call(ret, react.res, react.rej); + } else react.res(ret); + } else react.rej(msg); + } catch(err){ + react.rej(err); + } + }(chain[i++]); + chain.length = 0; + }); + } + function resolve(msg){ + var def = this + , then, wrapper; + if(def.done)return; + def.done = true; + def = def.def || def; // unwrap + try { + if(then = isThenable(msg)){ + wrapper = {def: def, done: false}; // wrap + then.call(msg, ctx(resolve, wrapper, 1), ctx(reject, wrapper, 1)); + } else { + def.msg = msg; + def.state = 1; + notify(def); + } + } catch(err){ + reject.call(wrapper || {def: def, done: false}, err); // wrap + } + } + function reject(msg){ + var def = this; + if(def.done)return; + def.done = true; + def = def.def || def; // unwrap + def.msg = msg; + def.state = 2; + notify(def); + } + function getConstructor(C){ + var S = assertObject(C)[SYMBOL_SPECIES]; + return S != undefined ? S : C; + } + // 25.4.3.1 Promise(executor) + Promise = function(executor){ + assertFunction(executor); + assertInstance(this, Promise, PROMISE); + var def = {chain: [], state: 0, done: false, msg: undefined}; + hidden(this, DEF, def); + try { + executor(ctx(resolve, def, 1), ctx(reject, def, 1)); + } catch(err){ + reject.call(def, err); + } + } + assignHidden(Promise[PROTOTYPE], { + // 25.4.5.3 Promise.prototype.then(onFulfilled, onRejected) + then: function(onFulfilled, onRejected){ + var S = assertObject(assertObject(this)[CONSTRUCTOR])[SYMBOL_SPECIES]; + var react = { + ok: isFunction(onFulfilled) ? onFulfilled : true, + fail: isFunction(onRejected) ? onRejected : false + } , P = react.P = new (S != undefined ? S : Promise)(function(resolve, reject){ + react.res = assertFunction(resolve); + react.rej = assertFunction(reject); + }), def = this[DEF]; + def.chain.push(react); + def.state && notify(def); + return P; + }, + // 25.4.5.1 Promise.prototype.catch(onRejected) + 'catch': function(onRejected){ + return this.then(undefined, onRejected); + } + }); + assignHidden(Promise, { + // 25.4.4.1 Promise.all(iterable) + all: function(iterable){ + var Promise = getConstructor(this) + , values = []; + return new Promise(function(resolve, reject){ + forOf(iterable, false, push, values); + var remaining = values.length + , results = Array(remaining); + if(remaining)forEach.call(values, function(promise, index){ + Promise.resolve(promise).then(function(value){ + results[index] = value; + --remaining || resolve(results); + }, reject); + }); + else resolve(results); + }); + }, + // 25.4.4.4 Promise.race(iterable) + race: function(iterable){ + var Promise = getConstructor(this); + return new Promise(function(resolve, reject){ + forOf(iterable, false, function(promise){ + Promise.resolve(promise).then(resolve, reject); + }); + }); + }, + // 25.4.4.5 Promise.reject(r) + reject: function(r){ + return new (getConstructor(this))(function(resolve, reject){ + reject(r); + }); + }, + // 25.4.4.6 Promise.resolve(x) + resolve: function(x){ + return isObject(x) && DEF in x && getPrototypeOf(x) === this[PROTOTYPE] + ? x : new (getConstructor(this))(function(resolve, reject){ + resolve(x); + }); + } + }); + }(nextTick || setImmediate, safeSymbol('def')); + setToStringTag(Promise, PROMISE); + setSpecies(Promise); + $define(GLOBAL + FORCED * !isNative(Promise), {Promise: Promise}); +}(global[PROMISE]); + +/****************************************************************************** + * Module : es6.collections * + ******************************************************************************/ + +// ECMAScript 6 collections shim +!function(){ + var UID = safeSymbol('uid') + , O1 = safeSymbol('O1') + , WEAK = safeSymbol('weak') + , LEAK = safeSymbol('leak') + , LAST = safeSymbol('last') + , FIRST = safeSymbol('first') + , SIZE = DESC ? safeSymbol('size') : 'size' + , uid = 0 + , tmp = {}; + + function getCollection(C, NAME, methods, commonMethods, isMap, isWeak){ + var ADDER = isMap ? 'set' : 'add' + , proto = C && C[PROTOTYPE] + , O = {}; + function initFromIterable(that, iterable){ + if(iterable != undefined)forOf(iterable, isMap, that[ADDER], that); + return that; + } + function fixSVZ(key, chain){ + var method = proto[key]; + if(framework)proto[key] = function(a, b){ + var result = method.call(this, a === 0 ? 0 : a, b); + return chain ? this : result; + }; + } + if(!isNative(C) || !(isWeak || (!BUGGY_ITERATORS && has(proto, FOR_EACH) && has(proto, 'entries')))){ + // create collection constructor + C = isWeak + ? function(iterable){ + assertInstance(this, C, NAME); + set(this, UID, uid++); + initFromIterable(this, iterable); + } + : function(iterable){ + var that = this; + assertInstance(that, C, NAME); + set(that, O1, create(null)); + set(that, SIZE, 0); + set(that, LAST, undefined); + set(that, FIRST, undefined); + initFromIterable(that, iterable); + }; + assignHidden(assignHidden(C[PROTOTYPE], methods), commonMethods); + isWeak || defineProperty(C[PROTOTYPE], 'size', {get: function(){ + return assertDefined(this[SIZE]); + }}); + } else { + var Native = C + , inst = new C + , chain = inst[ADDER](isWeak ? {} : -0, 1) + , buggyZero; + // wrap to init collections from iterable + if(!NATIVE_ITERATORS || !C.length){ + C = function(iterable){ + assertInstance(this, C, NAME); + return initFromIterable(new Native, iterable); + } + C[PROTOTYPE] = proto; + if(framework)proto[CONSTRUCTOR] = C; + } + isWeak || inst[FOR_EACH](function(val, key){ + buggyZero = 1 / key === -Infinity; + }); + // fix converting -0 key to +0 + if(buggyZero){ + fixSVZ('delete'); + fixSVZ('has'); + isMap && fixSVZ('get'); + } + // + fix .add & .set for chaining + if(buggyZero || chain !== inst)fixSVZ(ADDER, true); + } + setToStringTag(C, NAME); + setSpecies(C); + + O[NAME] = C; + $define(GLOBAL + WRAP + FORCED * !isNative(C), O); + + // add .keys, .values, .entries, [@@iterator] + // 23.1.3.4, 23.1.3.8, 23.1.3.11, 23.1.3.12, 23.2.3.5, 23.2.3.8, 23.2.3.10, 23.2.3.11 + isWeak || defineStdIterators(C, NAME, function(iterated, kind){ + set(this, ITER, {o: iterated, k: kind}); + }, function(){ + var iter = this[ITER] + , kind = iter.k + , entry = iter.l; + // revert to the last existing entry + while(entry && entry.r)entry = entry.p; + // get next entry + if(!iter.o || !(iter.l = entry = entry ? entry.n : iter.o[FIRST])){ + // or finish the iteration + return iter.o = undefined, iterResult(1); + } + // return step by kind + if(kind == KEY) return iterResult(0, entry.k); + if(kind == VALUE)return iterResult(0, entry.v); + return iterResult(0, [entry.k, entry.v]); + }, isMap ? KEY+VALUE : VALUE, !isMap); + + return C; + } + + function fastKey(it, create){ + // return primitive with prefix + if(!isObject(it))return (typeof it == 'string' ? 'S' : 'P') + it; + // can't set id to frozen object + if(isFrozen(it))return 'F'; + if(!has(it, UID)){ + // not necessary to add id + if(!create)return 'E'; + // add missing object id + hidden(it, UID, ++uid); + // return object id with prefix + } return 'O' + it[UID]; + } + function getEntry(that, key){ + // fast case + var index = fastKey(key), entry; + if(index != 'F')return that[O1][index]; + // frozen object case + for(entry = that[FIRST]; entry; entry = entry.n){ + if(entry.k == key)return entry; + } + } + function def(that, key, value){ + var entry = getEntry(that, key) + , prev, index; + // change existing entry + if(entry)entry.v = value; + // create new entry + else { + that[LAST] = entry = { + i: index = fastKey(key, true), // <- index + k: key, // <- key + v: value, // <- value + p: prev = that[LAST], // <- previous entry + n: undefined, // <- next entry + r: false // <- removed + }; + if(!that[FIRST])that[FIRST] = entry; + if(prev)prev.n = entry; + that[SIZE]++; + // add to index + if(index != 'F')that[O1][index] = entry; + } return that; + } + + var collectionMethods = { + // 23.1.3.1 Map.prototype.clear() + // 23.2.3.2 Set.prototype.clear() + clear: function(){ + for(var that = this, data = that[O1], entry = that[FIRST]; entry; entry = entry.n){ + entry.r = true; + entry.p = entry.n = undefined; + delete data[entry.i]; + } + that[FIRST] = that[LAST] = undefined; + that[SIZE] = 0; + }, + // 23.1.3.3 Map.prototype.delete(key) + // 23.2.3.4 Set.prototype.delete(value) + 'delete': function(key){ + var that = this + , entry = getEntry(that, key); + if(entry){ + var next = entry.n + , prev = entry.p; + delete that[O1][entry.i]; + entry.r = true; + if(prev)prev.n = next; + if(next)next.p = prev; + if(that[FIRST] == entry)that[FIRST] = next; + if(that[LAST] == entry)that[LAST] = prev; + that[SIZE]--; + } return !!entry; + }, + // 23.2.3.6 Set.prototype.forEach(callbackfn, thisArg = undefined) + // 23.1.3.5 Map.prototype.forEach(callbackfn, thisArg = undefined) + forEach: function(callbackfn /*, that = undefined */){ + var f = ctx(callbackfn, arguments[1], 3) + , entry; + while(entry = entry ? entry.n : this[FIRST]){ + f(entry.v, entry.k, this); + // revert to the last existing entry + while(entry && entry.r)entry = entry.p; + } + }, + // 23.1.3.7 Map.prototype.has(key) + // 23.2.3.7 Set.prototype.has(value) + has: function(key){ + return !!getEntry(this, key); + } + } + + // 23.1 Map Objects + Map = getCollection(Map, MAP, { + // 23.1.3.6 Map.prototype.get(key) + get: function(key){ + var entry = getEntry(this, key); + return entry && entry.v; + }, + // 23.1.3.9 Map.prototype.set(key, value) + set: function(key, value){ + return def(this, key === 0 ? 0 : key, value); + } + }, collectionMethods, true); + + // 23.2 Set Objects + Set = getCollection(Set, SET, { + // 23.2.3.1 Set.prototype.add(value) + add: function(value){ + return def(this, value = value === 0 ? 0 : value, value); + } + }, collectionMethods); + + function defWeak(that, key, value){ + if(isFrozen(assertObject(key)))leakStore(that).set(key, value); + else { + has(key, WEAK) || hidden(key, WEAK, {}); + key[WEAK][that[UID]] = value; + } return that; + } + function leakStore(that){ + return that[LEAK] || hidden(that, LEAK, new Map)[LEAK]; + } + + var weakMethods = { + // 23.3.3.2 WeakMap.prototype.delete(key) + // 23.4.3.3 WeakSet.prototype.delete(value) + 'delete': function(key){ + if(!isObject(key))return false; + if(isFrozen(key))return leakStore(this)['delete'](key); + return has(key, WEAK) && has(key[WEAK], this[UID]) && delete key[WEAK][this[UID]]; + }, + // 23.3.3.4 WeakMap.prototype.has(key) + // 23.4.3.4 WeakSet.prototype.has(value) + has: function(key){ + if(!isObject(key))return false; + if(isFrozen(key))return leakStore(this).has(key); + return has(key, WEAK) && has(key[WEAK], this[UID]); + } + }; + + // 23.3 WeakMap Objects + WeakMap = getCollection(WeakMap, WEAKMAP, { + // 23.3.3.3 WeakMap.prototype.get(key) + get: function(key){ + if(isObject(key)){ + if(isFrozen(key))return leakStore(this).get(key); + if(has(key, WEAK))return key[WEAK][this[UID]]; + } + }, + // 23.3.3.5 WeakMap.prototype.set(key, value) + set: function(key, value){ + return defWeak(this, key, value); + } + }, weakMethods, true, true); + + // IE11 WeakMap frozen keys fix + if(framework && new WeakMap().set(Object.freeze(tmp), 7).get(tmp) != 7){ + forEach.call(array('delete,has,get,set'), function(key){ + var method = WeakMap[PROTOTYPE][key]; + WeakMap[PROTOTYPE][key] = function(a, b){ + // store frozen objects on leaky map + if(isObject(a) && isFrozen(a)){ + var result = leakStore(this)[key](a, b); + return key == 'set' ? this : result; + // store all the rest on native weakmap + } return method.call(this, a, b); + }; + }); + } + + // 23.4 WeakSet Objects + WeakSet = getCollection(WeakSet, WEAKSET, { + // 23.4.3.1 WeakSet.prototype.add(value) + add: function(value){ + return defWeak(this, value, true); + } + }, weakMethods, false, true); +}(); + +/****************************************************************************** + * Module : es6.reflect * + ******************************************************************************/ + +!function(){ + function Enumerate(iterated){ + var keys = [], key; + for(key in iterated)keys.push(key); + set(this, ITER, {o: iterated, a: keys, i: 0}); + } + createIterator(Enumerate, OBJECT, function(){ + var iter = this[ITER] + , keys = iter.a + , key; + do { + if(iter.i >= keys.length)return iterResult(1); + } while(!((key = keys[iter.i++]) in iter.o)); + return iterResult(0, key); + }); + + function wrap(fn){ + return function(it){ + assertObject(it); + try { + return fn.apply(undefined, arguments), true; + } catch(e){ + return false; + } + } + } + + function reflectGet(target, propertyKey/*, receiver*/){ + var receiver = arguments.length < 3 ? target : arguments[2] + , desc = getOwnDescriptor(assertObject(target), propertyKey), proto; + if(desc)return desc.get ? desc.get.call(receiver) : desc.value; + return isObject(proto = getPrototypeOf(target)) ? reflectGet(proto, propertyKey, receiver) : undefined; + } + function reflectSet(target, propertyKey, V/*, receiver*/){ + var receiver = arguments.length < 4 ? target : arguments[3] + , desc = getOwnDescriptor(assertObject(target), propertyKey), proto; + if(desc){ + if(desc.writable === false)return false; + if(desc.set)return desc.set.call(receiver, V), true; + } + if(isObject(proto = getPrototypeOf(target)))return reflectSet(proto, propertyKey, V, receiver); + desc = getOwnDescriptor(receiver, propertyKey) || descriptor(0); + desc.value = V; + return defineProperty(receiver, propertyKey, desc), true; + } + var isExtensible = Object.isExtensible || returnIt; + + var reflect = { + // 26.1.1 Reflect.apply(target, thisArgument, argumentsList) + apply: ctx(call, apply, 3), + // 26.1.2 Reflect.construct(target, argumentsList [, newTarget]) + construct: construct, + // 26.1.3 Reflect.defineProperty(target, propertyKey, attributes) + defineProperty: wrap(defineProperty), + // 26.1.4 Reflect.deleteProperty(target, propertyKey) + deleteProperty: function(target, propertyKey){ + var desc = getOwnDescriptor(assertObject(target), propertyKey); + return desc && !desc.configurable ? false : delete target[propertyKey]; + }, + // 26.1.5 Reflect.enumerate(target) + enumerate: function(target){ + return new Enumerate(assertObject(target)); + }, + // 26.1.6 Reflect.get(target, propertyKey [, receiver]) + get: reflectGet, + // 26.1.7 Reflect.getOwnPropertyDescriptor(target, propertyKey) + getOwnPropertyDescriptor: function(target, propertyKey){ + return getOwnDescriptor(assertObject(target), propertyKey); + }, + // 26.1.8 Reflect.getPrototypeOf(target) + getPrototypeOf: function(target){ + return getPrototypeOf(assertObject(target)); + }, + // 26.1.9 Reflect.has(target, propertyKey) + has: function(target, propertyKey){ + return propertyKey in target; + }, + // 26.1.10 Reflect.isExtensible(target) + isExtensible: function(target){ + return !!isExtensible(assertObject(target)); + }, + // 26.1.11 Reflect.ownKeys(target) + ownKeys: ownKeys, + // 26.1.12 Reflect.preventExtensions(target) + preventExtensions: wrap(Object.preventExtensions || returnIt), + // 26.1.13 Reflect.set(target, propertyKey, V [, receiver]) + set: reflectSet + } + // 26.1.14 Reflect.setPrototypeOf(target, proto) + if(setPrototypeOf)reflect.setPrototypeOf = function(target, proto){ + return setPrototypeOf(assertObject(target), proto), true; + }; + + $define(GLOBAL, {Reflect: {}}); + $define(STATIC, 'Reflect', reflect); +}(); + +/****************************************************************************** + * Module : es7.proposals * + ******************************************************************************/ + +!function(){ + $define(PROTO, ARRAY, { + // https://github.com/domenic/Array.prototype.includes + includes: createArrayContains(true) + }); + $define(PROTO, STRING, { + // https://github.com/mathiasbynens/String.prototype.at + at: createPointAt(true) + }); + + function createObjectToArray(isEntries){ + return function(object){ + var O = toObject(object) + , keys = getKeys(object) + , length = keys.length + , i = 0 + , result = Array(length) + , key; + if(isEntries)while(length > i)result[i] = [key = keys[i++], O[key]]; + else while(length > i)result[i] = O[keys[i++]]; + return result; + } + } + $define(STATIC, OBJECT, { + // https://github.com/rwaldron/tc39-notes/blob/master/es6/2014-04/apr-9.md#51-objectentries-objectvalues + values: createObjectToArray(false), + entries: createObjectToArray(true) + }); + $define(STATIC, REGEXP, { + // https://gist.github.com/kangax/9698100 + escape: createReplacer(/([\\\-[\]{}()*+?.,^$|])/g, '\\$1', true) + }); +}(); + +/****************************************************************************** + * Module : es7.abstract-refs * + ******************************************************************************/ + +// https://github.com/zenparsing/es-abstract-refs +!function(REFERENCE){ + REFERENCE_GET = getWellKnownSymbol(REFERENCE+'Get', true); + var REFERENCE_SET = getWellKnownSymbol(REFERENCE+SET, true) + , REFERENCE_DELETE = getWellKnownSymbol(REFERENCE+'Delete', true); + + $define(STATIC, SYMBOL, { + referenceGet: REFERENCE_GET, + referenceSet: REFERENCE_SET, + referenceDelete: REFERENCE_DELETE + }); + + hidden(FunctionProto, REFERENCE_GET, returnThis); + + function setMapMethods(Constructor){ + if(Constructor){ + var MapProto = Constructor[PROTOTYPE]; + hidden(MapProto, REFERENCE_GET, MapProto.get); + hidden(MapProto, REFERENCE_SET, MapProto.set); + hidden(MapProto, REFERENCE_DELETE, MapProto['delete']); + } + } + setMapMethods(Map); + setMapMethods(WeakMap); +}('reference'); + +/****************************************************************************** + * Module : core.dict * + ******************************************************************************/ + +!function(DICT){ + Dict = function(iterable){ + var dict = create(null); + if(iterable != undefined){ + if(isIterable(iterable)){ + for(var iter = getIterator(iterable), step, value; !(step = iter.next()).done;){ + value = step.value; + dict[value[0]] = value[1]; + } + } else assign(dict, iterable); + } + return dict; + } + Dict[PROTOTYPE] = null; + + function DictIterator(iterated, kind){ + set(this, ITER, {o: toObject(iterated), a: getKeys(iterated), i: 0, k: kind}); + } + createIterator(DictIterator, DICT, function(){ + var iter = this[ITER] + , O = iter.o + , keys = iter.a + , kind = iter.k + , key; + do { + if(iter.i >= keys.length)return iterResult(1); + } while(!has(O, key = keys[iter.i++])); + if(kind == KEY) return iterResult(0, key); + if(kind == VALUE)return iterResult(0, O[key]); + return iterResult(0, [key, O[key]]); + }); + function createDictIter(kind){ + return function(it){ + return new DictIterator(it, kind); + } + } + + /* + * 0 -> forEach + * 1 -> map + * 2 -> filter + * 3 -> some + * 4 -> every + * 5 -> find + * 6 -> findKey + * 7 -> mapPairs + */ + function createDictMethod(type){ + var isMap = type == 1 + , isEvery = type == 4; + return function(object, callbackfn, that /* = undefined */){ + var f = ctx(callbackfn, that, 3) + , O = toObject(object) + , result = isMap || type == 7 || type == 2 ? new (generic(this, Dict)) : undefined + , key, val, res; + for(key in O)if(has(O, key)){ + val = O[key]; + res = f(val, key, object); + if(type){ + if(isMap)result[key] = res; // map + else if(res)switch(type){ + case 2: result[key] = val; break // filter + case 3: return true; // some + case 5: return val; // find + case 6: return key; // findKey + case 7: result[res[0]] = res[1]; // mapPairs + } else if(isEvery)return false; // every + } + } + return type == 3 || isEvery ? isEvery : result; + } + } + function createDictReduce(isTurn){ + return function(object, mapfn, init){ + assertFunction(mapfn); + var O = toObject(object) + , keys = getKeys(O) + , length = keys.length + , i = 0 + , memo, key, result; + if(isTurn)memo = init == undefined ? new (generic(this, Dict)) : Object(init); + else if(arguments.length < 3){ + assert(length, REDUCE_ERROR); + memo = O[keys[i++]]; + } else memo = Object(init); + while(length > i)if(has(O, key = keys[i++])){ + result = mapfn(memo, O[key], key, object); + if(isTurn){ + if(result === false)break; + } else memo = result; + } + return memo; + } + } + var findKey = createDictMethod(6); + function includes(object, el){ + return (el == el ? keyOf(object, el) : findKey(object, sameNaN)) !== undefined; + } + + var dictMethods = { + keys: createDictIter(KEY), + values: createDictIter(VALUE), + entries: createDictIter(KEY+VALUE), + forEach: createDictMethod(0), + map: createDictMethod(1), + filter: createDictMethod(2), + some: createDictMethod(3), + every: createDictMethod(4), + find: createDictMethod(5), + findKey: findKey, + mapPairs:createDictMethod(7), + reduce: createDictReduce(false), + turn: createDictReduce(true), + keyOf: keyOf, + includes:includes, + // Has / get / set own property + has: has, + get: get, + set: createDefiner(0), + isDict: function(it){ + return isObject(it) && getPrototypeOf(it) === Dict[PROTOTYPE]; + } + }; + + if(REFERENCE_GET)for(var key in dictMethods)!function(fn){ + function method(){ + for(var args = [this], i = 0; i < arguments.length;)args.push(arguments[i++]); + return invoke(fn, args); + } + fn[REFERENCE_GET] = function(){ + return method; + } + }(dictMethods[key]); + + $define(GLOBAL + FORCED, {Dict: assignHidden(Dict, dictMethods)}); +}('Dict'); + +/****************************************************************************** + * Module : core.$for * + ******************************************************************************/ + +!function(ENTRIES, FN){ + function $for(iterable, entries){ + if(!(this instanceof $for))return new $for(iterable, entries); + this[ITER] = getIterator(iterable); + this[ENTRIES] = !!entries; + } + + createIterator($for, 'Wrapper', function(){ + return this[ITER].next(); + }); + var $forProto = $for[PROTOTYPE]; + setIterator($forProto, function(){ + return this[ITER]; // unwrap + }); + + function createChainIterator(next){ + function Iter(I, fn, that){ + this[ITER] = getIterator(I); + this[ENTRIES] = I[ENTRIES]; + this[FN] = ctx(fn, that, I[ENTRIES] ? 2 : 1); + } + createIterator(Iter, 'Chain', next, $forProto); + setIterator(Iter[PROTOTYPE], returnThis); // override $forProto iterator + return Iter; + } + + var MapIter = createChainIterator(function(){ + var step = this[ITER].next(); + return step.done ? step : iterResult(0, stepCall(this[FN], step.value, this[ENTRIES])); + }); + + var FilterIter = createChainIterator(function(){ + for(;;){ + var step = this[ITER].next(); + if(step.done || stepCall(this[FN], step.value, this[ENTRIES]))return step; + } + }); + + assignHidden($forProto, { + of: function(fn, that){ + forOf(this, this[ENTRIES], fn, that); + }, + array: function(fn, that){ + var result = []; + forOf(fn != undefined ? this.map(fn, that) : this, false, push, result); + return result; + }, + filter: function(fn, that){ + return new FilterIter(this, fn, that); + }, + map: function(fn, that){ + return new MapIter(this, fn, that); + } + }); + + $for.isIterable = isIterable; + $for.getIterator = getIterator; + + $define(GLOBAL + FORCED, {$for: $for}); +}('entries', safeSymbol('fn')); + +/****************************************************************************** + * Module : core.binding * + ******************************************************************************/ + +!function(_, toLocaleString){ + // Placeholder + core._ = path._ = path._ || {}; + + $define(PROTO + FORCED, FUNCTION, { + part: part, + only: function(numberArguments, that /* = @ */){ + var fn = assertFunction(this) + , n = toLength(numberArguments) + , isThat = arguments.length > 1; + return function(/* ...args */){ + var length = min(n, arguments.length) + , args = Array(length) + , i = 0; + while(length > i)args[i] = arguments[i++]; + return invoke(fn, args, isThat ? that : this); + } + } + }); + + function tie(key){ + var that = this + , bound = {}; + return hidden(that, _, function(key){ + if(key === undefined || !(key in that))return toLocaleString.call(that); + return has(bound, key) ? bound[key] : (bound[key] = ctx(that[key], that, -1)); + })[_](key); + } + + hidden(path._, TO_STRING, function(){ + return _; + }); + + hidden(ObjectProto, _, tie); + DESC || hidden(ArrayProto, _, tie); + // IE8- dirty hack - redefined toLocaleString is not enumerable +}(DESC ? uid('tie') : TO_LOCALE, ObjectProto[TO_LOCALE]); + +/****************************************************************************** + * Module : core.object * + ******************************************************************************/ + +!function(){ + function define(target, mixin){ + var keys = ownKeys(toObject(mixin)) + , length = keys.length + , i = 0, key; + while(length > i)defineProperty(target, key = keys[i++], getOwnDescriptor(mixin, key)); + return target; + }; + $define(STATIC + FORCED, OBJECT, { + isObject: isObject, + classof: classof, + define: define, + make: function(proto, mixin){ + return define(create(proto), mixin); + } + }); +}(); + +/****************************************************************************** + * Module : core.array * + ******************************************************************************/ + +$define(PROTO + FORCED, ARRAY, { + turn: function(fn, target /* = [] */){ + assertFunction(fn); + var memo = target == undefined ? [] : Object(target) + , O = ES5Object(this) + , length = toLength(O.length) + , index = 0; + while(length > index)if(fn(memo, O[index], index++, this) === false)break; + return memo; + } +}); +if(framework)ArrayUnscopables.turn = true; + +/****************************************************************************** + * Module : core.number * + ******************************************************************************/ + +!function(numberMethods){ + function NumberIterator(iterated){ + set(this, ITER, {l: toLength(iterated), i: 0}); + } + createIterator(NumberIterator, NUMBER, function(){ + var iter = this[ITER] + , i = iter.i++; + return i < iter.l ? iterResult(0, i) : iterResult(1); + }); + defineIterator(Number, NUMBER, function(){ + return new NumberIterator(this); + }); + + numberMethods.random = function(lim /* = 0 */){ + var a = +this + , b = lim == undefined ? 0 : +lim + , m = min(a, b); + return random() * (max(a, b) - m) + m; + }; + + forEach.call(array( + // ES3: + 'round,floor,ceil,abs,sin,asin,cos,acos,tan,atan,exp,sqrt,max,min,pow,atan2,' + + // ES6: + 'acosh,asinh,atanh,cbrt,clz32,cosh,expm1,hypot,imul,log1p,log10,log2,sign,sinh,tanh,trunc' + ), function(key){ + var fn = Math[key]; + if(fn)numberMethods[key] = function(/* ...args */){ + // ie9- dont support strict mode & convert `this` to object -> convert it to number + var args = [+this] + , i = 0; + while(arguments.length > i)args.push(arguments[i++]); + return invoke(fn, args); + } + } + ); + + $define(PROTO + FORCED, NUMBER, numberMethods); +}({}); + +/****************************************************************************** + * Module : core.string * + ******************************************************************************/ + +!function(){ + var escapeHTMLDict = { + '&': '&', + '<': '<', + '>': '>', + '"': '"', + "'": ''' + }, unescapeHTMLDict = {}, key; + for(key in escapeHTMLDict)unescapeHTMLDict[escapeHTMLDict[key]] = key; + $define(PROTO + FORCED, STRING, { + escapeHTML: createReplacer(/[&<>"']/g, escapeHTMLDict), + unescapeHTML: createReplacer(/&(?:amp|lt|gt|quot|apos);/g, unescapeHTMLDict) + }); +}(); + +/****************************************************************************** + * Module : core.date * + ******************************************************************************/ + +!function(formatRegExp, flexioRegExp, locales, current, SECONDS, MINUTES, HOURS, MONTH, YEAR){ + function createFormat(prefix){ + return function(template, locale /* = current */){ + var that = this + , dict = locales[has(locales, locale) ? locale : current]; + function get(unit){ + return that[prefix + unit](); + } + return String(template).replace(formatRegExp, function(part){ + switch(part){ + case 's' : return get(SECONDS); // Seconds : 0-59 + case 'ss' : return lz(get(SECONDS)); // Seconds : 00-59 + case 'm' : return get(MINUTES); // Minutes : 0-59 + case 'mm' : return lz(get(MINUTES)); // Minutes : 00-59 + case 'h' : return get(HOURS); // Hours : 0-23 + case 'hh' : return lz(get(HOURS)); // Hours : 00-23 + case 'D' : return get(DATE); // Date : 1-31 + case 'DD' : return lz(get(DATE)); // Date : 01-31 + case 'W' : return dict[0][get('Day')]; // Day : Понедельник + case 'N' : return get(MONTH) + 1; // Month : 1-12 + case 'NN' : return lz(get(MONTH) + 1); // Month : 01-12 + case 'M' : return dict[2][get(MONTH)]; // Month : Январь + case 'MM' : return dict[1][get(MONTH)]; // Month : Января + case 'Y' : return get(YEAR); // Year : 2014 + case 'YY' : return lz(get(YEAR) % 100); // Year : 14 + } return part; + }); + } + } + function lz(num){ + return num > 9 ? num : '0' + num; + } + function addLocale(lang, locale){ + function split(index){ + var result = []; + forEach.call(array(locale.months), function(it){ + result.push(it.replace(flexioRegExp, '$' + index)); + }); + return result; + } + locales[lang] = [array(locale.weekdays), split(1), split(2)]; + return core; + } + $define(PROTO + FORCED, DATE, { + format: createFormat('get'), + formatUTC: createFormat('getUTC') + }); + addLocale(current, { + weekdays: 'Sunday,Monday,Tuesday,Wednesday,Thursday,Friday,Saturday', + months: 'January,February,March,April,May,June,July,August,September,October,November,December' + }); + addLocale('ru', { + weekdays: 'Воскресенье,Понедельник,Вторник,Среда,Четверг,Пятница,Суббота', + months: 'Январ:я|ь,Феврал:я|ь,Март:а|,Апрел:я|ь,Ма:я|й,Июн:я|ь,' + + 'Июл:я|ь,Август:а|,Сентябр:я|ь,Октябр:я|ь,Ноябр:я|ь,Декабр:я|ь' + }); + core.locale = function(locale){ + return has(locales, locale) ? current = locale : current; + }; + core.addLocale = addLocale; +}(/\b\w\w?\b/g, /:(.*)\|(.*)$/, {}, 'en', 'Seconds', 'Minutes', 'Hours', 'Month', 'FullYear'); + +/****************************************************************************** + * Module : core.global * + ******************************************************************************/ + +$define(GLOBAL + FORCED, {global: global}); + +/****************************************************************************** + * Module : js.array.statics * + ******************************************************************************/ + +// JavaScript 1.6 / Strawman array statics shim +!function(arrayStatics){ + function setArrayStatics(keys, length){ + forEach.call(array(keys), function(key){ + if(key in ArrayProto)arrayStatics[key] = ctx(call, ArrayProto[key], length); + }); + } + setArrayStatics('pop,reverse,shift,keys,values,entries', 1); + setArrayStatics('indexOf,every,some,forEach,map,filter,find,findIndex,includes', 3); + setArrayStatics('join,slice,concat,push,splice,unshift,sort,lastIndexOf,' + + 'reduce,reduceRight,copyWithin,fill,turn'); + $define(STATIC, ARRAY, arrayStatics); +}({}); + +/****************************************************************************** + * Module : web.dom.itarable * + ******************************************************************************/ + +!function(NodeList){ + if(framework && NodeList && !(SYMBOL_ITERATOR in NodeList[PROTOTYPE])){ + hidden(NodeList[PROTOTYPE], SYMBOL_ITERATOR, Iterators[ARRAY]); + } + Iterators.NodeList = Iterators[ARRAY]; +}(global.NodeList); + +/****************************************************************************** + * Module : web.timers * + ******************************************************************************/ + +// ie9- setTimeout & setInterval additional parameters fix +!function(MSIE){ + function wrap(set){ + return MSIE ? function(fn, time /*, ...args */){ + return set(invoke(part, slice.call(arguments, 2), isFunction(fn) ? fn : Function(fn)), time); + } : set; + } + $define(GLOBAL + BIND + FORCED * MSIE, { + setTimeout: setTimeout = wrap(setTimeout), + setInterval: wrap(setInterval) + }); + // ie9- dirty check +}(!!navigator && /MSIE .\./.test(navigator.userAgent)); + +/****************************************************************************** + * Module : web.console * + ******************************************************************************/ + +!function(console, enabled){ + var _console = { + enable: function(){ enabled = true }, + disable: function(){ enabled = false } + }; + // Methods from: + // https://github.com/DeveloperToolsWG/console-object/blob/master/api.md + // https://developer.mozilla.org/en-US/docs/Web/API/console + forEach.call(array('assert,clear,count,debug,dir,dirxml,error,exception,group,' + + 'groupCollapsed,groupEnd,info,isIndependentlyComposed,log,markTimeline,profile,' + + 'profileEnd,table,time,timeEnd,timeline,timelineEnd,timeStamp,trace,warn'), + function(key){ + var fn = console[key]; + _console[key] = function(){ + if(enabled && fn)return apply.call(fn, console, arguments); + }; + } + ); + // console methods in some browsers are not configurable + try { + framework && delete global.console; + } catch(e){} + $define(GLOBAL + FORCED, {console: _console}); +}(global.console || {}, true); +}(typeof self != 'undefined' && self.Math === Math ? self : Function('return this')(), false); \ No newline at end of file diff --git a/src/Quartz.Web/App/scripts/core-js/client/library.min.js b/src/Quartz.Web/App/scripts/core-js/client/library.min.js new file mode 100644 index 000000000..04155a209 --- /dev/null +++ b/src/Quartz.Web/App/scripts/core-js/client/library.min.js @@ -0,0 +1,8 @@ +/** + * Core.js 0.4.10 + * https://github.com/zloirock/core-js + * License: http://rock.mit-license.org + * © 2015 Denis Pushkarev + */ +!function(a,w,c){"use strict";function h(a){return null!==a&&("object"==typeof a||"function"==typeof a)}function o(a){return"function"==typeof a}function cb(a,b,c){a&&!f(a=c?a:a[d],yb)&&g(a,yb,b)}function nb(a){return a==c?a===c?"Undefined":"Null":_c.call(a).slice(8,-1)}function jb(a){var b,c=nb(a);return c==B&&(b=a[yb])?b:c}function Nb(){for(var e=G(this),a=arguments.length,b=F(a),c=0,f=Ob._,d=!1;a>c;)(b[c]=arguments[c++])===f&&(d=!0);return function(){var c,i=this,j=arguments.length,g=0,h=0;if(!d&&!j)return L(e,b,i);if(c=b.slice(),d)for(;a>g;g++)c[g]===f&&(c[g]=arguments[h++]);for(;j>h;)c.push(arguments[h++]);return L(e,c,i)}}function m(a,b,d){if(G(a),~d&&b===c)return a;switch(d){case 1:return function(c){return a.call(b,c)};case 2:return function(c,d){return a.call(b,c,d)};case 3:return function(c,d,e){return a.call(b,c,d,e)}}return function(){return a.apply(b,arguments)}}function L(b,a,d){var e=d===c;switch(0|a.length){case 0:return e?b():b.call(d);case 1:return e?b(a[0]):b.call(d,a[0]);case 2:return e?b(a[0],a[1]):b.call(d,a[0],a[1]);case 3:return e?b(a[0],a[1],a[2]):b.call(d,a[0],a[1],a[2]);case 4:return e?b(a[0],a[1],a[2],a[3]):b.call(d,a[0],a[1],a[2],a[3]);case 5:return e?b(a[0],a[1],a[2],a[3],a[4]):b.call(d,a[0],a[1],a[2],a[3],a[4])}return b.apply(d,a)}function Xc(a,f){var b=G(arguments.length<3?a:arguments[2])[d],c=$(h(b)?b:A),e=bc.call(a,c,f);return h(e)?e:c}function q(a){return db(C(a))}function vb(a){return a}function rb(){return this}function Eb(a,b){return f(a,b)?a[b]:c}function Wc(a){return k(a),Cc?sb(a).concat(Cc(a)):sb(a)}function cc(e,f){for(var a,b=q(e),c=Z(b),g=c.length,d=0;g>d;)if(b[a=c[d++]]===f)return a}function T(a){return z(a).split(",")}function fb(a){var d=1==a,g=2==a,h=3==a,b=4==a,f=6==a,i=5==a||f;return function(s){for(var k,l,p=e(C(this)),t=arguments[1],n=db(p),u=m(s,t,3),q=r(n.length),j=0,o=d?F(q):g?[]:c;q>j;j++)if((i||j in n)&&(k=n[j],l=u(k,j,p),a))if(d)o[j]=l;else if(l)switch(a){case 3:return!0;case 5:return k;case 6:return j;case 2:o.push(k)}else if(b)return!1;return f?-1:h||b?b:o}}function Vc(a){return function(d){var c=q(this),e=r(c.length),b=bb(arguments[1],e);if(a&&d!=d){for(;e>b;b++)if(Yb(c[b]))return a||b}else for(;e>b;b++)if((a||b in c)&&c[b]===d)return a||b;return!a&&-1}}function Mb(a,b){return"function"==typeof a?a:b}function Yb(a){return a!=a}function xb(a){return isNaN(a)?0:Ac(a)}function r(a){return a>0?V(xb(a),Qb):0}function bb(a,b){var a=xb(a);return 0>a?xc(a+b,0):V(a,b)}function Kb(b,a,c){var d=h(a)?function(b){return a[b]}:a;return function(a){return z(c?a:this).replace(b,d)}}function Zb(a){return function(h){var d,f,e=z(C(this)),b=xb(h),g=e.length;return 0>b||b>=g?a?"":c:(d=e.charCodeAt(b),55296>d||d>56319||b+1===g||(f=e.charCodeAt(b+1))<56320||f>57343?a?e.charAt(b):d:a?e.slice(b,b+2):(d-55296<<10)+(f-56320)+65536)}}function eb(c,a,b){if(!c)throw Hb(b?a+b:a)}function C(a){if(a==c)throw Hb("Function called on null or undefined");return a}function G(a){return eb(o(a),a," is not a function!"),a}function k(a){return eb(h(a),a," is not an object!"),a}function Fb(a,b,c){eb(a instanceof b,c,": use the 'new' operator!")}function Lb(a,b){return{enumerable:!(1&a),configurable:!(2&a),writable:!(4&a),value:b}}function Uc(a,b,c){return a[b]=c,a}function Tc(a){return gb?function(b,c,d){return J(b,c,Lb(a,d))}:Uc}function qc(a){return O+"("+a+")_"+(++Yc+zc())[R](36)}function M(a,b){return v&&v[a]||(b?v:u)(O+X+a)}function kb(a,b){for(var c in b)g(a,c,b[c]);return a}function $b(a){(w||!Y(a))&&J(a,Pb,{configurable:!0,get:rb})}function wb(a,b){g(a,Q,b),dd&&g(a,ib,b)}function ob(a,b,c,e){a[d]=$(e||Oc,{next:Lb(1,c)}),cb(a,b+" Iterator")}function fc(e,c,g,h){var a=e[d],b=Eb(a,Q)||Eb(a,ib)||h&&Eb(a,h)||g;if(w&&(wb(a,b),b!==g)){var i=_(b.call(new e));cb(i,c+" Iterator",!0),f(a,ib)&&wb(i,rb)}return N[c]=b,N[c+" Iterator"]=rb,b}function hc(f,a,g,i,h,k){function d(a){return function(){return new g(this,a)}}ob(g,a,i);var e=d(U+E),c=d(E);h==E?c=fc(f,a,c,"values"):e=fc(f,a,e,"entries"),h&&b(t+j*Pc,a,{entries:e,keys:k?c:d(U),values:c})}function i(a,b){return{value:b,done:!!a}}function lc(d){var b=e(d),c=a[O],g=(c&&c[Cb]||ib)in b;return g||Q in b||f(N,jb(b))}function qb(b){var c=a[O],d=b[c&&c[Cb]||ib],e=d||b[Q]||N[jb(b)];return k(e.call(b))}function sc(a,b,c){return c?L(a,b):a(b)}function Bb(c,a,d,e){for(var b,f=qb(c),g=m(d,e,a?2:1);!(b=f.next()).done;)if(sc(g,b.value,a)===!1)return}function b(f,h,p){var c,k,b,i,n=f&H,e=n?a:f&l?a[h]:(a[h]||A)[d],q=n?x:x[h]||(x[h]={});n&&(p=h);for(c in p)k=!(f&j)&&e&&c in e&&(!o(e[c])||Y(e[c])),b=(k?e:p)[c],f&ic&&k?i=m(b,a):f&_b&&!w&&e[c]==b?(i=function(a){return this instanceof b?new b(a):b(a)},i[d]=b[d]):i=f&t&&o(b)?m(ub,b):b,q[c]!=b&&g(q,c,i),w&&e&&!k&&(n?e[c]=b:delete e[c]&&g(e,c,b))}var lb,mb,B="Object",ec="Function",y="Array",ab="String",Ab="Number",Sc="RegExp",zb="Date",Rc="Map",Tb="Set",Nc="WeakMap",Mc="WeakSet",O="Symbol",Rb="Promise",ac="Math",Lc="Arguments",d="prototype",W="constructor",R="toString",Kc=R+"Tag",jc="toLocaleString",vc="hasOwnProperty",nc="forEach",Cb="iterator",ib="@@"+Cb,Ic="process",Vb="createElement",Wb=a[ec],e=a[B],F=a[y],z=a[ab],Hc=a[Ab],ad=a[zb],Sb=a[Rc],Gc=a[Tb],tb=a[Nc],Fc=a[Mc],v=a[O],p=a[ac],Hb=a.TypeError,kc=a.setTimeout,Ib=a.setImmediate,mc=a.clearImmediate,Jb=a.isFinite,oc=a[Ic],Ec=oc&&oc.nextTick,hb=a.document,tc=hb&&hb.documentElement,Dc=a.navigator,Ub=a.define,s=F[d],A=e[d],Xb=Wb[d],P=1/0,X=".",Y=m(/./.test,/\[native code\]\s*\}\s*$/,1),_c=A[R],ub=Xb.call,bc=Xb.apply,$=e.create,_=e.getPrototypeOf,Gb=e.setPrototypeOf,J=e.defineProperty,gc=e.defineProperties,K=e.getOwnPropertyDescriptor,Z=e.keys,sb=e.getOwnPropertyNames,Cc=e.getOwnPropertySymbols,S=e.isFrozen,f=m(ub,A[vc],2),db=e,yc=e.assign||function(h){for(var a=e(C(h)),i=arguments.length,b=1;i>b;)for(var c,d=db(arguments[b++]),f=Z(d),j=f.length,g=0;j>g;)a[c=f[g++]]=d[c];return a},wc=s.push,pb=s.slice,rc=s.indexOf,I=s[nc],Qb=9007199254740991,uc=p.pow,pc=p.abs,cd=p.ceil,Jc=p.floor,xc=p.max,V=p.min,zc=p.random,Ac=p.trunc||function(a){return(a>0?Jc:cd)(a)},Bc="Reduce of empty object with no initial value",gb=!!function(){try{return J({},X,A)}catch(a){}}(),Yc=0,g=Tc(1),D=v?Uc:g,u=v||qc,Db=M("unscopables"),dc=s[Db]||{},Pb=M("species"),Q=M(Cb),yb=M(Kc),dd=ib in s,n=u("iter"),U=1,E=2,N={},Oc={},$c=Q in s,Pc="keys"in s&&!("next"in[].keys());wb(Oc,rb);var Qc,bd=nb(oc)==Ic,x={},Ob=w?a:x,Zc=a.core,j=1,H=2,l=4,t=8,ic=16,_b=32;"undefined"!=typeof module&&module.exports?module.exports=x:o(Ub)&&Ub.amd?Ub(function(){return x}):Qc=!0,(Qc||w)&&(x.noConflict=function(){return a.core=Zc,x},a.core=x),!function(u,m,x,a){function g(){var a,b=hb[Vb]("iframe"),c=D;for(b.style.display="none",tc.appendChild(b),b.src="javascript:",a=b.contentWindow.document,a.open(),a.write(""),a.close(),g=a.F;c--;)delete g[d][i[c]];return g()}function p(b,c){return function(i){var d,g=q(i),h=0,e=[];for(d in g)d!=a&&f(g,d)&&e.push(d);for(;c>h;)f(g,d=b[h++])&&(~rc.call(e,d)||e.push(d));return e}}function n(a){return!h(a)}function v(a){return function(){return a.apply(db(this),arguments)}}function w(a){return function(g,d){G(g);var c=q(this),e=r(c.length),b=a?e-1:0,f=a?-1:1;if(2>arguments.length)for(;;){if(b in c){d=c[b],b+=f;break}b+=f,eb(a?b>=0:e>b,Bc)}for(;a?b>=0:e>b;b+=f)b in c&&(d=g(d,c[b],b,this));return d}}gb||(K=function(a,b){return f(a,b)?Lb(!A[u].call(a,b),a[b]):c},J=function(a,c,b){return"value"in b&&(k(a)[c]=b.value),a},gc=function(a,d){k(a);for(var b,c,e=Z(d),g=e.length,f=0;g>f;)b=e[f++],c=d[b],"value"in c&&(a[b]=c.value);return a}),b(l+j*!gb,B,{getOwnPropertyDescriptor:K,defineProperty:J,defineProperties:gc});var i=[W,vc,"isPrototypeOf",u,jc,R,"valueOf"],z=i.concat("length",d),D=i.length;b(l,B,{getPrototypeOf:_=_||function(b){return b=e(C(b)),f(b,a)?b[a]:o(b[W])&&b instanceof b[W]?b[W][d]:b instanceof e?A:null},getOwnPropertyNames:sb=sb||p(z,z.length,!0),create:$=$||function(e,f){var b;return null!==e?(m[d]=k(e),b=new m,m[d]=null,b[W][d]!==e&&(b[a]=e)):b=g(),f===c?b:gc(b,f)},keys:Z=Z||p(i,D,!1),seal:vb,freeze:vb,preventExtensions:vb,isSealed:n,isFrozen:S=S||n,isExtensible:h}),b(t,ec,{bind:function(c){function a(){var e=d.concat(pb.call(arguments));return this instanceof a?Xc(b,e):L(b,e,c)}var b=G(this),d=pb.call(arguments,1);return a}}),0 in e(X)&&X[0]==X||(db=function(a){return nb(a)==ab?a.split(""):e(a)},pb=v(pb)),b(t+j*(db!=e),y,{slice:pb,join:v(s.join)}),b(l,y,{isArray:function(a){return nb(a)==y}}),b(t,y,{forEach:I=I||fb(0),map:fb(1),filter:fb(2),some:fb(3),every:fb(4),reduce:w(!1),reduceRight:w(!0),indexOf:rc=rc||Vc(!1),lastIndexOf:function(d,e){var b=q(this),c=r(b.length),a=c-1;for(arguments.length>1&&(a=V(a,xb(e))),0>a&&(a=r(c+a));a>=0;a--)if(a in b&&b[a]===d)return a;return-1}}),b(t,ab,{trim:Kb(/^\s*([\s\S]*\S)?\s*$/,"$1")}),b(l,zb,{now:function(){return+new ad}}),x(function(){return arguments}())==B&&(jb=function(a){var b=x(a);return b==B&&o(a.callee)?Lc:b})}("propertyIsEnumerable",function(){},jb,u(d)),!function(h,a,c,e){Y(v)||(v=function(f){eb(!(this instanceof v),O+" is not a "+W);var a=qc(f),b=D($(v[d]),h,a);return c[a]=b,gb&&e&&J(A,a,{configurable:!0,set:function(b){g(this,a,b)}}),b},g(v[d],R,function(){return this[h]})),b(H+_b,{Symbol:v});var i={"for":function(b){return f(a,b+="")?a[b]:a[b]=v(b)},iterator:Q,keyFor:Nb.call(cc,a),species:Pb,toStringTag:yb=M(Kc,!0),unscopables:Db,pure:u,set:D,useSetter:function(){e=!0},useSimple:function(){e=!1}};I.call(T("hasInstance,isConcatSpreadable,match,replace,search,split,toPrimitive"),function(a){i[a]=M(a)}),b(l,O,i),cb(v,O),b(l+j*!Y(v),B,{getOwnPropertyNames:function(g){for(var a,b=sb(q(g)),d=[],e=0;b.length>e;)f(c,a=b[e++])||d.push(a);return d},getOwnPropertySymbols:function(g){for(var a,b=sb(q(g)),d=[],e=0;b.length>e;)f(c,a=b[e++])&&d.push(c[a]);return d}})}(u("tag"),{},{},!0),!function(c){var d={assign:yc,is:function(a,b){return a===b?0!==a||1/a===1/b:a!=a&&b!=b}};"__proto__"in A&&function(b,a){try{a=m(ub,K(A,"__proto__").set,2),a({},s)}catch(c){b=!0}d.setPrototypeOf=Gb=Gb||function(d,c){return k(d),eb(null===c||h(c),c,": can't set as prototype!"),b?d.__proto__=c:a(d,c),d}}(),b(l,B,d),w&&(c[yb]=X,nb(c)!=X&&g(A,R,function(){return"[object "+jb(this)+"]"})),cb(p,ac,!0),cb(a.JSON,"JSON",!0)}({}),!function(){function a(d,c){var a=e[d],f=x[B][d],g=0,i={};if(!f||Y(f)){i[d]=1==c?function(b){return h(b)?a(b):b}:2==c?function(b){return h(b)?a(b):!0}:3==c?function(b){return h(b)?a(b):!1}:4==c?function(b,c){return a(q(b),c)}:function(b){return a(q(b))};try{a(X)}catch(k){g=1}b(l+j*g,B,i)}}a("freeze",1),a("seal",1),a("preventExtensions",1),a("isFrozen",2),a("isSealed",2),a("isExtensible",3),a("getOwnPropertyDescriptor",4),a("getPrototypeOf"),a("keys"),a("getOwnPropertyNames")}(),!function(a){b(l,Ab,{EPSILON:uc(2,-52),isFinite:function(a){return"number"==typeof a&&Jb(a)},isInteger:a,isNaN:Yb,isSafeInteger:function(b){return a(b)&&pc(b)<=Qb},MAX_SAFE_INTEGER:Qb,MIN_SAFE_INTEGER:-Qb,parseFloat:parseFloat,parseInt:parseInt})}(Hc.isInteger||function(a){return!h(a)&&Jb(a)&&Jc(a)===a}),!function(){function g(a){return Jb(a=+a)&&0!=a?0>a?-g(-a):c(a+e(a*a+1)):a}function d(b){return 0==(b=+b)?b:b>-1e-6&&1e-6>b?b+b*b/2:a(b)-1}var f=p.E,a=p.exp,c=p.log,e=p.sqrt,h=p.sign||function(a){return 0==(a=+a)||a!=a?a:0>a?-1:1};b(l,ac,{acosh:function(a){return(a=+a)<1?0/0:Jb(a)?c(a/f+e(a+1)*e(a-1)/f)+1:a},asinh:g,atanh:function(a){return 0==(a=+a)?a:c((1+a)/(1-a))/2},cbrt:function(a){return h(a=+a)*uc(pc(a),1/3)},clz32:function(a){return(a>>>=0)?32-a[R](2).length:32},cosh:function(b){return(a(b=+b)+a(-b))/2},expm1:d,fround:function(a){return new Float32Array([a])[0]},hypot:function(){for(var a,d=0,b=arguments.length,f=b,g=F(b),c=-P;b--;){if(a=g[b]=+arguments[b],a==P||a==-P)return P;a>c&&(c=a)}for(c=a||1;f--;)d+=uc(g[f]/c,2);return c*e(d)},imul:function(f,g){var a=65535,b=+f,c=+g,d=a&b,e=a&c;return 0|d*e+((a&b>>>16)*e+d*(a&c>>>16)<<16>>>0)},log1p:function(a){return(a=+a)>-1e-8&&1e-8>a?a-a*a/2:c(1+a)},log10:function(a){return c(a)/p.LN10},log2:function(a){return c(a)/p.LN2},sign:h,sinh:function(b){return pc(b=+b)<1?(d(b)-d(-b))/2:(a(b-1)-a(-b-1))*(f/2)},tanh:function(b){var c=d(b=+b),e=d(-b);return c==P?1:e==P?-1:(c-e)/(a(b)+a(-b))},trunc:Ac})}(),!function(d,e){function a(a){if(nb(a)==Sc)throw Hb()}b(l,ab,{fromCodePoint:function(){for(var a,b=[],f=arguments.length,c=0;f>c;){if(a=+arguments[c++],bb(a,1114111)!==a)throw d(a+" is not a valid code point");b.push(65536>a?e(a):e(((a-=65536)>>10)+55296,a%1024+56320))}return b.join("")},raw:function(d){for(var c=q(d.raw),e=r(c.length),f=arguments.length,b=[],a=0;e>a;)b.push(z(c[a++])),f>a&&b.push(z(arguments[a]));return b.join("")}}),b(t,ab,{codePointAt:Zb(!1),endsWith:function(b){a(b);var d=z(C(this)),e=arguments[1],f=r(d.length),g=e===c?f:V(r(e),f);return b+="",d.slice(g-b.length,g)===b},includes:function(b){return a(b),!!~z(C(this)).indexOf(b,arguments[1])},repeat:function(e){var b=z(C(this)),c="",a=xb(e);if(0>a||a==P)throw d("Count can't be negative");for(;a>0;(a>>>=1)&&(b+=b))1&a&&(c+=b);return c},startsWith:function(b){a(b);var c=z(C(this)),d=r(V(arguments[1],c.length));return b+="",c.slice(d,d+b.length)===b}})}(a.RangeError,z.fromCharCode),!function(){b(l,y,{from:function(l){var i,b=e(C(l)),d=new(Mb(this,F)),h=arguments[1],k=arguments[2],f=h!==c,j=f?m(h,k,2):c,a=0;if(lc(b))for(var g,n=qb(b);!(g=n.next()).done;a++)d[a]=f?j(g.value,a):g.value;else for(i=r(b.length);i>a;a++)d[a]=f?j(b[a],a):b[a];return d.length=a,d},of:function(){for(var a=0,b=arguments.length,c=new(Mb(this,F))(b);b>a;)c[a]=arguments[a++];return c.length=b,c}}),b(t,y,{copyWithin:function(j,k){var d=e(C(this)),f=r(d.length),a=bb(j,f),b=bb(k,f),i=arguments[2],l=i===c?f:bb(i,f),g=V(l-b,f-a),h=1;for(a>b&&b+g>a&&(h=-1,b=b+g-1,a=a+g-1);g-->0;)b in d?d[a]=d[b]:delete d[a],a+=h,b+=h;return d},fill:function(g){for(var a=e(C(this)),b=r(a.length),d=bb(arguments[1],b),f=arguments[2],h=f===c?b:bb(f,b);h>d;)a[d++]=g;return a},find:fb(5),findIndex:fb(6)}),w&&(I.call(T("find,findIndex,fill,copyWithin,entries,keys,values"),function(a){dc[a]=!0}),Db in s||g(s,Db,dc)),$b(F)}(),!function(a){hc(F,y,function(a,b){D(this,n,{o:q(a),i:0,k:b})},function(){var b=this[n],d=b.o,e=b.k,a=b.i++;return!d||a>=d.length?(b.o=c,i(1)):e==U?i(0,a):e==E?i(0,d[a]):i(0,[a,d[a]])},E),N[Lc]=N[y],hc(z,ab,function(a){D(this,n,{o:z(a),i:0})},function(){var b,c=this[n],d=c.o,e=c.i;return e>=d.length?i(1):(b=a.call(d,e),c.i+=b.length,i(0,b))})}(Zb(!0)),o(Ib)&&o(mc)||function(n){function d(a){if(f(b,a)){var c=b[a];delete b[a],c()}}function l(a){d(a.data)}var c,g,e,i=a.postMessage,j=a.addEventListener,k=a.MessageChannel,h=0,b={};Ib=function(a){for(var d=[],e=1;arguments.length>e;)d.push(arguments[e++]);return b[++h]=function(){L(o(a)?a:Wb(a),d)},c(h),h},mc=function(a){delete b[a]},bd?c=function(a){Ec(Nb.call(d,a))}:j&&o(i)&&!a.importScripts?(c=function(a){i(a,"*")},j("message",l,!1)):o(k)?(g=new k,e=g.port2,g.port1.onmessage=l,c=m(e.postMessage,e,1)):c=hb&&n in hb[Vb]("script")?function(a){tc.appendChild(hb[Vb]("script"))[n]=function(){tc.removeChild(this),d(a)}}:function(a){kc(d,0,a)}}("onreadystatechange"),b(H+ic,{setImmediate:Ib,clearImmediate:mc}),!function(a,e){o(a)&&o(a.resolve)&&a.resolve(e=new a(function(){}))==e||function(n,f){function j(b){var a;return h(b)&&(a=b.then),o(a)?a:!1}function i(b){var a=b.chain;a.length&&n(function(){for(var c=b.msg,e=1==b.state,d=0;a.length>d;)!function(a){var b,f,d=e?a.ok:a.fail;try{d?(b=d===!0?c:d(c),b===a.P?a.rej(Hb(Rb+"-chain cycle")):(f=j(b))?f.call(b,a.res,a.rej):a.res(b)):a.rej(c)}catch(g){a.rej(g)}}(a[d++]);a.length=0})}function l(d){var e,c,a=this;if(!a.done){a.done=!0,a=a.def||a;try{(e=j(d))?(c={def:a,done:!1},e.call(d,m(l,c,1),m(b,c,1))):(a.msg=d,a.state=1,i(a))}catch(f){b.call(c||{def:a,done:!1},f)}}}function b(b){var a=this;a.done||(a.done=!0,a=a.def||a,a.msg=b,a.state=2,i(a))}function e(a){var b=k(a)[Pb];return b!=c?b:a}a=function(e){G(e),Fb(this,a,Rb);var d={chain:[],state:0,done:!1,msg:c};g(this,f,d);try{e(m(l,d,1),m(b,d,1))}catch(h){b.call(d,h)}},kb(a[d],{then:function(e,g){var h=k(k(this)[W])[Pb],b={ok:o(e)?e:!0,fail:o(g)?g:!1},j=b.P=new(h!=c?h:a)(function(a,c){b.res=G(a),b.rej=G(c)}),d=this[f];return d.chain.push(b),d.state&&i(d),j},"catch":function(a){return this.then(c,a)}}),kb(a,{all:function(c){var b=e(this),a=[];return new b(function(f,g){Bb(c,!1,wc,a);var d=a.length,e=F(d);d?I.call(a,function(a,c){b.resolve(a).then(function(a){e[c]=a,--d||f(e)},g)}):f(e)})},race:function(b){var a=e(this);return new a(function(c,d){Bb(b,!1,function(b){a.resolve(b).then(c,d)})})},reject:function(a){return new(e(this))(function(c,b){b(a)})},resolve:function(a){return h(a)&&f in a&&_(a)===this[d]?a:new(e(this))(function(b){b(a)})}})}(Ec||Ib,u("def")),cb(a,Rb),$b(a),b(H+j*!Y(a),{Promise:a})}(a[Rb]),!function(){function t(a,g,z,y,k,h){function r(a,b){return b!=c&&Bb(b,k,a[t],a),a}function m(a,b){var c=e[a];w&&(e[a]=function(a,d){var e=c.call(this,0===a?0:a,d);return b?this:e})}var t=k?"set":"add",e=a&&a[d],x={};if(Y(a)&&(h||!Pc&&f(e,nc)&&f(e,"entries"))){var u,A=a,v=new a,F=v[t](h?{}:-0,1);$c&&a.length||(a=function(b){return Fb(this,a,g),r(new A,b)},a[d]=e,w&&(e[W]=a)),h||v[nc](function(b,a){u=1/a===-P}),u&&(m("delete"),m("has"),k&&m("get")),(u||F!==v)&&m(t,!0)}else a=h?function(b){Fb(this,a,g),D(this,o,B++),r(this,b)}:function(d){var b=this;Fb(b,a,g),D(b,s,$(null)),D(b,q,0),D(b,p,c),D(b,l,c),r(b,d)},kb(kb(a[d],z),y),h||J(a[d],"size",{get:function(){return C(this[q])}});return cb(a,g),$b(a),x[g]=a,b(H+_b+j*!Y(a),x),h||hc(a,g,function(a,b){D(this,n,{o:a,k:b})},function(){for(var b=this[n],d=b.k,a=b.l;a&&a.r;)a=a.p;return b.o&&(b.l=a=a?a.n:b.o[l])?d==U?i(0,a.k):d==E?i(0,a.v):i(0,[a.k,a.v]):(b.o=c,i(1))},k?U+E:E,!k),a}function y(a,b){if(!h(a))return("string"==typeof a?"S":"P")+a;if(S(a))return"F";if(!f(a,o)){if(!b)return"E";g(a,o,++B)}return"O"+a[o]}function v(b,c){var a,d=y(c);if("F"!=d)return b[s][d];for(a=b[l];a;a=a.n)if(a.k==c)return a}function A(a,d,g){var e,f,b=v(a,d);return b?b.v=g:(a[p]=b={i:f=y(d,!0),k:d,v:g,p:e=a[p],n:c,r:!1},a[l]||(a[l]=b),e&&(e.n=b),a[q]++,"F"!=f&&(a[s][f]=b)),a}function z(c,b,d){return S(k(b))?r(c).set(b,d):(f(b,a)||g(b,a,{}),b[a][c[o]]=d),c}function r(a){return a[x]||g(a,x,new Sb)[x]}var o=u("uid"),s=u("O1"),a=u("weak"),x=u("leak"),p=u("last"),l=u("first"),q=gb?u("size"):"size",B=0,F={},G={clear:function(){for(var b=this,d=b[s],a=b[l];a;a=a.n)a.r=!0,a.p=a.n=c,delete d[a.i];b[l]=b[p]=c,b[q]=0},"delete":function(e){var b=this,a=v(b,e);if(a){var c=a.n,d=a.p;delete b[s][a.i],a.r=!0,d&&(d.n=c),c&&(c.p=d),b[l]==a&&(b[l]=c),b[p]==a&&(b[p]=d),b[q]--}return!!a},forEach:function(b){for(var a,c=m(b,arguments[1],3);a=a?a.n:this[l];)for(c(a.v,a.k,this);a&&a.r;)a=a.p},has:function(a){return!!v(this,a)}};Sb=t(Sb,Rc,{get:function(b){var a=v(this,b);return a&&a.v},set:function(a,b){return A(this,0===a?0:a,b)}},G,!0),Gc=t(Gc,Tb,{add:function(a){return A(this,a=0===a?0:a,a)}},G);var K={"delete":function(b){return h(b)?S(b)?r(this)["delete"](b):f(b,a)&&f(b[a],this[o])&&delete b[a][this[o]]:!1},has:function(b){return h(b)?S(b)?r(this).has(b):f(b,a)&&f(b[a],this[o]):!1}};tb=t(tb,Nc,{get:function(b){if(h(b)){if(S(b))return r(this).get(b);if(f(b,a))return b[a][this[o]]}},set:function(a,b){return z(this,a,b)}},K,!0,!0),w&&7!=(new tb).set(e.freeze(F),7).get(F)&&I.call(T("delete,has,get,set"),function(a){var b=tb[d][a];tb[d][a]=function(c,d){if(h(c)&&S(c)){var e=r(this)[a](c,d);return"set"==a?this:e}return b.call(this,c,d)}}),Fc=t(Fc,Mc,{add:function(a){return z(this,a,!0)}},K,!1,!0)}(),!function(){function a(a){var b,c=[];for(b in a)c.push(b);D(this,n,{o:a,a:c,i:0})}function d(a){return function(b){k(b);try{return a.apply(c,arguments),!0}catch(d){return!1}}}function f(b,d){var e,g=arguments.length<3?b:arguments[2],a=K(k(b),d);return a?a.get?a.get.call(g):a.value:h(e=_(b))?f(e,d,g):c}function g(d,b,e){var f,c=arguments.length<4?d:arguments[3],a=K(k(d),b);if(a){if(a.writable===!1)return!1;if(a.set)return a.set.call(c,e),!0}return h(f=_(d))?g(f,b,e,c):(a=K(c,b)||Lb(0),a.value=e,J(c,b,a),!0)}ob(a,B,function(){var b,a=this[n],c=a.a;do if(a.i>=c.length)return i(1);while(!((b=c[a.i++])in a.o));return i(0,b)});var o=e.isExtensible||vb,j={apply:m(ub,bc,3),construct:Xc,defineProperty:d(J),deleteProperty:function(a,b){var c=K(k(a),b);return c&&!c.configurable?!1:delete a[b]},enumerate:function(b){return new a(k(b))},get:f,getOwnPropertyDescriptor:function(a,b){return K(k(a),b)},getPrototypeOf:function(a){return _(k(a))},has:function(a,b){return b in a},isExtensible:function(a){return!!o(k(a))},ownKeys:Wc,preventExtensions:d(e.preventExtensions||vb),set:g};Gb&&(j.setPrototypeOf=function(a,b){return Gb(k(a),b),!0}),b(H,{Reflect:{}}),b(l,"Reflect",j)}(),!function(){function a(a){return function(f){var g,h=q(f),c=Z(f),d=c.length,b=0,e=F(d);if(a)for(;d>b;)e[b]=[g=c[b++],h[g]];else for(;d>b;)e[b]=h[c[b++]];return e}}b(t,y,{includes:Vc(!0)}),b(t,ab,{at:Zb(!0)}),b(l,B,{values:a(!1),entries:a(!0)}),b(l,Sc,{escape:Kb(/([\\\-[\]{}()*+?.,^$|])/g,"\\$1",!0)})}(),!function(a){function c(b){if(b){var a=b[d];g(a,lb,a.get),g(a,e,a.set),g(a,f,a["delete"])}}lb=M(a+"Get",!0);var e=M(a+Tb,!0),f=M(a+"Delete",!0);b(l,O,{referenceGet:lb,referenceSet:e,referenceDelete:f}),g(Xb,lb,rb),c(Sb),c(tb)}("reference"),!function(r){function l(a,b){D(this,n,{o:q(a),a:Z(a),i:0,k:b})}function g(a){return function(b){return new l(b,a)}}function a(a){var d=1==a,b=4==a;return function(k,l,n){var e,h,g,o=m(l,n,3),j=q(k),i=d||7==a||2==a?new(Mb(this,mb)):c;for(e in j)if(f(j,e)&&(h=j[e],g=o(h,e,k),a))if(d)i[e]=g;else if(g)switch(a){case 2:i[e]=h;break;case 3:return!0;case 5:return h;case 6:return e;case 7:i[g[0]]=g[1]}else if(b)return!1;return 3==a||b?b:i}}function o(a){return function(l,m,g){G(m);var b,h,i,d=q(l),j=Z(d),n=j.length,k=0;for(a?b=g==c?new(Mb(this,mb)):e(g):arguments.length<3?(eb(n,Bc),b=d[j[k++]]):b=e(g);n>k;)if(f(d,h=j[k++]))if(i=m(b,d[h],h,l),a){if(i===!1)break}else b=i;return b}}function s(b,a){return(a==a?cc(b,a):p(b,Yb))!==c}mb=function(a){var b=$(null);if(a!=c)if(lc(a))for(var e,d,f=qb(a);!(e=f.next()).done;)d=e.value,b[d[0]]=d[1];else yc(b,a);return b},mb[d]=null,ob(l,r,function(){var a,b=this[n],c=b.o,d=b.a,e=b.k;do if(b.i>=d.length)return i(1);while(!f(c,a=d[b.i++]));return e==U?i(0,a):e==E?i(0,c[a]):i(0,[a,c[a]])});var p=a(6),k={keys:g(U),values:g(E),entries:g(U+E),forEach:a(0),map:a(1),filter:a(2),some:a(3),every:a(4),find:a(5),findKey:p,mapPairs:a(7),reduce:o(!1),turn:o(!0),keyOf:cc,includes:s,has:f,get:Eb,set:Tc(0),isDict:function(a){return h(a)&&_(a)===mb[d]}};if(lb)for(var t in k)!function(a){function b(){for(var b=[this],c=0;c1;return function(){for(var f=V(d,arguments.length),g=F(f),a=0;f>a;)g[a]=arguments[a++];return L(c,g,e?b:this)}}}),g(Ob._,R,function(){return a}),g(A,a,d),gb||g(s,a,d)}(gb?qc("tie"):jc,A[jc]),!function(){function a(a,b){for(var c,d=Wc(q(b)),f=d.length,e=0;f>e;)J(a,c=d[e++],K(b,c));return a}b(l+j,B,{isObject:h,classof:jb,define:a,make:function(b,c){return a($(b),c)}})}(),b(t+j,y,{turn:function(b,d){G(b);for(var f=d==c?[]:e(d),g=db(this),h=r(g.length),a=0;h>a&&b(f,g[a],a++,this)!==!1;);return f}}),w&&(dc.turn=!0),!function(a){function d(a){D(this,n,{l:r(a),i:0})}ob(d,Ab,function(){var a=this[n],b=a.i++;return a.l>b?i(0,b):i(1)}),fc(Hc,Ab,function(){return new d(this)}),a.random=function(a){var b=+this,d=a==c?0:+a,e=V(b,d);return zc()*(xc(b,d)-e)+e},I.call(T("round,floor,ceil,abs,sin,asin,cos,acos,tan,atan,exp,sqrt,max,min,pow,atan2,acosh,asinh,atanh,cbrt,clz32,cosh,expm1,hypot,imul,log1p,log10,log2,sign,sinh,tanh,trunc"),function(b){var c=p[b];c&&(a[b]=function(){for(var a=[+this],b=0;arguments.length>b;)a.push(arguments[b++]);return L(c,a)})}),b(t+j,Ab,a)}({}),!function(){var a,c={"&":"&","<":"<",">":">",'"':""","'":"'"},d={};for(a in c)d[c[a]]=a;b(t+j,ab,{escapeHTML:Kb(/[&<>"']/g,c),unescapeHTML:Kb(/&(?:amp|lt|gt|quot|apos);/g,d)})}(),!function(o,n,c,d,k,h,i,e,l){function m(b){return function(n,m){function g(a){return p[b+a]()}var p=this,j=c[f(c,m)?m:d];return z(n).replace(o,function(b){switch(b){case"s":return g(k);case"ss":return a(g(k));case"m":return g(h);case"mm":return a(g(h));case"h":return g(i);case"hh":return a(g(i));case"D":return g(zb);case"DD":return a(g(zb));case"W":return j[0][g("Day")];case"N":return g(e)+1;case"NN":return a(g(e)+1);case"M":return j[2][g(e)];case"MM":return j[1][g(e)];case"Y":return g(l);case"YY":return a(g(l)%100)}return b})}}function a(a){return a>9?a:"0"+a}function g(d,a){function b(c){var b=[];return I.call(T(a.months),function(a){b.push(a.replace(n,"$"+c))}),b}return c[d]=[T(a.weekdays),b(1),b(2)],x}b(t+j,zb,{format:m("get"),formatUTC:m("getUTC")}),g(d,{weekdays:"Sunday,Monday,Tuesday,Wednesday,Thursday,Friday,Saturday",months:"January,February,March,April,May,June,July,August,September,October,November,December"}),g("ru",{weekdays:"Воскресенье,Понедельник,Вторник,Среда,Четверг,Пятница,Суббота",months:"Январ:я|ь,Феврал:я|ь,Март:а|,Апрел:я|ь,Ма:я|й,Июн:я|ь,Июл:я|ь,Август:а|,Сентябр:я|ь,Октябр:я|ь,Ноябр:я|ь,Декабр:я|ь"}),x.locale=function(a){return f(c,a)?d=a:d},x.addLocale=g}(/\b\w\w?\b/g,/:(.*)\|(.*)$/,{},"en","Seconds","Minutes","Hours","Month","FullYear"),b(H+j,{global:a}),!function(c){function a(a,b){I.call(T(a),function(a){a in s&&(c[a]=m(ub,s[a],b))})}a("pop,reverse,shift,keys,values,entries",1),a("indexOf,every,some,forEach,map,filter,find,findIndex,includes",3),a("join,slice,concat,push,splice,unshift,sort,lastIndexOf,reduce,reduceRight,copyWithin,fill,turn"),b(l,y,c)}({}),!function(a){!w||!a||Q in a[d]||g(a[d],Q,N[y]),N.NodeList=N[y]}(a.NodeList),!function(a){function c(b){return a?function(a,c){return b(L(Nb,pb.call(arguments,2),o(a)?a:Wb(a)),c)}:b}b(H+ic+j*a,{setTimeout:kc=c(kc),setInterval:c(setInterval)})}(!!Dc&&/MSIE .\./.test(Dc.userAgent)),!function(e,d){var f={enable:function(){d=!0},disable:function(){d=!1}};I.call(T("assert,clear,count,debug,dir,dirxml,error,exception,group,groupCollapsed,groupEnd,info,isIndependentlyComposed,log,markTimeline,profile,profileEnd,table,time,timeEnd,timeline,timelineEnd,timeStamp,trace,warn"),function(a){var b=e[a];f[a]=function(){return d&&b?bc.call(b,e,arguments):c}});try{w&&delete a.console}catch(g){}b(H+j,{console:f})}(a.console||{},!0)}("undefined"!=typeof self&&self.Math===Math?self:Function("return this")(),!1); +//# sourceMappingURL=library.min.js.map \ No newline at end of file diff --git a/src/Quartz.Web/App/scripts/core-js/client/library.min.js.map b/src/Quartz.Web/App/scripts/core-js/client/library.min.js.map new file mode 100644 index 000000000..456f89449 --- /dev/null +++ b/src/Quartz.Web/App/scripts/core-js/client/library.min.js.map @@ -0,0 +1 @@ +{"version":3,"file":"library.min.js","sources":["library.js"],"names":["global","framework","undefined","isObject","it","isFunction","setToStringTag","tag","stat","has","PROTOTYPE","SYMBOL_TAG","hidden","cof","toString","call","slice","classof","klass","OBJECT","part","fn","assertFunction","this","length","arguments","args","Array","i","_","path","holder","_args","that","_length","j","invoke","push","ctx","a","b","c","apply","un","construct","target","argumentsList","proto","instance","create","ObjectProto","result","toObject","ES5Object","assertDefined","returnIt","returnThis","get","object","key","ownKeys","assertObject","getSymbols","getNames","concat","keyOf","el","O","keys","getKeys","index","array","String","split","createArrayMethod","type","isMap","isFilter","isSome","isEvery","isFindIndex","noholes","callbackfn","val","res","Object","self","f","toLength","createArrayContains","isContains","toIndex","sameNaN","generic","A","B","number","toInteger","isNaN","trunc","min","MAX_SAFE_INTEGER","max","createReplacer","regExp","replace","isStatic","replacer","createPointAt","pos","s","l","charCodeAt","charAt","assert","condition","msg1","msg2","TypeError","assertInstance","Constructor","name","descriptor","bitmap","value","enumerable","configurable","writable","simpleSet","createDefiner","DESC","defineProperty","uid","SYMBOL","sid","random","TO_STRING","getWellKnownSymbol","setter","Symbol","safeSymbol","DOT","assignHidden","src","setSpecies","C","isNative","SYMBOL_SPECIES","setIterator","SYMBOL_ITERATOR","SUPPORT_FF_ITER","FF_ITERATOR","createIterator","NAME","next","IteratorPrototype","defineIterator","DEFAULT","iter","iterProto","getPrototypeOf","Iterators","defineStdIterators","Base","IS_SET","createIter","kind","entries","KEY","VALUE","values","$define","PROTO","FORCED","BUGGY_ITERATORS","iterResult","done","isIterable","hasExt","ITERATOR","getIterator","ext","getIter","stepCall","forOf","iterable","step","iterator","source","own","out","exp","isGlobal","GLOBAL","STATIC","exports","core","BIND","WRAP","param","REFERENCE_GET","Dict","FUNCTION","ARRAY","STRING","NUMBER","REGEXP","DATE","MAP","SET","WEAKMAP","WEAKSET","PROMISE","MATH","ARGUMENTS","CONSTRUCTOR","TO_STRING_TAG","TO_LOCALE","HAS_OWN","FOR_EACH","PROCESS","CREATE_ELEMENT","Function","Number","Date","Map","Set","WeakMap","WeakSet","Math","setTimeout","setImmediate","clearImmediate","isFinite","process","nextTick","document","html","documentElement","navigator","define","ArrayProto","FunctionProto","Infinity","test","setPrototypeOf","defineProperties","getOwnDescriptor","getOwnPropertyDescriptor","getOwnPropertyNames","getOwnPropertySymbols","isFrozen","assign","T","S","indexOf","forEach","pow","abs","ceil","floor","REDUCE_ERROR","e","set","SYMBOL_UNSCOPABLES","ArrayUnscopables","ITER","NATIVE_ITERATORS","exportGlobal","NODE","old","module","amd","noConflict","IS_ENUMERABLE","Empty","_classof","$PROTO","createDict","iframeDocument","iframe","keysLen1","style","display","appendChild","contentWindow","open","write","close","F","keys1","createGetKeys","names","isPrimitive","arrayMethodFix","createArrayReduce","isRight","memo","P","Attributes","Properties","keys2","seal","freeze","preventExtensions","isSealed","isExtensible","bind","bound","partArgs","join","isArray","arg","map","filter","some","every","reduce","reduceRight","lastIndexOf","fromIndex","trim","now","callee","TAG","SymbolRegistry","AllSymbols","description","sym","symbolStatics","for","keyFor","species","toStringTag","unscopables","pure","useSetter","useSimple","tmp","objectStatic","is","x","y","buggy","__proto__","JSON","wrapObjectMethod","MODE","o","isInteger","EPSILON","isSafeInteger","MIN_SAFE_INTEGER","parseFloat","parseInt","asinh","log","sqrt","expm1","E","sign","acosh","NaN","atanh","cbrt","clz32","cosh","fround","Float32Array","hypot","sum","len1","len2","larg","imul","UInt16","xn","yn","xl","yl","log1p","log10","LN10","log2","LN2","sinh","tanh","RangeError","fromCharCode","assertNotRegExp","fromCodePoint","code","len","raw","callSite","sln","codePointAt","endsWith","searchString","endPosition","end","includes","repeat","count","str","n","startsWith","from","arrayLike","mapfn","mapping","of","copyWithin","start","to","fin","inc","fill","endPos","find","findIndex","at","iterated","k","point","ONREADYSTATECHANGE","run","id","queue","listner","event","data","defer","channel","port","postMessage","addEventListener","MessageChannel","counter","importScripts","port2","port1","onmessage","removeChild","Promise","resolve","asap","DEF","isThenable","then","notify","def","chain","msg","ok","state","react","ret","cb","fail","rej","err","wrapper","reject","getConstructor","executor","onFulfilled","onRejected","catch","all","remaining","results","promise","race","r","getCollection","methods","commonMethods","isWeak","initFromIterable","ADDER","fixSVZ","method","buggyZero","Native","inst","UID","O1","SIZE","LAST","FIRST","entry","p","v","fastKey","getEntry","prev","defWeak","leakStore","WEAK","LEAK","collectionMethods","clear","delete","add","weakMethods","Enumerate","wrap","reflectGet","propertyKey","receiver","desc","reflectSet","V","reflect","deleteProperty","enumerate","Reflect","createObjectToArray","isEntries","escape","REFERENCE","setMapMethods","MapProto","REFERENCE_SET","REFERENCE_DELETE","referenceGet","referenceSet","referenceDelete","DICT","DictIterator","createDictIter","createDictMethod","createDictReduce","isTurn","init","findKey","dict","dictMethods","mapPairs","turn","isDict","ENTRIES","FN","$for","createChainIterator","Iter","I","$forProto","MapIter","FilterIter","toLocaleString","tie","only","numberArguments","isThat","mixin","make","numberMethods","NumberIterator","lim","m","escapeHTMLDict","&","<",">","\"","'","unescapeHTMLDict","escapeHTML","unescapeHTML","formatRegExp","flexioRegExp","locales","current","SECONDS","MINUTES","HOURS","MONTH","YEAR","createFormat","prefix","template","locale","unit","lz","num","addLocale","lang","months","weekdays","format","formatUTC","arrayStatics","setArrayStatics","NodeList","MSIE","time","setInterval","userAgent","console","enabled","_console","enable","disable"],"mappings":"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"} \ No newline at end of file diff --git a/src/Quartz.Web/App/scripts/core-js/client/library.min.map b/src/Quartz.Web/App/scripts/core-js/client/library.min.map new file mode 100644 index 000000000..8eea7c664 --- /dev/null +++ b/src/Quartz.Web/App/scripts/core-js/client/library.min.map @@ -0,0 +1 @@ +{"version":3,"file":"library.min.js","sources":["library.js"],"names":["global","framework","undefined","isObject","it","isFunction","setToStringTag","tag","stat","has","PROTOTYPE","SYMBOL_TAG","hidden","cof","toString","call","slice","classof","klass","OBJECT","buildIn","part","fn","assertFunction","this","length","arguments","args","Array","i","_","path","holder","_args","that","_length","j","invoke","push","ctx","a","b","c","apply","un","construct","target","argumentsList","proto","instance","create","ObjectProto","result","toObject","ES5Object","assertDefined","returnIt","returnThis","get","object","key","ownKeys","assertObject","getSymbols","getNames","concat","keyOf","el","O","keys","getKeys","index","array","String","split","createArrayMethod","type","isMap","isFilter","isSome","isEvery","isFindIndex","noholes","callbackfn","val","res","Object","self","f","toLength","createArrayContains","isContains","toIndex","sameNaN","generic","A","B","number","toInteger","isNaN","trunc","min","MAX_SAFE_INTEGER","max","createReplacer","regExp","replace","isStatic","replacer","createPointAt","pos","s","l","charCodeAt","charAt","assert","condition","msg1","msg2","TypeError","assertInstance","Constructor","name","descriptor","bitmap","value","enumerable","configurable","writable","simpleSet","createDefiner","DESC","defineProperty","uid","SYMBOL","sid","random","TO_STRING","getWellKnownSymbol","setter","Symbol","safeSymbol","DOT","assignHidden","src","setSpecies","C","isNative","SYMBOL_SPECIES","setIterator","SYMBOL_ITERATOR","SUPPORT_FF_ITER","FF_ITERATOR","createIterator","NAME","next","IteratorPrototype","defineIterator","DEFAULT","iter","iterProto","getPrototypeOf","Iterators","defineStdIterators","Base","IS_SET","createIter","kind","entries","KEY","VALUE","values","$define","PROTO","FORCED","BUGGY_ITERATORS","iterResult","done","isIterable","hasExt","ITERATOR","getIterator","ext","getIter","stepCall","forOf","iterable","step","iterator","source","own","out","exp","isGlobal","GLOBAL","STATIC","exports","core","BIND","WRAP","param","REFERENCE_GET","Dict","FUNCTION","ARRAY","STRING","NUMBER","REGEXP","DATE","MAP","SET","WEAKMAP","WEAKSET","PROMISE","MATH","ARGUMENTS","CONSTRUCTOR","TO_STRING_TAG","TO_LOCALE","HAS_OWN","FOR_EACH","PROCESS","CREATE_ELEMENT","Function","Number","RegExp","Date","Map","Set","WeakMap","WeakSet","Math","setTimeout","setImmediate","clearImmediate","process","nextTick","document","html","documentElement","navigator","define","ArrayProto","FunctionProto","Infinity","test","Undefined","Null","Arguments","Error","Boolean","setPrototypeOf","defineProperties","getOwnDescriptor","getOwnPropertyDescriptor","getOwnPropertyNames","getOwnPropertySymbols","isFrozen","assign","T","S","indexOf","forEach","ceil","floor","REDUCE_ERROR","e","set","SYMBOL_UNSCOPABLES","ArrayUnscopables","ITER","NATIVE_ITERATORS","exportGlobal","NODE","old","module","amd","noConflict","IS_ENUMERABLE","Empty","_classof","$PROTO","createDict","iframeDocument","iframe","keysLen1","style","display","appendChild","contentWindow","open","write","close","F","keys1","createGetKeys","names","isPrimitive","arrayMethodFix","createArrayReduce","isRight","memo","P","Attributes","Properties","keys2","seal","freeze","preventExtensions","isSealed","isExtensible","bind","bound","partArgs","join","isArray","arg","map","filter","some","every","reduce","reduceRight","lastIndexOf","fromIndex","trim","now","callee","TAG","SymbolRegistry","AllSymbols","description","sym","symbolStatics","for","keyFor","species","toStringTag","unscopables","pure","useSetter","useSimple","RegExpProto","isFinite","tmp","asinh","x","log","sqrt","expm1","assertNotRegExp","wrapObjectMethod","MODE","o","RangeError","isInteger","sign","E","pow","abs","fcc","fromCharCode","at","objectStatic","is","y","buggy","__proto__","EPSILON","isSafeInteger","MIN_SAFE_INTEGER","parseFloat","parseInt","acosh","NaN","atanh","cbrt","clz32","cosh","fround","Float32Array","hypot","sum","len1","len2","larg","imul","UInt16","xn","yn","xl","yl","log1p","log10","LN10","log2","LN2","sinh","tanh","fromCodePoint","code","len","raw","callSite","sln","codePointAt","endsWith","searchString","endPosition","end","includes","repeat","count","str","n","startsWith","iterated","point","from","arrayLike","mapfn","mapping","of","copyWithin","start","to","fin","inc","fill","endPos","find","findIndex","k","JSON","match","_RegExp","pattern","flags","ONREADYSTATECHANGE","run","id","queue","listner","event","data","defer","channel","port","postMessage","addEventListener","MessageChannel","counter","importScripts","port2","port1","onmessage","removeChild","Promise","resolve","asap","DEF","isThenable","then","notify","def","chain","msg","ok","state","react","ret","cb","fail","rej","err","wrapper","reject","getConstructor","executor","onFulfilled","onRejected","catch","all","remaining","results","promise","race","r","getCollection","methods","commonMethods","isWeak","initFromIterable","ADDER","fixSVZ","method","buggyZero","Native","inst","UID","O1","SIZE","LAST","FIRST","entry","p","v","fastKey","getEntry","prev","defWeak","leakStore","WEAK","LEAK","collectionMethods","clear","delete","add","weakMethods","Enumerate","wrap","reflectGet","propertyKey","receiver","desc","reflectSet","V","reflect","deleteProperty","enumerate","Reflect","createObjectToArray","isEntries","escape","REFERENCE","setMapMethods","MapProto","REFERENCE_SET","REFERENCE_DELETE","referenceGet","referenceSet","referenceDelete","NodeList","DICT","DictIterator","createDictIter","createDictMethod","createDictReduce","isTurn","init","findKey","dict","dictMethods","mapPairs","turn","isDict","ENTRIES","FN","$for","createChainIterator","Iter","I","$forProto","MapIter","FilterIter","MSIE","time","setInterval","userAgent","toLocaleString","tie","only","numberArguments","isThat","mixin","make","arrayStatics","setArrayStatics","numberMethods","NumberIterator","lim","m","escapeHTMLDict","&","<",">","\"","'","unescapeHTMLDict","escapeHTML","unescapeHTML","formatRegExp","flexioRegExp","locales","current","SECONDS","MINUTES","HOURS","MONTH","YEAR","createFormat","prefix","template","locale","unit","lz","num","addLocale","lang","months","weekdays","format","formatUTC","console","enabled","_console","enable","disable"],"mappings":"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"} \ No newline at end of file diff --git a/src/Quartz.Web/App/scripts/core-js/client/shim.js b/src/Quartz.Web/App/scripts/core-js/client/shim.js new file mode 100644 index 000000000..9189631b6 --- /dev/null +++ b/src/Quartz.Web/App/scripts/core-js/client/shim.js @@ -0,0 +1,2106 @@ +/** + * Core.js 0.4.10 + * https://github.com/zloirock/core-js + * License: http://rock.mit-license.org + * © 2015 Denis Pushkarev + */ +!function(global, framework, undefined){ +'use strict'; + +/****************************************************************************** + * Module : common * + ******************************************************************************/ + + // Shortcuts for [[Class]] & property names +var OBJECT = 'Object' + , FUNCTION = 'Function' + , ARRAY = 'Array' + , STRING = 'String' + , NUMBER = 'Number' + , REGEXP = 'RegExp' + , DATE = 'Date' + , MAP = 'Map' + , SET = 'Set' + , WEAKMAP = 'WeakMap' + , WEAKSET = 'WeakSet' + , SYMBOL = 'Symbol' + , PROMISE = 'Promise' + , MATH = 'Math' + , ARGUMENTS = 'Arguments' + , PROTOTYPE = 'prototype' + , CONSTRUCTOR = 'constructor' + , TO_STRING = 'toString' + , TO_STRING_TAG = TO_STRING + 'Tag' + , TO_LOCALE = 'toLocaleString' + , HAS_OWN = 'hasOwnProperty' + , FOR_EACH = 'forEach' + , ITERATOR = 'iterator' + , FF_ITERATOR = '@@' + ITERATOR + , PROCESS = 'process' + , CREATE_ELEMENT = 'createElement' + // Aliases global objects and prototypes + , Function = global[FUNCTION] + , Object = global[OBJECT] + , Array = global[ARRAY] + , String = global[STRING] + , Number = global[NUMBER] + , RegExp = global[REGEXP] + , Date = global[DATE] + , Map = global[MAP] + , Set = global[SET] + , WeakMap = global[WEAKMAP] + , WeakSet = global[WEAKSET] + , Symbol = global[SYMBOL] + , Math = global[MATH] + , TypeError = global.TypeError + , setTimeout = global.setTimeout + , setImmediate = global.setImmediate + , clearImmediate = global.clearImmediate + , isFinite = global.isFinite + , process = global[PROCESS] + , nextTick = process && process.nextTick + , document = global.document + , html = document && document.documentElement + , navigator = global.navigator + , define = global.define + , ArrayProto = Array[PROTOTYPE] + , ObjectProto = Object[PROTOTYPE] + , FunctionProto = Function[PROTOTYPE] + , Infinity = 1 / 0 + , DOT = '.'; + +// http://jsperf.com/core-js-isobject +function isObject(it){ + return it !== null && (typeof it == 'object' || typeof it == 'function'); +} +function isFunction(it){ + return typeof it == 'function'; +} +// Native function? +var isNative = ctx(/./.test, /\[native code\]\s*\}\s*$/, 1); + +// Object internal [[Class]] or toStringTag +// http://people.mozilla.org/~jorendorff/es6-draft.html#sec-object.prototype.tostring +var toString = ObjectProto[TO_STRING]; +function setToStringTag(it, tag, stat){ + if(it && !has(it = stat ? it : it[PROTOTYPE], SYMBOL_TAG))hidden(it, SYMBOL_TAG, tag); +} +function cof(it){ + return it == undefined ? it === undefined + ? 'Undefined' : 'Null' : toString.call(it).slice(8, -1); +} +function classof(it){ + var klass = cof(it), tag; + return klass == OBJECT && (tag = it[SYMBOL_TAG]) ? tag : klass; +} + +// Function +var call = FunctionProto.call + , apply = FunctionProto.apply + , REFERENCE_GET; +// Partial apply +function part(/* ...args */){ + var fn = assertFunction(this) + , length = arguments.length + , args = Array(length) + , i = 0 + , _ = path._ + , holder = false; + while(length > i)if((args[i] = arguments[i++]) === _)holder = true; + return function(/* ...args */){ + var that = this + , _length = arguments.length + , i = 0, j = 0, _args; + if(!holder && !_length)return invoke(fn, args, that); + _args = args.slice(); + if(holder)for(;length > i; i++)if(_args[i] === _)_args[i] = arguments[j++]; + while(_length > j)_args.push(arguments[j++]); + return invoke(fn, _args, that); + } +} +// Optional / simple context binding +function ctx(fn, that, length){ + assertFunction(fn); + if(~length && that === undefined)return fn; + switch(length){ + case 1: return function(a){ + return fn.call(that, a); + } + case 2: return function(a, b){ + return fn.call(that, a, b); + } + case 3: return function(a, b, c){ + return fn.call(that, a, b, c); + } + } return function(/* ...args */){ + return fn.apply(that, arguments); + } +} +// Fast apply +// http://jsperf.lnkit.com/fast-apply/5 +function invoke(fn, args, that){ + var un = that === undefined; + switch(args.length | 0){ + case 0: return un ? fn() + : fn.call(that); + case 1: return un ? fn(args[0]) + : fn.call(that, args[0]); + case 2: return un ? fn(args[0], args[1]) + : fn.call(that, args[0], args[1]); + case 3: return un ? fn(args[0], args[1], args[2]) + : fn.call(that, args[0], args[1], args[2]); + case 4: return un ? fn(args[0], args[1], args[2], args[3]) + : fn.call(that, args[0], args[1], args[2], args[3]); + case 5: return un ? fn(args[0], args[1], args[2], args[3], args[4]) + : fn.call(that, args[0], args[1], args[2], args[3], args[4]); + } return fn.apply(that, args); +} +function construct(target, argumentsList /*, newTarget*/){ + var proto = assertFunction(arguments.length < 3 ? target : arguments[2])[PROTOTYPE] + , instance = create(isObject(proto) ? proto : ObjectProto) + , result = apply.call(target, instance, argumentsList); + return isObject(result) ? result : instance; +} + +// Object: +var create = Object.create + , getPrototypeOf = Object.getPrototypeOf + , setPrototypeOf = Object.setPrototypeOf + , defineProperty = Object.defineProperty + , defineProperties = Object.defineProperties + , getOwnDescriptor = Object.getOwnPropertyDescriptor + , getKeys = Object.keys + , getNames = Object.getOwnPropertyNames + , getSymbols = Object.getOwnPropertySymbols + , isFrozen = Object.isFrozen + , has = ctx(call, ObjectProto[HAS_OWN], 2) + // Dummy, fix for not array-like ES3 string in es5 module + , ES5Object = Object + , Dict; +function toObject(it){ + return ES5Object(assertDefined(it)); +} +function returnIt(it){ + return it; +} +function returnThis(){ + return this; +} +function get(object, key){ + if(has(object, key))return object[key]; +} +function ownKeys(it){ + assertObject(it); + return getSymbols ? getNames(it).concat(getSymbols(it)) : getNames(it); +} +// 19.1.2.1 Object.assign(target, source, ...) +var assign = Object.assign || function(target, source){ + var T = Object(assertDefined(target)) + , l = arguments.length + , i = 1; + while(l > i){ + var S = ES5Object(arguments[i++]) + , keys = getKeys(S) + , length = keys.length + , j = 0 + , key; + while(length > j)T[key = keys[j++]] = S[key]; + } + return T; +} +function keyOf(object, el){ + var O = toObject(object) + , keys = getKeys(O) + , length = keys.length + , index = 0 + , key; + while(length > index)if(O[key = keys[index++]] === el)return key; +} + +// Array +// array('str1,str2,str3') => ['str1', 'str2', 'str3'] +function array(it){ + return String(it).split(','); +} +var push = ArrayProto.push + , unshift = ArrayProto.unshift + , slice = ArrayProto.slice + , splice = ArrayProto.splice + , indexOf = ArrayProto.indexOf + , forEach = ArrayProto[FOR_EACH]; +/* + * 0 -> forEach + * 1 -> map + * 2 -> filter + * 3 -> some + * 4 -> every + * 5 -> find + * 6 -> findIndex + */ +function createArrayMethod(type){ + var isMap = type == 1 + , isFilter = type == 2 + , isSome = type == 3 + , isEvery = type == 4 + , isFindIndex = type == 6 + , noholes = type == 5 || isFindIndex; + return function(callbackfn/*, that = undefined */){ + var O = Object(assertDefined(this)) + , that = arguments[1] + , self = ES5Object(O) + , f = ctx(callbackfn, that, 3) + , length = toLength(self.length) + , index = 0 + , result = isMap ? Array(length) : isFilter ? [] : undefined + , val, res; + for(;length > index; index++)if(noholes || index in self){ + val = self[index]; + res = f(val, index, O); + if(type){ + if(isMap)result[index] = res; // map + else if(res)switch(type){ + case 3: return true; // some + case 5: return val; // find + case 6: return index; // findIndex + case 2: result.push(val); // filter + } else if(isEvery)return false; // every + } + } + return isFindIndex ? -1 : isSome || isEvery ? isEvery : result; + } +} +function createArrayContains(isContains){ + return function(el /*, fromIndex = 0 */){ + var O = toObject(this) + , length = toLength(O.length) + , index = toIndex(arguments[1], length); + if(isContains && el != el){ + for(;length > index; index++)if(sameNaN(O[index]))return isContains || index; + } else for(;length > index; index++)if(isContains || index in O){ + if(O[index] === el)return isContains || index; + } return !isContains && -1; + } +} +function generic(A, B){ + // strange IE quirks mode bug -> use typeof vs isFunction + return typeof A == 'function' ? A : B; +} + +// Math +var MAX_SAFE_INTEGER = 0x1fffffffffffff // pow(2, 53) - 1 == 9007199254740991 + , pow = Math.pow + , abs = Math.abs + , ceil = Math.ceil + , floor = Math.floor + , max = Math.max + , min = Math.min + , random = Math.random + , trunc = Math.trunc || function(it){ + return (it > 0 ? floor : ceil)(it); + } +// 20.1.2.4 Number.isNaN(number) +function sameNaN(number){ + return number != number; +} +// 7.1.4 ToInteger +function toInteger(it){ + return isNaN(it) ? 0 : trunc(it); +} +// 7.1.15 ToLength +function toLength(it){ + return it > 0 ? min(toInteger(it), MAX_SAFE_INTEGER) : 0; +} +function toIndex(index, length){ + var index = toInteger(index); + return index < 0 ? max(index + length, 0) : min(index, length); +} + +function createReplacer(regExp, replace, isStatic){ + var replacer = isObject(replace) ? function(part){ + return replace[part]; + } : replace; + return function(it){ + return String(isStatic ? it : this).replace(regExp, replacer); + } +} +function createPointAt(toString){ + return function(pos){ + var s = String(assertDefined(this)) + , i = toInteger(pos) + , l = s.length + , a, b; + if(i < 0 || i >= l)return toString ? '' : undefined; + a = s.charCodeAt(i); + return a < 0xd800 || a > 0xdbff || i + 1 === l || (b = s.charCodeAt(i + 1)) < 0xdc00 || b > 0xdfff + ? toString ? s.charAt(i) : a + : toString ? s.slice(i, i + 2) : (a - 0xd800 << 10) + (b - 0xdc00) + 0x10000; + } +} + +// Assertion & errors +var REDUCE_ERROR = 'Reduce of empty object with no initial value'; +function assert(condition, msg1, msg2){ + if(!condition)throw TypeError(msg2 ? msg1 + msg2 : msg1); +} +function assertDefined(it){ + if(it == undefined)throw TypeError('Function called on null or undefined'); + return it; +} +function assertFunction(it){ + assert(isFunction(it), it, ' is not a function!'); + return it; +} +function assertObject(it){ + assert(isObject(it), it, ' is not an object!'); + return it; +} +function assertInstance(it, Constructor, name){ + assert(it instanceof Constructor, name, ": use the 'new' operator!"); +} + +// Property descriptors & Symbol +function descriptor(bitmap, value){ + return { + enumerable : !(bitmap & 1), + configurable: !(bitmap & 2), + writable : !(bitmap & 4), + value : value + } +} +function simpleSet(object, key, value){ + object[key] = value; + return object; +} +function createDefiner(bitmap){ + return DESC ? function(object, key, value){ + return defineProperty(object, key, descriptor(bitmap, value)); + } : simpleSet; +} +function uid(key){ + return SYMBOL + '(' + key + ')_' + (++sid + random())[TO_STRING](36); +} +function getWellKnownSymbol(name, setter){ + return (Symbol && Symbol[name]) || (setter ? Symbol : safeSymbol)(SYMBOL + DOT + name); +} +// The engine works fine with descriptors? Thank's IE8 for his funny defineProperty. +var DESC = !!function(){try{return defineProperty({}, DOT, ObjectProto)}catch(e){}}() + , sid = 0 + , hidden = createDefiner(1) + , set = Symbol ? simpleSet : hidden + , safeSymbol = Symbol || uid; +function assignHidden(target, src){ + for(var key in src)hidden(target, key, src[key]); + return target; +} + +var SYMBOL_UNSCOPABLES = getWellKnownSymbol('unscopables') + , ArrayUnscopables = ArrayProto[SYMBOL_UNSCOPABLES] || {} + , SYMBOL_SPECIES = getWellKnownSymbol('species'); +function setSpecies(C){ + if(framework || !isNative(C))defineProperty(C, SYMBOL_SPECIES, { + configurable: true, + get: returnThis + }); +} + +// Iterators +var SYMBOL_ITERATOR = getWellKnownSymbol(ITERATOR) + , SYMBOL_TAG = getWellKnownSymbol(TO_STRING_TAG) + , SUPPORT_FF_ITER = FF_ITERATOR in ArrayProto + , ITER = safeSymbol('iter') + , KEY = 1 + , VALUE = 2 + , Iterators = {} + , IteratorPrototype = {} + , NATIVE_ITERATORS = SYMBOL_ITERATOR in ArrayProto + // Safari define byggy iterators w/o `next` + , BUGGY_ITERATORS = 'keys' in ArrayProto && !('next' in [].keys()); +// 25.1.2.1.1 %IteratorPrototype%[@@iterator]() +setIterator(IteratorPrototype, returnThis); +function setIterator(O, value){ + hidden(O, SYMBOL_ITERATOR, value); + // Add iterator for FF iterator protocol + SUPPORT_FF_ITER && hidden(O, FF_ITERATOR, value); +} +function createIterator(Constructor, NAME, next, proto){ + Constructor[PROTOTYPE] = create(proto || IteratorPrototype, {next: descriptor(1, next)}); + setToStringTag(Constructor, NAME + ' Iterator'); +} +function defineIterator(Constructor, NAME, value, DEFAULT){ + var proto = Constructor[PROTOTYPE] + , iter = get(proto, SYMBOL_ITERATOR) || get(proto, FF_ITERATOR) || (DEFAULT && get(proto, DEFAULT)) || value; + if(framework){ + // Define iterator + setIterator(proto, iter); + if(iter !== value){ + var iterProto = getPrototypeOf(iter.call(new Constructor)); + // Set @@toStringTag to native iterators + setToStringTag(iterProto, NAME + ' Iterator', true); + // FF fix + has(proto, FF_ITERATOR) && setIterator(iterProto, returnThis); + } + } + // Plug for library + Iterators[NAME] = iter; + // FF & v8 fix + Iterators[NAME + ' Iterator'] = returnThis; + return iter; +} +function defineStdIterators(Base, NAME, Constructor, next, DEFAULT, IS_SET){ + function createIter(kind){ + return function(){ + return new Constructor(this, kind); + } + } + createIterator(Constructor, NAME, next); + var entries = createIter(KEY+VALUE) + , values = createIter(VALUE); + if(DEFAULT == VALUE)values = defineIterator(Base, NAME, values, 'values'); + else entries = defineIterator(Base, NAME, entries, 'entries'); + if(DEFAULT){ + $define(PROTO + FORCED * BUGGY_ITERATORS, NAME, { + entries: entries, + keys: IS_SET ? values : createIter(KEY), + values: values + }); + } +} +function iterResult(done, value){ + return {value: value, done: !!done}; +} +function isIterable(it){ + var O = Object(it) + , Symbol = global[SYMBOL] + , hasExt = (Symbol && Symbol[ITERATOR] || FF_ITERATOR) in O; + return hasExt || SYMBOL_ITERATOR in O || has(Iterators, classof(O)); +} +function getIterator(it){ + var Symbol = global[SYMBOL] + , ext = it[Symbol && Symbol[ITERATOR] || FF_ITERATOR] + , getIter = ext || it[SYMBOL_ITERATOR] || Iterators[classof(it)]; + return assertObject(getIter.call(it)); +} +function stepCall(fn, value, entries){ + return entries ? invoke(fn, value) : fn(value); +} +function forOf(iterable, entries, fn, that){ + var iterator = getIterator(iterable) + , f = ctx(fn, that, entries ? 2 : 1) + , step; + while(!(step = iterator.next()).done)if(stepCall(f, step.value, entries) === false)return; +} + +// core +var NODE = cof(process) == PROCESS + , core = {} + , path = framework ? global : core + , old = global.core + , exportGlobal + // type bitmap + , FORCED = 1 + , GLOBAL = 2 + , STATIC = 4 + , PROTO = 8 + , BIND = 16 + , WRAP = 32; +function $define(type, name, source){ + var key, own, out, exp + , isGlobal = type & GLOBAL + , target = isGlobal ? global : (type & STATIC) + ? global[name] : (global[name] || ObjectProto)[PROTOTYPE] + , exports = isGlobal ? core : core[name] || (core[name] = {}); + if(isGlobal)source = name; + for(key in source){ + // there is a similar native + own = !(type & FORCED) && target && key in target + && (!isFunction(target[key]) || isNative(target[key])); + // export native or passed + out = (own ? target : source)[key]; + // bind timers to global for call from export context + if(type & BIND && own)exp = ctx(out, global); + // wrap global constructors for prevent change them in library + else if(type & WRAP && !framework && target[key] == out){ + exp = function(param){ + return this instanceof out ? new out(param) : out(param); + } + exp[PROTOTYPE] = out[PROTOTYPE]; + } else exp = type & PROTO && isFunction(out) ? ctx(call, out) : out; + // export + if(exports[key] != out)hidden(exports, key, exp); + // extend global + if(framework && target && !own){ + if(isGlobal)target[key] = out; + else delete target[key] && hidden(target, key, out); + } + } +} +// CommonJS export +if(typeof module != 'undefined' && module.exports)module.exports = core; +// RequireJS export +else if(isFunction(define) && define.amd)define(function(){return core}); +// Export to global object +else exportGlobal = true; +if(exportGlobal || framework){ + core.noConflict = function(){ + global.core = old; + return core; + } + global.core = core; +} + +/****************************************************************************** + * Module : es5 * + ******************************************************************************/ + +// ECMAScript 5 shim +!function(IS_ENUMERABLE, Empty, _classof, $PROTO){ + if(!DESC){ + getOwnDescriptor = function(O, P){ + if(has(O, P))return descriptor(!ObjectProto[IS_ENUMERABLE].call(O, P), O[P]); + }; + defineProperty = function(O, P, Attributes){ + if('value' in Attributes)assertObject(O)[P] = Attributes.value; + return O; + }; + defineProperties = function(O, Properties){ + assertObject(O); + var keys = getKeys(Properties) + , length = keys.length + , i = 0 + , P, Attributes; + while(length > i){ + P = keys[i++]; + Attributes = Properties[P]; + if('value' in Attributes)O[P] = Attributes.value; + } + return O; + }; + } + $define(STATIC + FORCED * !DESC, OBJECT, { + // 19.1.2.6 / 15.2.3.3 Object.getOwnPropertyDescriptor(O, P) + getOwnPropertyDescriptor: getOwnDescriptor, + // 19.1.2.4 / 15.2.3.6 Object.defineProperty(O, P, Attributes) + defineProperty: defineProperty, + // 19.1.2.3 / 15.2.3.7 Object.defineProperties(O, Properties) + defineProperties: defineProperties + }); + + // IE 8- don't enum bug keys + var keys1 = [CONSTRUCTOR, HAS_OWN, 'isPrototypeOf', IS_ENUMERABLE, TO_LOCALE, TO_STRING, 'valueOf'] + // Additional keys for getOwnPropertyNames + , keys2 = keys1.concat('length', PROTOTYPE) + , keysLen1 = keys1.length; + + // Create object with `null` prototype: use iframe Object with cleared prototype + function createDict(){ + // Thrash, waste and sodomy: IE GC bug + var iframe = document[CREATE_ELEMENT]('iframe') + , i = keysLen1 + , iframeDocument; + iframe.style.display = 'none'; + html.appendChild(iframe); + iframe.src = 'javascript:'; + // createDict = iframe.contentWindow.Object; + // html.removeChild(iframe); + iframeDocument = iframe.contentWindow.document; + iframeDocument.open(); + iframeDocument.write(''); + iframeDocument.close(); + createDict = iframeDocument.F; + while(i--)delete createDict[PROTOTYPE][keys1[i]]; + return createDict(); + } + function createGetKeys(names, length, isNames){ + return function(object){ + var O = toObject(object) + , i = 0 + , result = [] + , key; + for(key in O)if(key != $PROTO)has(O, key) && result.push(key); + // Don't enum bug & hidden keys + while(length > i)if(has(O, key = names[i++])){ + ~indexOf.call(result, key) || result.push(key); + } + return result; + } + } + function isPrimitive(it){ return !isObject(it) } + $define(STATIC, OBJECT, { + // 19.1.2.9 / 15.2.3.2 Object.getPrototypeOf(O) + getPrototypeOf: getPrototypeOf = getPrototypeOf || function(O){ + O = Object(assertDefined(O)); + if(has(O, $PROTO))return O[$PROTO]; + if(isFunction(O[CONSTRUCTOR]) && O instanceof O[CONSTRUCTOR]){ + return O[CONSTRUCTOR][PROTOTYPE]; + } return O instanceof Object ? ObjectProto : null; + }, + // 19.1.2.7 / 15.2.3.4 Object.getOwnPropertyNames(O) + getOwnPropertyNames: getNames = getNames || createGetKeys(keys2, keys2.length, true), + // 19.1.2.2 / 15.2.3.5 Object.create(O [, Properties]) + create: create = create || function(O, /*?*/Properties){ + var result + if(O !== null){ + Empty[PROTOTYPE] = assertObject(O); + result = new Empty(); + Empty[PROTOTYPE] = null; + // add "__proto__" for Object.getPrototypeOf shim + if(result[CONSTRUCTOR][PROTOTYPE] !== O)result[$PROTO] = O; + } else result = createDict(); + return Properties === undefined ? result : defineProperties(result, Properties); + }, + // 19.1.2.14 / 15.2.3.14 Object.keys(O) + keys: getKeys = getKeys || createGetKeys(keys1, keysLen1, false), + // 19.1.2.17 / 15.2.3.8 Object.seal(O) + seal: returnIt, // <- cap + // 19.1.2.5 / 15.2.3.9 Object.freeze(O) + freeze: returnIt, // <- cap + // 19.1.2.15 / 15.2.3.10 Object.preventExtensions(O) + preventExtensions: returnIt, // <- cap + // 19.1.2.13 / 15.2.3.11 Object.isSealed(O) + isSealed: isPrimitive, // <- cap + // 19.1.2.12 / 15.2.3.12 Object.isFrozen(O) + isFrozen: isFrozen = isFrozen || isPrimitive, // <- cap + // 19.1.2.11 / 15.2.3.13 Object.isExtensible(O) + isExtensible: isObject // <- cap + }); + + // 19.2.3.2 / 15.3.4.5 Function.prototype.bind(thisArg, args...) + $define(PROTO, FUNCTION, { + bind: function(that /*, args... */){ + var fn = assertFunction(this) + , partArgs = slice.call(arguments, 1); + function bound(/* args... */){ + var args = partArgs.concat(slice.call(arguments)); + return this instanceof bound ? construct(fn, args) : invoke(fn, args, that); + } + return bound; + } + }); + + // Fix for not array-like ES3 string + function arrayMethodFix(fn){ + return function(){ + return fn.apply(ES5Object(this), arguments); + } + } + if(!(0 in Object(DOT) && DOT[0] == DOT)){ + ES5Object = function(it){ + return cof(it) == STRING ? it.split('') : Object(it); + } + slice = arrayMethodFix(slice); + } + $define(PROTO + FORCED * (ES5Object != Object), ARRAY, { + slice: slice, + join: arrayMethodFix(ArrayProto.join) + }); + + // 22.1.2.2 / 15.4.3.2 Array.isArray(arg) + $define(STATIC, ARRAY, { + isArray: function(arg){ + return cof(arg) == ARRAY + } + }); + function createArrayReduce(isRight){ + return function(callbackfn, memo){ + assertFunction(callbackfn); + var O = toObject(this) + , length = toLength(O.length) + , index = isRight ? length - 1 : 0 + , i = isRight ? -1 : 1; + if(2 > arguments.length)for(;;){ + if(index in O){ + memo = O[index]; + index += i; + break; + } + index += i; + assert(isRight ? index >= 0 : length > index, REDUCE_ERROR); + } + for(;isRight ? index >= 0 : length > index; index += i)if(index in O){ + memo = callbackfn(memo, O[index], index, this); + } + return memo; + } + } + $define(PROTO, ARRAY, { + // 22.1.3.10 / 15.4.4.18 Array.prototype.forEach(callbackfn [, thisArg]) + forEach: forEach = forEach || createArrayMethod(0), + // 22.1.3.15 / 15.4.4.19 Array.prototype.map(callbackfn [, thisArg]) + map: createArrayMethod(1), + // 22.1.3.7 / 15.4.4.20 Array.prototype.filter(callbackfn [, thisArg]) + filter: createArrayMethod(2), + // 22.1.3.23 / 15.4.4.17 Array.prototype.some(callbackfn [, thisArg]) + some: createArrayMethod(3), + // 22.1.3.5 / 15.4.4.16 Array.prototype.every(callbackfn [, thisArg]) + every: createArrayMethod(4), + // 22.1.3.18 / 15.4.4.21 Array.prototype.reduce(callbackfn [, initialValue]) + reduce: createArrayReduce(false), + // 22.1.3.19 / 15.4.4.22 Array.prototype.reduceRight(callbackfn [, initialValue]) + reduceRight: createArrayReduce(true), + // 22.1.3.11 / 15.4.4.14 Array.prototype.indexOf(searchElement [, fromIndex]) + indexOf: indexOf = indexOf || createArrayContains(false), + // 22.1.3.14 / 15.4.4.15 Array.prototype.lastIndexOf(searchElement [, fromIndex]) + lastIndexOf: function(el, fromIndex /* = @[*-1] */){ + var O = toObject(this) + , length = toLength(O.length) + , index = length - 1; + if(arguments.length > 1)index = min(index, toInteger(fromIndex)); + if(index < 0)index = toLength(length + index); + for(;index >= 0; index--)if(index in O)if(O[index] === el)return index; + return -1; + } + }); + + // 21.1.3.25 / 15.5.4.20 String.prototype.trim() + $define(PROTO, STRING, {trim: createReplacer(/^\s*([\s\S]*\S)?\s*$/, '$1')}); + + // 20.3.3.1 / 15.9.4.4 Date.now() + $define(STATIC, DATE, {now: function(){ + return +new Date; + }}); + + if(_classof(function(){return arguments}()) == OBJECT)classof = function(it){ + var cof = _classof(it); + return cof == OBJECT && isFunction(it.callee) ? ARGUMENTS : cof; + } +}('propertyIsEnumerable', function(){}, classof, safeSymbol(PROTOTYPE)); + +/****************************************************************************** + * Module : es6.symbol * + ******************************************************************************/ + +// ECMAScript 6 symbols shim +!function(TAG, SymbolRegistry, AllSymbols, setter){ + // 19.4.1.1 Symbol([description]) + if(!isNative(Symbol)){ + Symbol = function(description){ + assert(!(this instanceof Symbol), SYMBOL + ' is not a ' + CONSTRUCTOR); + var tag = uid(description) + , sym = set(create(Symbol[PROTOTYPE]), TAG, tag); + AllSymbols[tag] = sym; + DESC && setter && defineProperty(ObjectProto, tag, { + configurable: true, + set: function(value){ + hidden(this, tag, value); + } + }); + return sym; + } + hidden(Symbol[PROTOTYPE], TO_STRING, function(){ + return this[TAG]; + }); + } + $define(GLOBAL + WRAP, {Symbol: Symbol}); + + var symbolStatics = { + // 19.4.2.1 Symbol.for(key) + 'for': function(key){ + return has(SymbolRegistry, key += '') + ? SymbolRegistry[key] + : SymbolRegistry[key] = Symbol(key); + }, + // 19.4.2.4 Symbol.iterator + iterator: SYMBOL_ITERATOR, + // 19.4.2.5 Symbol.keyFor(sym) + keyFor: part.call(keyOf, SymbolRegistry), + // 19.4.2.10 Symbol.species + species: SYMBOL_SPECIES, + // 19.4.2.13 Symbol.toStringTag + toStringTag: SYMBOL_TAG = getWellKnownSymbol(TO_STRING_TAG, true), + // 19.4.2.14 Symbol.unscopables + unscopables: SYMBOL_UNSCOPABLES, + pure: safeSymbol, + set: set, + useSetter: function(){setter = true}, + useSimple: function(){setter = false} + }; + // 19.4.2.2 Symbol.hasInstance + // 19.4.2.3 Symbol.isConcatSpreadable + // 19.4.2.6 Symbol.match + // 19.4.2.8 Symbol.replace + // 19.4.2.9 Symbol.search + // 19.4.2.11 Symbol.split + // 19.4.2.12 Symbol.toPrimitive + forEach.call(array('hasInstance,isConcatSpreadable,match,replace,search,split,toPrimitive'), + function(it){ + symbolStatics[it] = getWellKnownSymbol(it); + } + ); + $define(STATIC, SYMBOL, symbolStatics); + + setToStringTag(Symbol, SYMBOL); + + $define(STATIC + FORCED * !isNative(Symbol), OBJECT, { + // 19.1.2.7 Object.getOwnPropertyNames(O) + getOwnPropertyNames: function(it){ + var names = getNames(toObject(it)), result = [], key, i = 0; + while(names.length > i)has(AllSymbols, key = names[i++]) || result.push(key); + return result; + }, + // 19.1.2.8 Object.getOwnPropertySymbols(O) + getOwnPropertySymbols: function(it){ + var names = getNames(toObject(it)), result = [], key, i = 0; + while(names.length > i)has(AllSymbols, key = names[i++]) && result.push(AllSymbols[key]); + return result; + } + }); +}(safeSymbol('tag'), {}, {}, true); + +/****************************************************************************** + * Module : es6.object * + ******************************************************************************/ + +!function(tmp){ + var objectStatic = { + // 19.1.3.1 Object.assign(target, source) + assign: assign, + // 19.1.3.10 Object.is(value1, value2) + is: function(x, y){ + return x === y ? x !== 0 || 1 / x === 1 / y : x != x && y != y; + } + }; + // 19.1.3.19 Object.setPrototypeOf(O, proto) + // Works with __proto__ only. Old v8 can't works with null proto objects. + '__proto__' in ObjectProto && function(buggy, set){ + try { + set = ctx(call, getOwnDescriptor(ObjectProto, '__proto__').set, 2); + set({}, ArrayProto); + } catch(e){ buggy = true } + objectStatic.setPrototypeOf = setPrototypeOf = setPrototypeOf || function(O, proto){ + assertObject(O); + assert(proto === null || isObject(proto), proto, ": can't set as prototype!"); + if(buggy)O.__proto__ = proto; + else set(O, proto); + return O; + } + }(); + $define(STATIC, OBJECT, objectStatic); + + if(framework){ + // 19.1.3.6 Object.prototype.toString() + tmp[SYMBOL_TAG] = DOT; + if(cof(tmp) != DOT)hidden(ObjectProto, TO_STRING, function(){ + return '[object ' + classof(this) + ']'; + }); + } + + // 20.2.1.9 Math[@@toStringTag] + setToStringTag(Math, MATH, true); + // 24.3.3 JSON[@@toStringTag] + setToStringTag(global.JSON, 'JSON', true); +}({}); + +/****************************************************************************** + * Module : es6.object.statics-accept-primitives * + ******************************************************************************/ + +!function(){ + // Object static methods accept primitives + function wrapObjectMethod(key, MODE){ + var fn = Object[key] + , exp = core[OBJECT][key] + , f = 0 + , o = {}; + if(!exp || isNative(exp)){ + o[key] = MODE == 1 ? function(it){ + return isObject(it) ? fn(it) : it; + } : MODE == 2 ? function(it){ + return isObject(it) ? fn(it) : true; + } : MODE == 3 ? function(it){ + return isObject(it) ? fn(it) : false; + } : MODE == 4 ? function(it, key){ + return fn(toObject(it), key); + } : function(it){ + return fn(toObject(it)); + }; + try { fn(DOT) } + catch(e){ f = 1 } + $define(STATIC + FORCED * f, OBJECT, o); + } + } + wrapObjectMethod('freeze', 1); + wrapObjectMethod('seal', 1); + wrapObjectMethod('preventExtensions', 1); + wrapObjectMethod('isFrozen', 2); + wrapObjectMethod('isSealed', 2); + wrapObjectMethod('isExtensible', 3); + wrapObjectMethod('getOwnPropertyDescriptor', 4); + wrapObjectMethod('getPrototypeOf'); + wrapObjectMethod('keys'); + wrapObjectMethod('getOwnPropertyNames'); +}(); + +/****************************************************************************** + * Module : es6.function * + ******************************************************************************/ + +!function(NAME){ + // 19.2.4.2 name + NAME in FunctionProto || defineProperty(FunctionProto, NAME, { + configurable: true, + get: function(){ + var match = String(this).match(/^\s*function ([^ (]*)/) + , name = match ? match[1] : ''; + has(this, NAME) || defineProperty(this, NAME, descriptor(5, name)); + return name; + }, + set: function(value){ + has(this, NAME) || defineProperty(this, NAME, descriptor(0, value)); + } + }); +}('name'); + +/****************************************************************************** + * Module : es6.number * + ******************************************************************************/ + +!function(isInteger){ + $define(STATIC, NUMBER, { + // 20.1.2.1 Number.EPSILON + EPSILON: pow(2, -52), + // 20.1.2.2 Number.isFinite(number) + isFinite: function(it){ + return typeof it == 'number' && isFinite(it); + }, + // 20.1.2.3 Number.isInteger(number) + isInteger: isInteger, + // 20.1.2.4 Number.isNaN(number) + isNaN: sameNaN, + // 20.1.2.5 Number.isSafeInteger(number) + isSafeInteger: function(number){ + return isInteger(number) && abs(number) <= MAX_SAFE_INTEGER; + }, + // 20.1.2.6 Number.MAX_SAFE_INTEGER + MAX_SAFE_INTEGER: MAX_SAFE_INTEGER, + // 20.1.2.10 Number.MIN_SAFE_INTEGER + MIN_SAFE_INTEGER: -MAX_SAFE_INTEGER, + // 20.1.2.12 Number.parseFloat(string) + parseFloat: parseFloat, + // 20.1.2.13 Number.parseInt(string, radix) + parseInt: parseInt + }); +// 20.1.2.3 Number.isInteger(number) +}(Number.isInteger || function(it){ + return !isObject(it) && isFinite(it) && floor(it) === it; +}); + +/****************************************************************************** + * Module : es6.math * + ******************************************************************************/ + +// ECMAScript 6 shim +!function(){ + // 20.2.2.28 Math.sign(x) + var E = Math.E + , exp = Math.exp + , log = Math.log + , sqrt = Math.sqrt + , sign = Math.sign || function(x){ + return (x = +x) == 0 || x != x ? x : x < 0 ? -1 : 1; + }; + + // 20.2.2.5 Math.asinh(x) + function asinh(x){ + return !isFinite(x = +x) || x == 0 ? x : x < 0 ? -asinh(-x) : log(x + sqrt(x * x + 1)); + } + // 20.2.2.14 Math.expm1(x) + function expm1(x){ + return (x = +x) == 0 ? x : x > -1e-6 && x < 1e-6 ? x + x * x / 2 : exp(x) - 1; + } + + $define(STATIC, MATH, { + // 20.2.2.3 Math.acosh(x) + acosh: function(x){ + return (x = +x) < 1 ? NaN : isFinite(x) ? log(x / E + sqrt(x + 1) * sqrt(x - 1) / E) + 1 : x; + }, + // 20.2.2.5 Math.asinh(x) + asinh: asinh, + // 20.2.2.7 Math.atanh(x) + atanh: function(x){ + return (x = +x) == 0 ? x : log((1 + x) / (1 - x)) / 2; + }, + // 20.2.2.9 Math.cbrt(x) + cbrt: function(x){ + return sign(x = +x) * pow(abs(x), 1 / 3); + }, + // 20.2.2.11 Math.clz32(x) + clz32: function(x){ + return (x >>>= 0) ? 32 - x[TO_STRING](2).length : 32; + }, + // 20.2.2.12 Math.cosh(x) + cosh: function(x){ + return (exp(x = +x) + exp(-x)) / 2; + }, + // 20.2.2.14 Math.expm1(x) + expm1: expm1, + // 20.2.2.16 Math.fround(x) + // TODO: fallback for IE9- + fround: function(x){ + return new Float32Array([x])[0]; + }, + // 20.2.2.17 Math.hypot([value1[, value2[, … ]]]) + hypot: function(value1, value2){ + var sum = 0 + , len1 = arguments.length + , len2 = len1 + , args = Array(len1) + , larg = -Infinity + , arg; + while(len1--){ + arg = args[len1] = +arguments[len1]; + if(arg == Infinity || arg == -Infinity)return Infinity; + if(arg > larg)larg = arg; + } + larg = arg || 1; + while(len2--)sum += pow(args[len2] / larg, 2); + return larg * sqrt(sum); + }, + // 20.2.2.18 Math.imul(x, y) + imul: function(x, y){ + var UInt16 = 0xffff + , xn = +x + , yn = +y + , xl = UInt16 & xn + , yl = UInt16 & yn; + return 0 | xl * yl + ((UInt16 & xn >>> 16) * yl + xl * (UInt16 & yn >>> 16) << 16 >>> 0); + }, + // 20.2.2.20 Math.log1p(x) + log1p: function(x){ + return (x = +x) > -1e-8 && x < 1e-8 ? x - x * x / 2 : log(1 + x); + }, + // 20.2.2.21 Math.log10(x) + log10: function(x){ + return log(x) / Math.LN10; + }, + // 20.2.2.22 Math.log2(x) + log2: function(x){ + return log(x) / Math.LN2; + }, + // 20.2.2.28 Math.sign(x) + sign: sign, + // 20.2.2.30 Math.sinh(x) + sinh: function(x){ + return (abs(x = +x) < 1) ? (expm1(x) - expm1(-x)) / 2 : (exp(x - 1) - exp(-x - 1)) * (E / 2); + }, + // 20.2.2.33 Math.tanh(x) + tanh: function(x){ + var a = expm1(x = +x) + , b = expm1(-x); + return a == Infinity ? 1 : b == Infinity ? -1 : (a - b) / (exp(x) + exp(-x)); + }, + // 20.2.2.34 Math.trunc(x) + trunc: trunc + }); +}(); + +/****************************************************************************** + * Module : es6.string * + ******************************************************************************/ + +!function(RangeError, fromCharCode){ + function assertNotRegExp(it){ + if(cof(it) == REGEXP)throw TypeError(); + } + + $define(STATIC, STRING, { + // 21.1.2.2 String.fromCodePoint(...codePoints) + fromCodePoint: function(x){ + var res = [] + , len = arguments.length + , i = 0 + , code + while(len > i){ + code = +arguments[i++]; + if(toIndex(code, 0x10ffff) !== code)throw RangeError(code + ' is not a valid code point'); + res.push(code < 0x10000 + ? fromCharCode(code) + : fromCharCode(((code -= 0x10000) >> 10) + 0xd800, code % 0x400 + 0xdc00) + ); + } return res.join(''); + }, + // 21.1.2.4 String.raw(callSite, ...substitutions) + raw: function(callSite){ + var raw = toObject(callSite.raw) + , len = toLength(raw.length) + , sln = arguments.length + , res = [] + , i = 0; + while(len > i){ + res.push(String(raw[i++])); + if(i < sln)res.push(String(arguments[i])); + } return res.join(''); + } + }); + + $define(PROTO, STRING, { + // 21.1.3.3 String.prototype.codePointAt(pos) + codePointAt: createPointAt(false), + // 21.1.3.6 String.prototype.endsWith(searchString [, endPosition]) + endsWith: function(searchString /*, endPosition = @length */){ + assertNotRegExp(searchString); + var that = String(assertDefined(this)) + , endPosition = arguments[1] + , len = toLength(that.length) + , end = endPosition === undefined ? len : min(toLength(endPosition), len); + searchString += ''; + return that.slice(end - searchString.length, end) === searchString; + }, + // 21.1.3.7 String.prototype.includes(searchString, position = 0) + includes: function(searchString /*, position = 0 */){ + assertNotRegExp(searchString); + return !!~String(assertDefined(this)).indexOf(searchString, arguments[1]); + }, + // 21.1.3.13 String.prototype.repeat(count) + repeat: function(count){ + var str = String(assertDefined(this)) + , res = '' + , n = toInteger(count); + if(0 > n || n == Infinity)throw RangeError("Count can't be negative"); + for(;n > 0; (n >>>= 1) && (str += str))if(n & 1)res += str; + return res; + }, + // 21.1.3.18 String.prototype.startsWith(searchString [, position ]) + startsWith: function(searchString /*, position = 0 */){ + assertNotRegExp(searchString); + var that = String(assertDefined(this)) + , index = toLength(min(arguments[1], that.length)); + searchString += ''; + return that.slice(index, index + searchString.length) === searchString; + } + }); +}(global.RangeError, String.fromCharCode); + +/****************************************************************************** + * Module : es6.array * + ******************************************************************************/ + +!function(){ + $define(STATIC, ARRAY, { + // 22.1.2.1 Array.from(arrayLike, mapfn = undefined, thisArg = undefined) + from: function(arrayLike/*, mapfn = undefined, thisArg = undefined*/){ + var O = Object(assertDefined(arrayLike)) + , result = new (generic(this, Array)) + , mapfn = arguments[1] + , that = arguments[2] + , mapping = mapfn !== undefined + , f = mapping ? ctx(mapfn, that, 2) : undefined + , index = 0 + , length; + if(isIterable(O))for(var iter = getIterator(O), step; !(step = iter.next()).done; index++){ + result[index] = mapping ? f(step.value, index) : step.value; + } else for(length = toLength(O.length); length > index; index++){ + result[index] = mapping ? f(O[index], index) : O[index]; + } + result.length = index; + return result; + }, + // 22.1.2.3 Array.of( ...items) + of: function(/* ...args */){ + var index = 0 + , length = arguments.length + , result = new (generic(this, Array))(length); + while(length > index)result[index] = arguments[index++]; + result.length = length; + return result; + } + }); + + $define(PROTO, ARRAY, { + // 22.1.3.3 Array.prototype.copyWithin(target, start, end = this.length) + copyWithin: function(target /* = 0 */, start /* = 0, end = @length */){ + var O = Object(assertDefined(this)) + , len = toLength(O.length) + , to = toIndex(target, len) + , from = toIndex(start, len) + , end = arguments[2] + , fin = end === undefined ? len : toIndex(end, len) + , count = min(fin - from, len - to) + , inc = 1; + if(from < to && to < from + count){ + inc = -1; + from = from + count - 1; + to = to + count - 1; + } + while(count-- > 0){ + if(from in O)O[to] = O[from]; + else delete O[to]; + to += inc; + from += inc; + } return O; + }, + // 22.1.3.6 Array.prototype.fill(value, start = 0, end = this.length) + fill: function(value /*, start = 0, end = @length */){ + var O = Object(assertDefined(this)) + , length = toLength(O.length) + , index = toIndex(arguments[1], length) + , end = arguments[2] + , endPos = end === undefined ? length : toIndex(end, length); + while(endPos > index)O[index++] = value; + return O; + }, + // 22.1.3.8 Array.prototype.find(predicate, thisArg = undefined) + find: createArrayMethod(5), + // 22.1.3.9 Array.prototype.findIndex(predicate, thisArg = undefined) + findIndex: createArrayMethod(6) + }); + + if(framework){ + // 22.1.3.31 Array.prototype[@@unscopables] + forEach.call(array('find,findIndex,fill,copyWithin,entries,keys,values'), function(it){ + ArrayUnscopables[it] = true; + }); + SYMBOL_UNSCOPABLES in ArrayProto || hidden(ArrayProto, SYMBOL_UNSCOPABLES, ArrayUnscopables); + } + + setSpecies(Array); +}(); + +/****************************************************************************** + * Module : es6.iterators * + ******************************************************************************/ + +!function(at){ + // 22.1.3.4 Array.prototype.entries() + // 22.1.3.13 Array.prototype.keys() + // 22.1.3.29 Array.prototype.values() + // 22.1.3.30 Array.prototype[@@iterator]() + defineStdIterators(Array, ARRAY, function(iterated, kind){ + set(this, ITER, {o: toObject(iterated), i: 0, k: kind}); + // 22.1.5.2.1 %ArrayIteratorPrototype%.next() + }, function(){ + var iter = this[ITER] + , O = iter.o + , kind = iter.k + , index = iter.i++; + if(!O || index >= O.length)return iter.o = undefined, iterResult(1); + if(kind == KEY) return iterResult(0, index); + if(kind == VALUE)return iterResult(0, O[index]); + return iterResult(0, [index, O[index]]); + }, VALUE); + + // argumentsList[@@iterator] is %ArrayProto_values% (9.4.4.6, 9.4.4.7) + Iterators[ARGUMENTS] = Iterators[ARRAY]; + + // 21.1.3.27 String.prototype[@@iterator]() + defineStdIterators(String, STRING, function(iterated){ + set(this, ITER, {o: String(iterated), i: 0}); + // 21.1.5.2.1 %StringIteratorPrototype%.next() + }, function(){ + var iter = this[ITER] + , O = iter.o + , index = iter.i + , point; + if(index >= O.length)return iterResult(1); + point = at.call(O, index); + iter.i += point.length; + return iterResult(0, point); + }); +}(createPointAt(true)); + +/****************************************************************************** + * Module : es6.regexp * + ******************************************************************************/ + +!function(RegExpProto, _RegExp){ + function assertRegExpWrapper(fn){ + return function(){ + assert(cof(this) === REGEXP); + return fn(this); + } + } + + // RegExp allows a regex with flags as the pattern + if(DESC && !function(){try{return RegExp(/a/g, 'i') == '/a/i'}catch(e){}}()){ + RegExp = function RegExp(pattern, flags){ + return new _RegExp(cof(pattern) == REGEXP && flags !== undefined + ? pattern.source : pattern, flags); + } + forEach.call(getNames(_RegExp), function(key){ + key in RegExp || defineProperty(RegExp, key, { + configurable: true, + get: function(){ return _RegExp[key] }, + set: function(it){ _RegExp[key] = it } + }); + }); + RegExpProto[CONSTRUCTOR] = RegExp; + RegExp[PROTOTYPE] = RegExpProto; + hidden(global, REGEXP, RegExp); + } + + // 21.2.5.3 get RegExp.prototype.flags() + if(/./g.flags != 'g')defineProperty(RegExpProto, 'flags', { + configurable: true, + get: assertRegExpWrapper(createReplacer(/^.*\/(\w*)$/, '$1', true)) + }); + + // 21.2.5.12 get RegExp.prototype.sticky() + // 21.2.5.15 get RegExp.prototype.unicode() + forEach.call(array('sticky,unicode'), function(key){ + key in /./ || defineProperty(RegExpProto, key, DESC ? { + configurable: true, + get: assertRegExpWrapper(function(){ + return false; + }) + } : descriptor(5, false)); + }); + + setSpecies(RegExp); +}(RegExp[PROTOTYPE], RegExp); + +/****************************************************************************** + * Module : web.immediate * + ******************************************************************************/ + +// setImmediate shim +// Node.js 0.9+ & IE10+ has setImmediate, else: +isFunction(setImmediate) && isFunction(clearImmediate) || function(ONREADYSTATECHANGE){ + var postMessage = global.postMessage + , addEventListener = global.addEventListener + , MessageChannel = global.MessageChannel + , counter = 0 + , queue = {} + , defer, channel, port; + setImmediate = function(fn){ + var args = [], i = 1; + while(arguments.length > i)args.push(arguments[i++]); + queue[++counter] = function(){ + invoke(isFunction(fn) ? fn : Function(fn), args); + } + defer(counter); + return counter; + } + clearImmediate = function(id){ + delete queue[id]; + } + function run(id){ + if(has(queue, id)){ + var fn = queue[id]; + delete queue[id]; + fn(); + } + } + function listner(event){ + run(event.data); + } + // Node.js 0.8- + if(NODE){ + defer = function(id){ + nextTick(part.call(run, id)); + } + // Modern browsers, skip implementation for WebWorkers + // IE8 has postMessage, but it's sync & typeof its postMessage is object + } else if(addEventListener && isFunction(postMessage) && !global.importScripts){ + defer = function(id){ + postMessage(id, '*'); + } + addEventListener('message', listner, false); + // WebWorkers + } else if(isFunction(MessageChannel)){ + channel = new MessageChannel; + port = channel.port2; + channel.port1.onmessage = listner; + defer = ctx(port.postMessage, port, 1); + // IE8- + } else if(document && ONREADYSTATECHANGE in document[CREATE_ELEMENT]('script')){ + defer = function(id){ + html.appendChild(document[CREATE_ELEMENT]('script'))[ONREADYSTATECHANGE] = function(){ + html.removeChild(this); + run(id); + } + } + // Rest old browsers + } else { + defer = function(id){ + setTimeout(run, 0, id); + } + } +}('onreadystatechange'); +$define(GLOBAL + BIND, { + setImmediate: setImmediate, + clearImmediate: clearImmediate +}); + +/****************************************************************************** + * Module : es6.promise * + ******************************************************************************/ + +// ES6 promises shim +// Based on https://github.com/getify/native-promise-only/ +!function(Promise, test){ + isFunction(Promise) && isFunction(Promise.resolve) + && Promise.resolve(test = new Promise(function(){})) == test + || function(asap, DEF){ + function isThenable(o){ + var then; + if(isObject(o))then = o.then; + return isFunction(then) ? then : false; + } + function notify(def){ + var chain = def.chain; + chain.length && asap(function(){ + var msg = def.msg + , ok = def.state == 1 + , i = 0; + while(chain.length > i)!function(react){ + var cb = ok ? react.ok : react.fail + , ret, then; + try { + if(cb){ + ret = cb === true ? msg : cb(msg); + if(ret === react.P){ + react.rej(TypeError(PROMISE + '-chain cycle')); + } else if(then = isThenable(ret)){ + then.call(ret, react.res, react.rej); + } else react.res(ret); + } else react.rej(msg); + } catch(err){ + react.rej(err); + } + }(chain[i++]); + chain.length = 0; + }); + } + function resolve(msg){ + var def = this + , then, wrapper; + if(def.done)return; + def.done = true; + def = def.def || def; // unwrap + try { + if(then = isThenable(msg)){ + wrapper = {def: def, done: false}; // wrap + then.call(msg, ctx(resolve, wrapper, 1), ctx(reject, wrapper, 1)); + } else { + def.msg = msg; + def.state = 1; + notify(def); + } + } catch(err){ + reject.call(wrapper || {def: def, done: false}, err); // wrap + } + } + function reject(msg){ + var def = this; + if(def.done)return; + def.done = true; + def = def.def || def; // unwrap + def.msg = msg; + def.state = 2; + notify(def); + } + function getConstructor(C){ + var S = assertObject(C)[SYMBOL_SPECIES]; + return S != undefined ? S : C; + } + // 25.4.3.1 Promise(executor) + Promise = function(executor){ + assertFunction(executor); + assertInstance(this, Promise, PROMISE); + var def = {chain: [], state: 0, done: false, msg: undefined}; + hidden(this, DEF, def); + try { + executor(ctx(resolve, def, 1), ctx(reject, def, 1)); + } catch(err){ + reject.call(def, err); + } + } + assignHidden(Promise[PROTOTYPE], { + // 25.4.5.3 Promise.prototype.then(onFulfilled, onRejected) + then: function(onFulfilled, onRejected){ + var S = assertObject(assertObject(this)[CONSTRUCTOR])[SYMBOL_SPECIES]; + var react = { + ok: isFunction(onFulfilled) ? onFulfilled : true, + fail: isFunction(onRejected) ? onRejected : false + } , P = react.P = new (S != undefined ? S : Promise)(function(resolve, reject){ + react.res = assertFunction(resolve); + react.rej = assertFunction(reject); + }), def = this[DEF]; + def.chain.push(react); + def.state && notify(def); + return P; + }, + // 25.4.5.1 Promise.prototype.catch(onRejected) + 'catch': function(onRejected){ + return this.then(undefined, onRejected); + } + }); + assignHidden(Promise, { + // 25.4.4.1 Promise.all(iterable) + all: function(iterable){ + var Promise = getConstructor(this) + , values = []; + return new Promise(function(resolve, reject){ + forOf(iterable, false, push, values); + var remaining = values.length + , results = Array(remaining); + if(remaining)forEach.call(values, function(promise, index){ + Promise.resolve(promise).then(function(value){ + results[index] = value; + --remaining || resolve(results); + }, reject); + }); + else resolve(results); + }); + }, + // 25.4.4.4 Promise.race(iterable) + race: function(iterable){ + var Promise = getConstructor(this); + return new Promise(function(resolve, reject){ + forOf(iterable, false, function(promise){ + Promise.resolve(promise).then(resolve, reject); + }); + }); + }, + // 25.4.4.5 Promise.reject(r) + reject: function(r){ + return new (getConstructor(this))(function(resolve, reject){ + reject(r); + }); + }, + // 25.4.4.6 Promise.resolve(x) + resolve: function(x){ + return isObject(x) && DEF in x && getPrototypeOf(x) === this[PROTOTYPE] + ? x : new (getConstructor(this))(function(resolve, reject){ + resolve(x); + }); + } + }); + }(nextTick || setImmediate, safeSymbol('def')); + setToStringTag(Promise, PROMISE); + setSpecies(Promise); + $define(GLOBAL + FORCED * !isNative(Promise), {Promise: Promise}); +}(global[PROMISE]); + +/****************************************************************************** + * Module : es6.collections * + ******************************************************************************/ + +// ECMAScript 6 collections shim +!function(){ + var UID = safeSymbol('uid') + , O1 = safeSymbol('O1') + , WEAK = safeSymbol('weak') + , LEAK = safeSymbol('leak') + , LAST = safeSymbol('last') + , FIRST = safeSymbol('first') + , SIZE = DESC ? safeSymbol('size') : 'size' + , uid = 0 + , tmp = {}; + + function getCollection(C, NAME, methods, commonMethods, isMap, isWeak){ + var ADDER = isMap ? 'set' : 'add' + , proto = C && C[PROTOTYPE] + , O = {}; + function initFromIterable(that, iterable){ + if(iterable != undefined)forOf(iterable, isMap, that[ADDER], that); + return that; + } + function fixSVZ(key, chain){ + var method = proto[key]; + if(framework)proto[key] = function(a, b){ + var result = method.call(this, a === 0 ? 0 : a, b); + return chain ? this : result; + }; + } + if(!isNative(C) || !(isWeak || (!BUGGY_ITERATORS && has(proto, FOR_EACH) && has(proto, 'entries')))){ + // create collection constructor + C = isWeak + ? function(iterable){ + assertInstance(this, C, NAME); + set(this, UID, uid++); + initFromIterable(this, iterable); + } + : function(iterable){ + var that = this; + assertInstance(that, C, NAME); + set(that, O1, create(null)); + set(that, SIZE, 0); + set(that, LAST, undefined); + set(that, FIRST, undefined); + initFromIterable(that, iterable); + }; + assignHidden(assignHidden(C[PROTOTYPE], methods), commonMethods); + isWeak || defineProperty(C[PROTOTYPE], 'size', {get: function(){ + return assertDefined(this[SIZE]); + }}); + } else { + var Native = C + , inst = new C + , chain = inst[ADDER](isWeak ? {} : -0, 1) + , buggyZero; + // wrap to init collections from iterable + if(!NATIVE_ITERATORS || !C.length){ + C = function(iterable){ + assertInstance(this, C, NAME); + return initFromIterable(new Native, iterable); + } + C[PROTOTYPE] = proto; + if(framework)proto[CONSTRUCTOR] = C; + } + isWeak || inst[FOR_EACH](function(val, key){ + buggyZero = 1 / key === -Infinity; + }); + // fix converting -0 key to +0 + if(buggyZero){ + fixSVZ('delete'); + fixSVZ('has'); + isMap && fixSVZ('get'); + } + // + fix .add & .set for chaining + if(buggyZero || chain !== inst)fixSVZ(ADDER, true); + } + setToStringTag(C, NAME); + setSpecies(C); + + O[NAME] = C; + $define(GLOBAL + WRAP + FORCED * !isNative(C), O); + + // add .keys, .values, .entries, [@@iterator] + // 23.1.3.4, 23.1.3.8, 23.1.3.11, 23.1.3.12, 23.2.3.5, 23.2.3.8, 23.2.3.10, 23.2.3.11 + isWeak || defineStdIterators(C, NAME, function(iterated, kind){ + set(this, ITER, {o: iterated, k: kind}); + }, function(){ + var iter = this[ITER] + , kind = iter.k + , entry = iter.l; + // revert to the last existing entry + while(entry && entry.r)entry = entry.p; + // get next entry + if(!iter.o || !(iter.l = entry = entry ? entry.n : iter.o[FIRST])){ + // or finish the iteration + return iter.o = undefined, iterResult(1); + } + // return step by kind + if(kind == KEY) return iterResult(0, entry.k); + if(kind == VALUE)return iterResult(0, entry.v); + return iterResult(0, [entry.k, entry.v]); + }, isMap ? KEY+VALUE : VALUE, !isMap); + + return C; + } + + function fastKey(it, create){ + // return primitive with prefix + if(!isObject(it))return (typeof it == 'string' ? 'S' : 'P') + it; + // can't set id to frozen object + if(isFrozen(it))return 'F'; + if(!has(it, UID)){ + // not necessary to add id + if(!create)return 'E'; + // add missing object id + hidden(it, UID, ++uid); + // return object id with prefix + } return 'O' + it[UID]; + } + function getEntry(that, key){ + // fast case + var index = fastKey(key), entry; + if(index != 'F')return that[O1][index]; + // frozen object case + for(entry = that[FIRST]; entry; entry = entry.n){ + if(entry.k == key)return entry; + } + } + function def(that, key, value){ + var entry = getEntry(that, key) + , prev, index; + // change existing entry + if(entry)entry.v = value; + // create new entry + else { + that[LAST] = entry = { + i: index = fastKey(key, true), // <- index + k: key, // <- key + v: value, // <- value + p: prev = that[LAST], // <- previous entry + n: undefined, // <- next entry + r: false // <- removed + }; + if(!that[FIRST])that[FIRST] = entry; + if(prev)prev.n = entry; + that[SIZE]++; + // add to index + if(index != 'F')that[O1][index] = entry; + } return that; + } + + var collectionMethods = { + // 23.1.3.1 Map.prototype.clear() + // 23.2.3.2 Set.prototype.clear() + clear: function(){ + for(var that = this, data = that[O1], entry = that[FIRST]; entry; entry = entry.n){ + entry.r = true; + entry.p = entry.n = undefined; + delete data[entry.i]; + } + that[FIRST] = that[LAST] = undefined; + that[SIZE] = 0; + }, + // 23.1.3.3 Map.prototype.delete(key) + // 23.2.3.4 Set.prototype.delete(value) + 'delete': function(key){ + var that = this + , entry = getEntry(that, key); + if(entry){ + var next = entry.n + , prev = entry.p; + delete that[O1][entry.i]; + entry.r = true; + if(prev)prev.n = next; + if(next)next.p = prev; + if(that[FIRST] == entry)that[FIRST] = next; + if(that[LAST] == entry)that[LAST] = prev; + that[SIZE]--; + } return !!entry; + }, + // 23.2.3.6 Set.prototype.forEach(callbackfn, thisArg = undefined) + // 23.1.3.5 Map.prototype.forEach(callbackfn, thisArg = undefined) + forEach: function(callbackfn /*, that = undefined */){ + var f = ctx(callbackfn, arguments[1], 3) + , entry; + while(entry = entry ? entry.n : this[FIRST]){ + f(entry.v, entry.k, this); + // revert to the last existing entry + while(entry && entry.r)entry = entry.p; + } + }, + // 23.1.3.7 Map.prototype.has(key) + // 23.2.3.7 Set.prototype.has(value) + has: function(key){ + return !!getEntry(this, key); + } + } + + // 23.1 Map Objects + Map = getCollection(Map, MAP, { + // 23.1.3.6 Map.prototype.get(key) + get: function(key){ + var entry = getEntry(this, key); + return entry && entry.v; + }, + // 23.1.3.9 Map.prototype.set(key, value) + set: function(key, value){ + return def(this, key === 0 ? 0 : key, value); + } + }, collectionMethods, true); + + // 23.2 Set Objects + Set = getCollection(Set, SET, { + // 23.2.3.1 Set.prototype.add(value) + add: function(value){ + return def(this, value = value === 0 ? 0 : value, value); + } + }, collectionMethods); + + function defWeak(that, key, value){ + if(isFrozen(assertObject(key)))leakStore(that).set(key, value); + else { + has(key, WEAK) || hidden(key, WEAK, {}); + key[WEAK][that[UID]] = value; + } return that; + } + function leakStore(that){ + return that[LEAK] || hidden(that, LEAK, new Map)[LEAK]; + } + + var weakMethods = { + // 23.3.3.2 WeakMap.prototype.delete(key) + // 23.4.3.3 WeakSet.prototype.delete(value) + 'delete': function(key){ + if(!isObject(key))return false; + if(isFrozen(key))return leakStore(this)['delete'](key); + return has(key, WEAK) && has(key[WEAK], this[UID]) && delete key[WEAK][this[UID]]; + }, + // 23.3.3.4 WeakMap.prototype.has(key) + // 23.4.3.4 WeakSet.prototype.has(value) + has: function(key){ + if(!isObject(key))return false; + if(isFrozen(key))return leakStore(this).has(key); + return has(key, WEAK) && has(key[WEAK], this[UID]); + } + }; + + // 23.3 WeakMap Objects + WeakMap = getCollection(WeakMap, WEAKMAP, { + // 23.3.3.3 WeakMap.prototype.get(key) + get: function(key){ + if(isObject(key)){ + if(isFrozen(key))return leakStore(this).get(key); + if(has(key, WEAK))return key[WEAK][this[UID]]; + } + }, + // 23.3.3.5 WeakMap.prototype.set(key, value) + set: function(key, value){ + return defWeak(this, key, value); + } + }, weakMethods, true, true); + + // IE11 WeakMap frozen keys fix + if(framework && new WeakMap().set(Object.freeze(tmp), 7).get(tmp) != 7){ + forEach.call(array('delete,has,get,set'), function(key){ + var method = WeakMap[PROTOTYPE][key]; + WeakMap[PROTOTYPE][key] = function(a, b){ + // store frozen objects on leaky map + if(isObject(a) && isFrozen(a)){ + var result = leakStore(this)[key](a, b); + return key == 'set' ? this : result; + // store all the rest on native weakmap + } return method.call(this, a, b); + }; + }); + } + + // 23.4 WeakSet Objects + WeakSet = getCollection(WeakSet, WEAKSET, { + // 23.4.3.1 WeakSet.prototype.add(value) + add: function(value){ + return defWeak(this, value, true); + } + }, weakMethods, false, true); +}(); + +/****************************************************************************** + * Module : es6.reflect * + ******************************************************************************/ + +!function(){ + function Enumerate(iterated){ + var keys = [], key; + for(key in iterated)keys.push(key); + set(this, ITER, {o: iterated, a: keys, i: 0}); + } + createIterator(Enumerate, OBJECT, function(){ + var iter = this[ITER] + , keys = iter.a + , key; + do { + if(iter.i >= keys.length)return iterResult(1); + } while(!((key = keys[iter.i++]) in iter.o)); + return iterResult(0, key); + }); + + function wrap(fn){ + return function(it){ + assertObject(it); + try { + return fn.apply(undefined, arguments), true; + } catch(e){ + return false; + } + } + } + + function reflectGet(target, propertyKey/*, receiver*/){ + var receiver = arguments.length < 3 ? target : arguments[2] + , desc = getOwnDescriptor(assertObject(target), propertyKey), proto; + if(desc)return desc.get ? desc.get.call(receiver) : desc.value; + return isObject(proto = getPrototypeOf(target)) ? reflectGet(proto, propertyKey, receiver) : undefined; + } + function reflectSet(target, propertyKey, V/*, receiver*/){ + var receiver = arguments.length < 4 ? target : arguments[3] + , desc = getOwnDescriptor(assertObject(target), propertyKey), proto; + if(desc){ + if(desc.writable === false)return false; + if(desc.set)return desc.set.call(receiver, V), true; + } + if(isObject(proto = getPrototypeOf(target)))return reflectSet(proto, propertyKey, V, receiver); + desc = getOwnDescriptor(receiver, propertyKey) || descriptor(0); + desc.value = V; + return defineProperty(receiver, propertyKey, desc), true; + } + var isExtensible = Object.isExtensible || returnIt; + + var reflect = { + // 26.1.1 Reflect.apply(target, thisArgument, argumentsList) + apply: ctx(call, apply, 3), + // 26.1.2 Reflect.construct(target, argumentsList [, newTarget]) + construct: construct, + // 26.1.3 Reflect.defineProperty(target, propertyKey, attributes) + defineProperty: wrap(defineProperty), + // 26.1.4 Reflect.deleteProperty(target, propertyKey) + deleteProperty: function(target, propertyKey){ + var desc = getOwnDescriptor(assertObject(target), propertyKey); + return desc && !desc.configurable ? false : delete target[propertyKey]; + }, + // 26.1.5 Reflect.enumerate(target) + enumerate: function(target){ + return new Enumerate(assertObject(target)); + }, + // 26.1.6 Reflect.get(target, propertyKey [, receiver]) + get: reflectGet, + // 26.1.7 Reflect.getOwnPropertyDescriptor(target, propertyKey) + getOwnPropertyDescriptor: function(target, propertyKey){ + return getOwnDescriptor(assertObject(target), propertyKey); + }, + // 26.1.8 Reflect.getPrototypeOf(target) + getPrototypeOf: function(target){ + return getPrototypeOf(assertObject(target)); + }, + // 26.1.9 Reflect.has(target, propertyKey) + has: function(target, propertyKey){ + return propertyKey in target; + }, + // 26.1.10 Reflect.isExtensible(target) + isExtensible: function(target){ + return !!isExtensible(assertObject(target)); + }, + // 26.1.11 Reflect.ownKeys(target) + ownKeys: ownKeys, + // 26.1.12 Reflect.preventExtensions(target) + preventExtensions: wrap(Object.preventExtensions || returnIt), + // 26.1.13 Reflect.set(target, propertyKey, V [, receiver]) + set: reflectSet + } + // 26.1.14 Reflect.setPrototypeOf(target, proto) + if(setPrototypeOf)reflect.setPrototypeOf = function(target, proto){ + return setPrototypeOf(assertObject(target), proto), true; + }; + + $define(GLOBAL, {Reflect: {}}); + $define(STATIC, 'Reflect', reflect); +}(); + +/****************************************************************************** + * Module : es7.proposals * + ******************************************************************************/ + +!function(){ + $define(PROTO, ARRAY, { + // https://github.com/domenic/Array.prototype.includes + includes: createArrayContains(true) + }); + $define(PROTO, STRING, { + // https://github.com/mathiasbynens/String.prototype.at + at: createPointAt(true) + }); + + function createObjectToArray(isEntries){ + return function(object){ + var O = toObject(object) + , keys = getKeys(object) + , length = keys.length + , i = 0 + , result = Array(length) + , key; + if(isEntries)while(length > i)result[i] = [key = keys[i++], O[key]]; + else while(length > i)result[i] = O[keys[i++]]; + return result; + } + } + $define(STATIC, OBJECT, { + // https://github.com/rwaldron/tc39-notes/blob/master/es6/2014-04/apr-9.md#51-objectentries-objectvalues + values: createObjectToArray(false), + entries: createObjectToArray(true) + }); + $define(STATIC, REGEXP, { + // https://gist.github.com/kangax/9698100 + escape: createReplacer(/([\\\-[\]{}()*+?.,^$|])/g, '\\$1', true) + }); +}(); + +/****************************************************************************** + * Module : es7.abstract-refs * + ******************************************************************************/ + +// https://github.com/zenparsing/es-abstract-refs +!function(REFERENCE){ + REFERENCE_GET = getWellKnownSymbol(REFERENCE+'Get', true); + var REFERENCE_SET = getWellKnownSymbol(REFERENCE+SET, true) + , REFERENCE_DELETE = getWellKnownSymbol(REFERENCE+'Delete', true); + + $define(STATIC, SYMBOL, { + referenceGet: REFERENCE_GET, + referenceSet: REFERENCE_SET, + referenceDelete: REFERENCE_DELETE + }); + + hidden(FunctionProto, REFERENCE_GET, returnThis); + + function setMapMethods(Constructor){ + if(Constructor){ + var MapProto = Constructor[PROTOTYPE]; + hidden(MapProto, REFERENCE_GET, MapProto.get); + hidden(MapProto, REFERENCE_SET, MapProto.set); + hidden(MapProto, REFERENCE_DELETE, MapProto['delete']); + } + } + setMapMethods(Map); + setMapMethods(WeakMap); +}('reference'); + +/****************************************************************************** + * Module : js.array.statics * + ******************************************************************************/ + +// JavaScript 1.6 / Strawman array statics shim +!function(arrayStatics){ + function setArrayStatics(keys, length){ + forEach.call(array(keys), function(key){ + if(key in ArrayProto)arrayStatics[key] = ctx(call, ArrayProto[key], length); + }); + } + setArrayStatics('pop,reverse,shift,keys,values,entries', 1); + setArrayStatics('indexOf,every,some,forEach,map,filter,find,findIndex,includes', 3); + setArrayStatics('join,slice,concat,push,splice,unshift,sort,lastIndexOf,' + + 'reduce,reduceRight,copyWithin,fill,turn'); + $define(STATIC, ARRAY, arrayStatics); +}({}); + +/****************************************************************************** + * Module : web.dom.itarable * + ******************************************************************************/ + +!function(NodeList){ + if(framework && NodeList && !(SYMBOL_ITERATOR in NodeList[PROTOTYPE])){ + hidden(NodeList[PROTOTYPE], SYMBOL_ITERATOR, Iterators[ARRAY]); + } + Iterators.NodeList = Iterators[ARRAY]; +}(global.NodeList); + +/****************************************************************************** + * Module : web.timers * + ******************************************************************************/ + +// ie9- setTimeout & setInterval additional parameters fix +!function(MSIE){ + function wrap(set){ + return MSIE ? function(fn, time /*, ...args */){ + return set(invoke(part, slice.call(arguments, 2), isFunction(fn) ? fn : Function(fn)), time); + } : set; + } + $define(GLOBAL + BIND + FORCED * MSIE, { + setTimeout: setTimeout = wrap(setTimeout), + setInterval: wrap(setInterval) + }); + // ie9- dirty check +}(!!navigator && /MSIE .\./.test(navigator.userAgent)); + +/****************************************************************************** + * Module : web.console * + ******************************************************************************/ + +!function(console, enabled){ + var _console = { + enable: function(){ enabled = true }, + disable: function(){ enabled = false } + }; + // Methods from: + // https://github.com/DeveloperToolsWG/console-object/blob/master/api.md + // https://developer.mozilla.org/en-US/docs/Web/API/console + forEach.call(array('assert,clear,count,debug,dir,dirxml,error,exception,group,' + + 'groupCollapsed,groupEnd,info,isIndependentlyComposed,log,markTimeline,profile,' + + 'profileEnd,table,time,timeEnd,timeline,timelineEnd,timeStamp,trace,warn'), + function(key){ + var fn = console[key]; + _console[key] = function(){ + if(enabled && fn)return apply.call(fn, console, arguments); + }; + } + ); + // console methods in some browsers are not configurable + try { + framework && delete global.console; + } catch(e){} + $define(GLOBAL + FORCED, {console: _console}); +}(global.console || {}, true); +}(typeof self != 'undefined' && self.Math === Math ? self : Function('return this')(), true); \ No newline at end of file diff --git a/src/Quartz.Web/App/scripts/core-js/client/shim.min.js b/src/Quartz.Web/App/scripts/core-js/client/shim.min.js new file mode 100644 index 000000000..4ee737fd0 --- /dev/null +++ b/src/Quartz.Web/App/scripts/core-js/client/shim.min.js @@ -0,0 +1,8 @@ +/** + * Core.js 0.4.10 + * https://github.com/zloirock/core-js + * License: http://rock.mit-license.org + * © 2015 Denis Pushkarev + */ +!function(a,r,d){"use strict";function h(a){return null!==a&&("object"==typeof a||"function"==typeof a)}function k(a){return"function"==typeof a}function X(a,b,d){a&&!f(a=d?a:a[c],tb)&&g(a,tb,b)}function T(a){return a==d?a===d?"Undefined":"Null":Uc.call(a).slice(8,-1)}function rb(a){var b,c=T(a);return c==v&&(b=a[tb])?b:c}function $b(){for(var e=N(this),a=arguments.length,b=B(a),c=0,f=Yc._,d=!1;a>c;)(b[c]=arguments[c++])===f&&(d=!0);return function(){var c,i=this,j=arguments.length,g=0,h=0;if(!d&&!j)return ib(e,b,i);if(c=b.slice(),d)for(;a>g;g++)c[g]===f&&(c[g]=arguments[h++]);for(;j>h;)c.push(arguments[h++]);return ib(e,c,i)}}function m(a,b,c){if(N(a),~c&&b===d)return a;switch(c){case 1:return function(c){return a.call(b,c)};case 2:return function(c,d){return a.call(b,c,d)};case 3:return function(c,d,e){return a.call(b,c,d,e)}}return function(){return a.apply(b,arguments)}}function ib(b,a,c){var e=c===d;switch(0|a.length){case 0:return e?b():b.call(c);case 1:return e?b(a[0]):b.call(c,a[0]);case 2:return e?b(a[0],a[1]):b.call(c,a[0],a[1]);case 3:return e?b(a[0],a[1],a[2]):b.call(c,a[0],a[1],a[2]);case 4:return e?b(a[0],a[1],a[2],a[3]):b.call(c,a[0],a[1],a[2],a[3]);case 5:return e?b(a[0],a[1],a[2],a[3],a[4]):b.call(c,a[0],a[1],a[2],a[3],a[4])}return b.apply(c,a)}function Kc(a,f){var b=N(arguments.length<3?a:arguments[2])[c],d=hb(h(b)?b:A),e=bc.call(a,d,f);return h(e)?e:d}function y(a){return kb(q(a))}function pb(a){return a}function qb(){return this}function Vb(a,b){return f(a,b)?a[b]:d}function bd(a){return i(a),jc?$(a).concat(jc(a)):$(a)}function ad(e,f){for(var a,b=y(e),c=mb(b),g=c.length,d=0;g>d;)if(b[a=c[d++]]===f)return a}function lb(a){return s(a).split(",")}function Y(a){var c=1==a,g=2==a,h=3==a,b=4==a,f=6==a,i=5==a||f;return function(s){for(var k,l,p=e(q(this)),t=arguments[1],n=kb(p),u=m(s,t,3),r=w(n.length),j=0,o=c?B(r):g?[]:d;r>j;j++)if((i||j in n)&&(k=n[j],l=u(k,j,p),a))if(c)o[j]=l;else if(l)switch(a){case 3:return!0;case 5:return k;case 6:return j;case 2:o.push(k)}else if(b)return!1;return f?-1:h||b?b:o}}function Jc(a){return function(d){var c=y(this),e=w(c.length),b=bb(arguments[1],e);if(a&&d!=d){for(;e>b;b++)if(Hc(c[b]))return a||b}else for(;e>b;b++)if((a||b in c)&&c[b]===d)return a||b;return!a&&-1}}function Ic(a,b){return"function"==typeof a?a:b}function Hc(a){return a!=a}function wb(a){return isNaN(a)?0:tc(a)}function w(a){return a>0?ob(wb(a),Ab):0}function bb(a,b){var a=wb(a);return 0>a?_c(a+b,0):ob(a,b)}function _b(b,a,c){var d=h(a)?function(b){return a[b]}:a;return function(a){return s(c?a:this).replace(b,d)}}function ac(a){return function(h){var c,f,e=s(q(this)),b=wb(h),g=e.length;return 0>b||b>=g?a?"":d:(c=e.charCodeAt(b),55296>c||c>56319||b+1===g||(f=e.charCodeAt(b+1))<56320||f>57343?a?e.charAt(b):c:a?e.slice(b,b+2):(c-55296<<10)+(f-56320)+65536)}}function ab(c,a,b){if(!c)throw Bb(b?a+b:a)}function q(a){if(a==d)throw Bb("Function called on null or undefined");return a}function N(a){return ab(k(a),a," is not a function!"),a}function i(a){return ab(h(a),a," is not an object!"),a}function Hb(a,b,c){ab(a instanceof b,c,": use the 'new' operator!")}function _(a,b){return{enumerable:!(1&a),configurable:!(2&a),writable:!(4&a),value:b}}function Dc(a,b,c){return a[b]=c,a}function Qc(a){return Z?function(b,c,d){return n(b,c,_(a,d))}:Dc}function Cc(a){return I+"("+a+")_"+(++Sc+Mc())[W](36)}function K(a,b){return p&&p[a]||(b?p:t)(I+Q+a)}function Eb(a,b){for(var c in b)g(a,c,b[c]);return a}function Db(a){(r||!O(a))&&n(a,xb,{configurable:!0,get:qb})}function fc(a,b){g(a,U,b),Nc&&g(a,fb,b)}function Bc(a,b,d,e){a[c]=hb(e||Ec,{next:_(1,d)}),X(a,b+" Iterator")}function Ac(e,d,g,h){var a=e[c],b=Vb(a,U)||Vb(a,fb)||h&&Vb(a,h)||g;if(r&&(fc(a,b),b!==g)){var i=cb(b.call(new e));X(i,d+" Iterator",!0),f(a,fb)&&fc(i,qb)}return J[d]=b,J[d+" Iterator"]=qb,b}function Wb(f,a,g,i,h,j){function d(a){return function(){return new g(this,a)}}Bc(g,a,i);var e=d(ub+L),c=d(L);h==L?c=Ac(f,a,c,"values"):e=Ac(f,a,e,"entries"),h&&b(F+G*Fc,a,{entries:e,keys:j?c:d(ub),values:c})}function x(a,b){return{value:b,done:!!a}}function Lc(d){var b=e(d),c=a[I],g=(c&&c[yb]||fb)in b;return g||U in b||f(J,rb(b))}function zc(b){var c=a[I],d=b[c&&c[yb]||fb],e=d||b[U]||J[rb(b)];return i(e.call(b))}function $c(a,b,c){return c?ib(a,b):a(b)}function cc(c,a,d,e){for(var b,f=zc(c),g=m(d,e,a?2:1);!(b=f.next()).done;)if($c(g,b.value,a)===!1)return}function b(f,h,o){var d,l,b,i,n=f&V,e=n?a:f&j?a[h]:(a[h]||A)[c],p=n?C:C[h]||(C[h]={});n&&(o=h);for(d in o)l=!(f&G)&&e&&d in e&&(!k(e[d])||O(e[d])),b=(l?e:o)[d],f&Ob&&l?i=m(b,a):f&Zb&&!r&&e[d]==b?(i=function(a){return this instanceof b?new b(a):b(a)},i[c]=b[c]):i=f&F&&k(b)?m(vb,b):b,p[d]!=b&&g(p,d,i),r&&e&&!l&&(n?e[d]=b:delete e[d]&&g(e,d,b))}var Ib,v="Object",xc="Function",u="Array",db="String",ic="Number",jb="RegExp",vc="Date",uc="Map",Mb="Set",sc="WeakMap",qc="WeakSet",I="Symbol",Kb="Promise",Xb="Math",pc="Arguments",c="prototype",H="constructor",W="toString",oc=W+"Tag",cd="toLocaleString",nc="hasOwnProperty",ec="forEach",yb="iterator",fb="@@"+yb,mc="process",Qb="createElement",Rb=a[xc],e=a[v],B=a[u],s=a[db],Xc=a[ic],E=a[jb],dd=a[vc],Gb=a[uc],lc=a[Mb],nb=a[sc],kc=a[qc],p=a[I],l=a[Xb],Bb=a.TypeError,Lb=a.setTimeout,Cb=a.setImmediate,Nb=a.clearImmediate,Fb=a.isFinite,Pb=a[mc],wc=Pb&&Pb.nextTick,eb=a.document,Sb=eb&&eb.documentElement,hc=a.navigator,Ub=a.define,o=B[c],A=e[c],sb=Rb[c],S=1/0,Q=".",O=m(/./.test,/\[native code\]\s*\}\s*$/,1),Uc=A[W],vb=sb.call,bc=sb.apply,hb=e.create,cb=e.getPrototypeOf,Jb=e.setPrototypeOf,n=e.defineProperty,gc=e.defineProperties,M=e.getOwnPropertyDescriptor,mb=e.keys,$=e.getOwnPropertyNames,jc=e.getOwnPropertySymbols,P=e.isFrozen,f=m(vb,A[nc],2),kb=e,Oc=e.assign||function(h){for(var a=e(q(h)),i=arguments.length,b=1;i>b;)for(var c,d=kb(arguments[b++]),f=mb(d),j=f.length,g=0;j>g;)a[c=f[g++]]=d[c];return a},Rc=o.push,gb=o.slice,dc=o.indexOf,D=o[ec],Ab=9007199254740991,Yb=l.pow,Tb=l.abs,Vc=l.ceil,rc=l.floor,_c=l.max,ob=l.min,Mc=l.random,tc=l.trunc||function(a){return(a>0?rc:Vc)(a)},Pc="Reduce of empty object with no initial value",Z=!!function(){try{return n({},Q,A)}catch(a){}}(),Sc=0,g=Qc(1),z=p?Dc:g,t=p||Cc,zb=K("unscopables"),yc=o[zb]||{},xb=K("species"),U=K(yb),tb=K(oc),Nc=fb in o,R=t("iter"),ub=1,L=2,J={},Ec={},Tc=U in o,Fc="keys"in o&&!("next"in[].keys());fc(Ec,qb);var Gc,Wc=T(Pb)==mc,C={},Yc=r?a:C,Zc=a.core,G=1,V=2,j=4,F=8,Ob=16,Zb=32;"undefined"!=typeof module&&module.exports?module.exports=C:k(Ub)&&Ub.amd?Ub(function(){return C}):Gc=!0,(Gc||r)&&(C.noConflict=function(){return a.core=Zc,C},a.core=C),!function(s,m,z,a){function g(){var a,b=eb[Qb]("iframe"),d=C;for(b.style.display="none",Sb.appendChild(b),b.src="javascript:",a=b.contentWindow.document,a.open(),a.write(""),a.close(),g=a.F;d--;)delete g[c][l[d]];return g()}function r(b,c){return function(i){var d,g=y(i),h=0,e=[];for(d in g)d!=a&&f(g,d)&&e.push(d);for(;c>h;)f(g,d=b[h++])&&(~dc.call(e,d)||e.push(d));return e}}function p(a){return!h(a)}function t(a){return function(){return a.apply(kb(this),arguments)}}function x(a){return function(g,d){N(g);var c=y(this),e=w(c.length),b=a?e-1:0,f=a?-1:1;if(2>arguments.length)for(;;){if(b in c){d=c[b],b+=f;break}b+=f,ab(a?b>=0:e>b,Pc)}for(;a?b>=0:e>b;b+=f)b in c&&(d=g(d,c[b],b,this));return d}}Z||(M=function(a,b){return f(a,b)?_(!A[s].call(a,b),a[b]):d},n=function(a,c,b){return"value"in b&&(i(a)[c]=b.value),a},gc=function(a,d){i(a);for(var b,c,e=mb(d),g=e.length,f=0;g>f;)b=e[f++],c=d[b],"value"in c&&(a[b]=c.value);return a}),b(j+G*!Z,v,{getOwnPropertyDescriptor:M,defineProperty:n,defineProperties:gc});var l=[H,nc,"isPrototypeOf",s,cd,W,"valueOf"],B=l.concat("length",c),C=l.length;b(j,v,{getPrototypeOf:cb=cb||function(b){return b=e(q(b)),f(b,a)?b[a]:k(b[H])&&b instanceof b[H]?b[H][c]:b instanceof e?A:null},getOwnPropertyNames:$=$||r(B,B.length,!0),create:hb=hb||function(e,f){var b;return null!==e?(m[c]=i(e),b=new m,m[c]=null,b[H][c]!==e&&(b[a]=e)):b=g(),f===d?b:gc(b,f)},keys:mb=mb||r(l,C,!1),seal:pb,freeze:pb,preventExtensions:pb,isSealed:p,isFrozen:P=P||p,isExtensible:h}),b(F,xc,{bind:function(c){function a(){var e=d.concat(gb.call(arguments));return this instanceof a?Kc(b,e):ib(b,e,c)}var b=N(this),d=gb.call(arguments,1);return a}}),0 in e(Q)&&Q[0]==Q||(kb=function(a){return T(a)==db?a.split(""):e(a)},gb=t(gb)),b(F+G*(kb!=e),u,{slice:gb,join:t(o.join)}),b(j,u,{isArray:function(a){return T(a)==u}}),b(F,u,{forEach:D=D||Y(0),map:Y(1),filter:Y(2),some:Y(3),every:Y(4),reduce:x(!1),reduceRight:x(!0),indexOf:dc=dc||Jc(!1),lastIndexOf:function(d,e){var b=y(this),c=w(b.length),a=c-1;for(arguments.length>1&&(a=ob(a,wb(e))),0>a&&(a=w(c+a));a>=0;a--)if(a in b&&b[a]===d)return a;return-1}}),b(F,db,{trim:_b(/^\s*([\s\S]*\S)?\s*$/,"$1")}),b(j,vc,{now:function(){return+new dd}}),z(function(){return arguments}())==v&&(rb=function(a){var b=z(a);return b==v&&k(a.callee)?pc:b})}("propertyIsEnumerable",function(){},rb,t(c)),!function(h,a,d,e){O(p)||(p=function(f){ab(!(this instanceof p),I+" is not a "+H);var a=Cc(f),b=z(hb(p[c]),h,a);return d[a]=b,Z&&e&&n(A,a,{configurable:!0,set:function(b){g(this,a,b)}}),b},g(p[c],W,function(){return this[h]})),b(V+Zb,{Symbol:p});var i={"for":function(b){return f(a,b+="")?a[b]:a[b]=p(b)},iterator:U,keyFor:$b.call(ad,a),species:xb,toStringTag:tb=K(oc,!0),unscopables:zb,pure:t,set:z,useSetter:function(){e=!0},useSimple:function(){e=!1}};D.call(lb("hasInstance,isConcatSpreadable,match,replace,search,split,toPrimitive"),function(a){i[a]=K(a)}),b(j,I,i),X(p,I),b(j+G*!O(p),v,{getOwnPropertyNames:function(g){for(var a,b=$(y(g)),c=[],e=0;b.length>e;)f(d,a=b[e++])||c.push(a);return c},getOwnPropertySymbols:function(g){for(var a,b=$(y(g)),c=[],e=0;b.length>e;)f(d,a=b[e++])&&c.push(d[a]);return c}})}(t("tag"),{},{},!0),!function(c){var d={assign:Oc,is:function(a,b){return a===b?0!==a||1/a===1/b:a!=a&&b!=b}};"__proto__"in A&&function(b,a){try{a=m(vb,M(A,"__proto__").set,2),a({},o)}catch(c){b=!0}d.setPrototypeOf=Jb=Jb||function(d,c){return i(d),ab(null===c||h(c),c,": can't set as prototype!"),b?d.__proto__=c:a(d,c),d}}(),b(j,v,d),r&&(c[tb]=Q,T(c)!=Q&&g(A,W,function(){return"[object "+rb(this)+"]"})),X(l,Xb,!0),X(a.JSON,"JSON",!0)}({}),!function(){function a(d,c){var a=e[d],f=C[v][d],g=0,i={};if(!f||O(f)){i[d]=1==c?function(b){return h(b)?a(b):b}:2==c?function(b){return h(b)?a(b):!0}:3==c?function(b){return h(b)?a(b):!1}:4==c?function(b,c){return a(y(b),c)}:function(b){return a(y(b))};try{a(Q)}catch(k){g=1}b(j+G*g,v,i)}}a("freeze",1),a("seal",1),a("preventExtensions",1),a("isFrozen",2),a("isSealed",2),a("isExtensible",3),a("getOwnPropertyDescriptor",4),a("getPrototypeOf"),a("keys"),a("getOwnPropertyNames")}(),!function(a){a in sb||n(sb,a,{configurable:!0,get:function(){var b=s(this).match(/^\s*function ([^ (]*)/),c=b?b[1]:"";return f(this,a)||n(this,a,_(5,c)),c},set:function(b){f(this,a)||n(this,a,_(0,b))}})}("name"),!function(a){b(j,ic,{EPSILON:Yb(2,-52),isFinite:function(a){return"number"==typeof a&&Fb(a)},isInteger:a,isNaN:Hc,isSafeInteger:function(b){return a(b)&&Tb(b)<=Ab},MAX_SAFE_INTEGER:Ab,MIN_SAFE_INTEGER:-Ab,parseFloat:parseFloat,parseInt:parseInt})}(Xc.isInteger||function(a){return!h(a)&&Fb(a)&&rc(a)===a}),!function(){function g(a){return Fb(a=+a)&&0!=a?0>a?-g(-a):c(a+e(a*a+1)):a}function d(b){return 0==(b=+b)?b:b>-1e-6&&1e-6>b?b+b*b/2:a(b)-1}var f=l.E,a=l.exp,c=l.log,e=l.sqrt,h=l.sign||function(a){return 0==(a=+a)||a!=a?a:0>a?-1:1};b(j,Xb,{acosh:function(a){return(a=+a)<1?0/0:Fb(a)?c(a/f+e(a+1)*e(a-1)/f)+1:a},asinh:g,atanh:function(a){return 0==(a=+a)?a:c((1+a)/(1-a))/2},cbrt:function(a){return h(a=+a)*Yb(Tb(a),1/3)},clz32:function(a){return(a>>>=0)?32-a[W](2).length:32},cosh:function(b){return(a(b=+b)+a(-b))/2},expm1:d,fround:function(a){return new Float32Array([a])[0]},hypot:function(){for(var a,d=0,b=arguments.length,f=b,g=B(b),c=-S;b--;){if(a=g[b]=+arguments[b],a==S||a==-S)return S;a>c&&(c=a)}for(c=a||1;f--;)d+=Yb(g[f]/c,2);return c*e(d)},imul:function(f,g){var a=65535,b=+f,c=+g,d=a&b,e=a&c;return 0|d*e+((a&b>>>16)*e+d*(a&c>>>16)<<16>>>0)},log1p:function(a){return(a=+a)>-1e-8&&1e-8>a?a-a*a/2:c(1+a)},log10:function(a){return c(a)/l.LN10},log2:function(a){return c(a)/l.LN2},sign:h,sinh:function(b){return Tb(b=+b)<1?(d(b)-d(-b))/2:(a(b-1)-a(-b-1))*(f/2)},tanh:function(b){var c=d(b=+b),e=d(-b);return c==S?1:e==S?-1:(c-e)/(a(b)+a(-b))},trunc:tc})}(),!function(c,e){function a(a){if(T(a)==jb)throw Bb()}b(j,db,{fromCodePoint:function(){for(var a,b=[],f=arguments.length,d=0;f>d;){if(a=+arguments[d++],bb(a,1114111)!==a)throw c(a+" is not a valid code point");b.push(65536>a?e(a):e(((a-=65536)>>10)+55296,a%1024+56320))}return b.join("")},raw:function(d){for(var c=y(d.raw),e=w(c.length),f=arguments.length,b=[],a=0;e>a;)b.push(s(c[a++])),f>a&&b.push(s(arguments[a]));return b.join("")}}),b(F,db,{codePointAt:ac(!1),endsWith:function(b){a(b);var c=s(q(this)),e=arguments[1],f=w(c.length),g=e===d?f:ob(w(e),f);return b+="",c.slice(g-b.length,g)===b},includes:function(b){return a(b),!!~s(q(this)).indexOf(b,arguments[1])},repeat:function(e){var b=s(q(this)),d="",a=wb(e);if(0>a||a==S)throw c("Count can't be negative");for(;a>0;(a>>>=1)&&(b+=b))1&a&&(d+=b);return d},startsWith:function(b){a(b);var c=s(q(this)),d=w(ob(arguments[1],c.length));return b+="",c.slice(d,d+b.length)===b}})}(a.RangeError,s.fromCharCode),!function(){b(j,u,{from:function(l){var i,b=e(q(l)),c=new(Ic(this,B)),h=arguments[1],k=arguments[2],f=h!==d,j=f?m(h,k,2):d,a=0;if(Lc(b))for(var g,n=zc(b);!(g=n.next()).done;a++)c[a]=f?j(g.value,a):g.value;else for(i=w(b.length);i>a;a++)c[a]=f?j(b[a],a):b[a];return c.length=a,c},of:function(){for(var a=0,b=arguments.length,c=new(Ic(this,B))(b);b>a;)c[a]=arguments[a++];return c.length=b,c}}),b(F,u,{copyWithin:function(j,k){var c=e(q(this)),f=w(c.length),a=bb(j,f),b=bb(k,f),i=arguments[2],l=i===d?f:bb(i,f),g=ob(l-b,f-a),h=1;for(a>b&&b+g>a&&(h=-1,b=b+g-1,a=a+g-1);g-->0;)b in c?c[a]=c[b]:delete c[a],a+=h,b+=h;return c},fill:function(g){for(var a=e(q(this)),b=w(a.length),c=bb(arguments[1],b),f=arguments[2],h=f===d?b:bb(f,b);h>c;)a[c++]=g;return a},find:Y(5),findIndex:Y(6)}),r&&(D.call(lb("find,findIndex,fill,copyWithin,entries,keys,values"),function(a){yc[a]=!0}),zb in o||g(o,zb,yc)),Db(B)}(),!function(a){Wb(B,u,function(a,b){z(this,R,{o:y(a),i:0,k:b})},function(){var b=this[R],c=b.o,e=b.k,a=b.i++;return!c||a>=c.length?(b.o=d,x(1)):e==ub?x(0,a):e==L?x(0,c[a]):x(0,[a,c[a]])},L),J[pc]=J[u],Wb(s,db,function(a){z(this,R,{o:s(a),i:0})},function(){var b,c=this[R],d=c.o,e=c.i;return e>=d.length?x(1):(b=a.call(d,e),c.i+=b.length,x(0,b))})}(ac(!0)),!function(b,e){function f(a){return function(){return ab(T(this)===jb),a(this)}}Z&&!function(){try{return"/a/i"==E(/a/g,"i")}catch(a){}}()&&(E=function(a,b){return new e(T(a)==jb&&b!==d?a.source:a,b)},D.call($(e),function(a){a in E||n(E,a,{configurable:!0,get:function(){return e[a]},set:function(b){e[a]=b}})}),b[H]=E,E[c]=b,g(a,jb,E)),"g"!=/./g.flags&&n(b,"flags",{configurable:!0,get:f(_b(/^.*\/(\w*)$/,"$1",!0))}),D.call(lb("sticky,unicode"),function(a){a in/./||n(b,a,Z?{configurable:!0,get:f(function(){return!1})}:_(5,!1))}),Db(E)}(E[c],E),k(Cb)&&k(Nb)||function(o){function d(a){if(f(b,a)){var c=b[a];delete b[a],c()}}function n(a){d(a.data)}var c,g,e,i=a.postMessage,j=a.addEventListener,l=a.MessageChannel,h=0,b={};Cb=function(a){for(var d=[],e=1;arguments.length>e;)d.push(arguments[e++]);return b[++h]=function(){ib(k(a)?a:Rb(a),d)},c(h),h},Nb=function(a){delete b[a]},Wc?c=function(a){wc($b.call(d,a))}:j&&k(i)&&!a.importScripts?(c=function(a){i(a,"*")},j("message",n,!1)):k(l)?(g=new l,e=g.port2,g.port1.onmessage=n,c=m(e.postMessage,e,1)):c=eb&&o in eb[Qb]("script")?function(a){Sb.appendChild(eb[Qb]("script"))[o]=function(){Sb.removeChild(this),d(a)}}:function(a){Lb(d,0,a)}}("onreadystatechange"),b(V+Ob,{setImmediate:Cb,clearImmediate:Nb}),!function(a,e){k(a)&&k(a.resolve)&&a.resolve(e=new a(function(){}))==e||function(o,f){function l(b){var a;return h(b)&&(a=b.then),k(a)?a:!1}function j(b){var a=b.chain;a.length&&o(function(){for(var c=b.msg,e=1==b.state,d=0;a.length>d;)!function(a){var b,f,d=e?a.ok:a.fail;try{d?(b=d===!0?c:d(c),b===a.P?a.rej(Bb(Kb+"-chain cycle")):(f=l(b))?f.call(b,a.res,a.rej):a.res(b)):a.rej(c)}catch(g){a.rej(g)}}(a[d++]);a.length=0})}function n(d){var e,c,a=this;if(!a.done){a.done=!0,a=a.def||a;try{(e=l(d))?(c={def:a,done:!1},e.call(d,m(n,c,1),m(b,c,1))):(a.msg=d,a.state=1,j(a))}catch(f){b.call(c||{def:a,done:!1},f)}}}function b(b){var a=this;a.done||(a.done=!0,a=a.def||a,a.msg=b,a.state=2,j(a))}function e(a){var b=i(a)[xb];return b!=d?b:a}a=function(e){N(e),Hb(this,a,Kb);var c={chain:[],state:0,done:!1,msg:d};g(this,f,c);try{e(m(n,c,1),m(b,c,1))}catch(h){b.call(c,h)}},Eb(a[c],{then:function(e,g){var h=i(i(this)[H])[xb],b={ok:k(e)?e:!0,fail:k(g)?g:!1},l=b.P=new(h!=d?h:a)(function(a,c){b.res=N(a),b.rej=N(c)}),c=this[f];return c.chain.push(b),c.state&&j(c),l},"catch":function(a){return this.then(d,a)}}),Eb(a,{all:function(c){var b=e(this),a=[];return new b(function(f,g){cc(c,!1,Rc,a);var d=a.length,e=B(d);d?D.call(a,function(a,c){b.resolve(a).then(function(a){e[c]=a,--d||f(e)},g)}):f(e)})},race:function(b){var a=e(this);return new a(function(c,d){cc(b,!1,function(b){a.resolve(b).then(c,d)})})},reject:function(a){return new(e(this))(function(c,b){b(a)})},resolve:function(a){return h(a)&&f in a&&cb(a)===this[c]?a:new(e(this))(function(b){b(a)})}})}(wc||Cb,t("def")),X(a,Kb),Db(a),b(V+G*!O(a),{Promise:a})}(a[Kb]),!function(){function u(a,g,A,y,i,h){function p(a,b){return b!=d&&cc(b,i,a[t],a),a}function m(a,b){var c=e[a];r&&(e[a]=function(a,d){var e=c.call(this,0===a?0:a,d);return b?this:e})}var t=i?"set":"add",e=a&&a[c],w={};if(O(a)&&(h||!Fc&&f(e,ec)&&f(e,"entries"))){var u,B=a,v=new a,D=v[t](h?{}:-0,1);Tc&&a.length||(a=function(b){return Hb(this,a,g),p(new B,b)},a[c]=e,r&&(e[H]=a)),h||v[ec](function(b,a){u=1/a===-S}),u&&(m("delete"),m("has"),i&&m("get")),(u||D!==v)&&m(t,!0)}else a=h?function(b){Hb(this,a,g),z(this,k,C++),p(this,b)}:function(c){var b=this;Hb(b,a,g),z(b,s,hb(null)),z(b,o,0),z(b,l,d),z(b,j,d),p(b,c)},Eb(Eb(a[c],A),y),h||n(a[c],"size",{get:function(){return q(this[o])}});return X(a,g),Db(a),w[g]=a,b(V+Zb+G*!O(a),w),h||Wb(a,g,function(a,b){z(this,R,{o:a,k:b})},function(){for(var b=this[R],c=b.k,a=b.l;a&&a.r;)a=a.p;return b.o&&(b.l=a=a?a.n:b.o[j])?c==ub?x(0,a.k):c==L?x(0,a.v):x(0,[a.k,a.v]):(b.o=d,x(1))},i?ub+L:L,!i),a}function y(a,b){if(!h(a))return("string"==typeof a?"S":"P")+a;if(P(a))return"F";if(!f(a,k)){if(!b)return"E";g(a,k,++C)}return"O"+a[k]}function v(b,c){var a,d=y(c);if("F"!=d)return b[s][d];for(a=b[j];a;a=a.n)if(a.k==c)return a}function B(a,c,g){var e,f,b=v(a,c);return b?b.v=g:(a[l]=b={i:f=y(c,!0),k:c,v:g,p:e=a[l],n:d,r:!1},a[j]||(a[j]=b),e&&(e.n=b),a[o]++,"F"!=f&&(a[s][f]=b)),a}function A(c,b,d){return P(i(b))?p(c).set(b,d):(f(b,a)||g(b,a,{}),b[a][c[k]]=d),c}function p(a){return a[w]||g(a,w,new Gb)[w]}var k=t("uid"),s=t("O1"),a=t("weak"),w=t("leak"),l=t("last"),j=t("first"),o=Z?t("size"):"size",C=0,E={},F={clear:function(){for(var b=this,c=b[s],a=b[j];a;a=a.n)a.r=!0,a.p=a.n=d,delete c[a.i];b[j]=b[l]=d,b[o]=0},"delete":function(e){var b=this,a=v(b,e);if(a){var c=a.n,d=a.p;delete b[s][a.i],a.r=!0,d&&(d.n=c),c&&(c.p=d),b[j]==a&&(b[j]=c),b[l]==a&&(b[l]=d),b[o]--}return!!a},forEach:function(b){for(var a,c=m(b,arguments[1],3);a=a?a.n:this[j];)for(c(a.v,a.k,this);a&&a.r;)a=a.p},has:function(a){return!!v(this,a)}};Gb=u(Gb,uc,{get:function(b){var a=v(this,b);return a&&a.v},set:function(a,b){return B(this,0===a?0:a,b)}},F,!0),lc=u(lc,Mb,{add:function(a){return B(this,a=0===a?0:a,a)}},F);var I={"delete":function(b){return h(b)?P(b)?p(this)["delete"](b):f(b,a)&&f(b[a],this[k])&&delete b[a][this[k]]:!1},has:function(b){return h(b)?P(b)?p(this).has(b):f(b,a)&&f(b[a],this[k]):!1}};nb=u(nb,sc,{get:function(b){if(h(b)){if(P(b))return p(this).get(b);if(f(b,a))return b[a][this[k]]}},set:function(a,b){return A(this,a,b)}},I,!0,!0),r&&7!=(new nb).set(e.freeze(E),7).get(E)&&D.call(lb("delete,has,get,set"),function(a){var b=nb[c][a];nb[c][a]=function(c,d){if(h(c)&&P(c)){var e=p(this)[a](c,d);return"set"==a?this:e}return b.call(this,c,d)}}),kc=u(kc,qc,{add:function(a){return A(this,a,!0)}},I,!1,!0)}(),!function(){function a(a){var b,c=[];for(b in a)c.push(b);z(this,R,{o:a,a:c,i:0})}function c(a){return function(b){i(b);try{return a.apply(d,arguments),!0}catch(c){return!1}}}function f(b,c){var e,g=arguments.length<3?b:arguments[2],a=M(i(b),c);return a?a.get?a.get.call(g):a.value:h(e=cb(b))?f(e,c,g):d}function g(d,b,e){var f,c=arguments.length<4?d:arguments[3],a=M(i(d),b);if(a){if(a.writable===!1)return!1;if(a.set)return a.set.call(c,e),!0}return h(f=cb(d))?g(f,b,e,c):(a=M(c,b)||_(0),a.value=e,n(c,b,a),!0)}Bc(a,v,function(){var b,a=this[R],c=a.a;do if(a.i>=c.length)return x(1);while(!((b=c[a.i++])in a.o));return x(0,b)});var l=e.isExtensible||pb,k={apply:m(vb,bc,3),construct:Kc,defineProperty:c(n),deleteProperty:function(a,b){var c=M(i(a),b);return c&&!c.configurable?!1:delete a[b]},enumerate:function(b){return new a(i(b))},get:f,getOwnPropertyDescriptor:function(a,b){return M(i(a),b)},getPrototypeOf:function(a){return cb(i(a))},has:function(a,b){return b in a},isExtensible:function(a){return!!l(i(a))},ownKeys:bd,preventExtensions:c(e.preventExtensions||pb),set:g};Jb&&(k.setPrototypeOf=function(a,b){return Jb(i(a),b),!0}),b(V,{Reflect:{}}),b(j,"Reflect",k)}(),!function(){function a(a){return function(f){var g,h=y(f),c=mb(f),d=c.length,b=0,e=B(d);if(a)for(;d>b;)e[b]=[g=c[b++],h[g]];else for(;d>b;)e[b]=h[c[b++]];return e}}b(F,u,{includes:Jc(!0)}),b(F,db,{at:ac(!0)}),b(j,v,{values:a(!1),entries:a(!0)}),b(j,jb,{escape:_b(/([\\\-[\]{}()*+?.,^$|])/g,"\\$1",!0)})}(),!function(a){function d(b){if(b){var a=b[c];g(a,Ib,a.get),g(a,e,a.set),g(a,f,a["delete"])}}Ib=K(a+"Get",!0);var e=K(a+Mb,!0),f=K(a+"Delete",!0);b(j,I,{referenceGet:Ib,referenceSet:e,referenceDelete:f}),g(sb,Ib,qb),d(Gb),d(nb)}("reference"),!function(c){function a(a,b){D.call(lb(a),function(a){a in o&&(c[a]=m(vb,o[a],b))})}a("pop,reverse,shift,keys,values,entries",1),a("indexOf,every,some,forEach,map,filter,find,findIndex,includes",3),a("join,slice,concat,push,splice,unshift,sort,lastIndexOf,reduce,reduceRight,copyWithin,fill,turn"),b(j,u,c)}({}),!function(a){!r||!a||U in a[c]||g(a[c],U,J[u]),J.NodeList=J[u]}(a.NodeList),!function(a){function c(b){return a?function(a,c){return b(ib($b,gb.call(arguments,2),k(a)?a:Rb(a)),c)}:b}b(V+Ob+G*a,{setTimeout:Lb=c(Lb),setInterval:c(setInterval)})}(!!hc&&/MSIE .\./.test(hc.userAgent)),!function(e,c){var f={enable:function(){c=!0},disable:function(){c=!1}};D.call(lb("assert,clear,count,debug,dir,dirxml,error,exception,group,groupCollapsed,groupEnd,info,isIndependentlyComposed,log,markTimeline,profile,profileEnd,table,time,timeEnd,timeline,timelineEnd,timeStamp,trace,warn"),function(a){var b=e[a];f[a]=function(){return c&&b?bc.call(b,e,arguments):d}});try{r&&delete a.console}catch(g){}b(V+G,{console:f})}(a.console||{},!0)}("undefined"!=typeof self&&self.Math===Math?self:Function("return this")(),!0); +//# sourceMappingURL=shim.min.js.map \ No newline at end of file diff --git a/src/Quartz.Web/App/scripts/core-js/client/shim.min.js.map b/src/Quartz.Web/App/scripts/core-js/client/shim.min.js.map new file mode 100644 index 000000000..8471f7ba4 --- /dev/null +++ b/src/Quartz.Web/App/scripts/core-js/client/shim.min.js.map @@ -0,0 +1 @@ +{"version":3,"file":"shim.min.js","sources":["shim.js"],"names":["global","framework","undefined","isObject","it","isFunction","setToStringTag","tag","stat","has","PROTOTYPE","SYMBOL_TAG","hidden","cof","toString","call","slice","classof","klass","OBJECT","part","fn","assertFunction","this","length","arguments","args","Array","i","_","path","holder","_args","that","_length","j","invoke","push","ctx","a","b","c","apply","un","construct","target","argumentsList","proto","instance","create","ObjectProto","result","toObject","ES5Object","assertDefined","returnIt","returnThis","get","object","key","ownKeys","assertObject","getSymbols","getNames","concat","keyOf","el","O","keys","getKeys","index","array","String","split","createArrayMethod","type","isMap","isFilter","isSome","isEvery","isFindIndex","noholes","callbackfn","val","res","Object","self","f","toLength","createArrayContains","isContains","toIndex","sameNaN","generic","A","B","number","toInteger","isNaN","trunc","min","MAX_SAFE_INTEGER","max","createReplacer","regExp","replace","isStatic","replacer","createPointAt","pos","s","l","charCodeAt","charAt","assert","condition","msg1","msg2","TypeError","assertInstance","Constructor","name","descriptor","bitmap","value","enumerable","configurable","writable","simpleSet","createDefiner","DESC","defineProperty","uid","SYMBOL","sid","random","TO_STRING","getWellKnownSymbol","setter","Symbol","safeSymbol","DOT","assignHidden","src","setSpecies","C","isNative","SYMBOL_SPECIES","setIterator","SYMBOL_ITERATOR","SUPPORT_FF_ITER","FF_ITERATOR","createIterator","NAME","next","IteratorPrototype","defineIterator","DEFAULT","iter","iterProto","getPrototypeOf","Iterators","defineStdIterators","Base","IS_SET","createIter","kind","entries","KEY","VALUE","values","$define","PROTO","FORCED","BUGGY_ITERATORS","iterResult","done","isIterable","hasExt","ITERATOR","getIterator","ext","getIter","stepCall","forOf","iterable","step","iterator","source","own","out","exp","isGlobal","GLOBAL","STATIC","exports","core","BIND","WRAP","param","REFERENCE_GET","FUNCTION","ARRAY","STRING","NUMBER","REGEXP","DATE","MAP","SET","WEAKMAP","WEAKSET","PROMISE","MATH","ARGUMENTS","CONSTRUCTOR","TO_STRING_TAG","TO_LOCALE","HAS_OWN","FOR_EACH","PROCESS","CREATE_ELEMENT","Function","Number","RegExp","Date","Map","Set","WeakMap","WeakSet","Math","setTimeout","setImmediate","clearImmediate","isFinite","process","nextTick","document","html","documentElement","navigator","define","ArrayProto","FunctionProto","Infinity","test","setPrototypeOf","defineProperties","getOwnDescriptor","getOwnPropertyDescriptor","getOwnPropertyNames","getOwnPropertySymbols","isFrozen","assign","T","S","indexOf","forEach","pow","abs","ceil","floor","REDUCE_ERROR","e","set","SYMBOL_UNSCOPABLES","ArrayUnscopables","ITER","NATIVE_ITERATORS","exportGlobal","NODE","old","module","amd","noConflict","IS_ENUMERABLE","Empty","_classof","$PROTO","createDict","iframeDocument","iframe","keysLen1","style","display","appendChild","contentWindow","open","write","close","F","keys1","createGetKeys","names","isPrimitive","arrayMethodFix","createArrayReduce","isRight","memo","P","Attributes","Properties","keys2","seal","freeze","preventExtensions","isSealed","isExtensible","bind","bound","partArgs","join","isArray","arg","map","filter","some","every","reduce","reduceRight","lastIndexOf","fromIndex","trim","now","callee","TAG","SymbolRegistry","AllSymbols","description","sym","symbolStatics","for","keyFor","species","toStringTag","unscopables","pure","useSetter","useSimple","tmp","objectStatic","is","x","y","buggy","__proto__","JSON","wrapObjectMethod","MODE","o","match","isInteger","EPSILON","isSafeInteger","MIN_SAFE_INTEGER","parseFloat","parseInt","asinh","log","sqrt","expm1","E","sign","acosh","NaN","atanh","cbrt","clz32","cosh","fround","Float32Array","hypot","sum","len1","len2","larg","imul","UInt16","xn","yn","xl","yl","log1p","log10","LN10","log2","LN2","sinh","tanh","RangeError","fromCharCode","assertNotRegExp","fromCodePoint","code","len","raw","callSite","sln","codePointAt","endsWith","searchString","endPosition","end","includes","repeat","count","str","n","startsWith","from","arrayLike","mapfn","mapping","of","copyWithin","start","to","fin","inc","fill","endPos","find","findIndex","at","iterated","k","point","RegExpProto","_RegExp","assertRegExpWrapper","pattern","flags","ONREADYSTATECHANGE","run","id","queue","listner","event","data","defer","channel","port","postMessage","addEventListener","MessageChannel","counter","importScripts","port2","port1","onmessage","removeChild","Promise","resolve","asap","DEF","isThenable","then","notify","def","chain","msg","ok","state","react","ret","cb","fail","rej","err","wrapper","reject","getConstructor","executor","onFulfilled","onRejected","catch","all","remaining","results","promise","race","r","getCollection","methods","commonMethods","isWeak","initFromIterable","ADDER","fixSVZ","method","buggyZero","Native","inst","UID","O1","SIZE","LAST","FIRST","entry","p","v","fastKey","getEntry","prev","defWeak","leakStore","WEAK","LEAK","collectionMethods","clear","delete","add","weakMethods","Enumerate","wrap","reflectGet","propertyKey","receiver","desc","reflectSet","V","reflect","deleteProperty","enumerate","Reflect","createObjectToArray","isEntries","escape","REFERENCE","setMapMethods","MapProto","REFERENCE_SET","REFERENCE_DELETE","referenceGet","referenceSet","referenceDelete","arrayStatics","setArrayStatics","NodeList","MSIE","time","setInterval","userAgent","console","enabled","_console","enable","disable"],"mappings":"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"} \ No newline at end of file diff --git a/src/Quartz.Web/App/scripts/core-js/client/shim.min.map b/src/Quartz.Web/App/scripts/core-js/client/shim.min.map new file mode 100644 index 000000000..2e42e4e90 --- /dev/null +++ b/src/Quartz.Web/App/scripts/core-js/client/shim.min.map @@ -0,0 +1 @@ +{"version":3,"file":"shim.min.js","sources":["shim.js"],"names":["global","framework","undefined","isObject","it","isFunction","setToStringTag","tag","stat","has","PROTOTYPE","SYMBOL_TAG","hidden","cof","toString","call","slice","classof","klass","OBJECT","buildIn","part","fn","assertFunction","this","length","arguments","args","Array","i","_","path","holder","_args","that","_length","j","invoke","push","ctx","a","b","c","apply","un","construct","target","argumentsList","proto","instance","create","ObjectProto","result","toObject","ES5Object","assertDefined","returnIt","returnThis","get","object","key","ownKeys","assertObject","getSymbols","getNames","concat","keyOf","el","O","keys","getKeys","index","array","String","split","createArrayMethod","type","isMap","isFilter","isSome","isEvery","isFindIndex","noholes","callbackfn","val","res","Object","self","f","toLength","createArrayContains","isContains","toIndex","sameNaN","generic","A","B","number","toInteger","isNaN","trunc","min","MAX_SAFE_INTEGER","max","createReplacer","regExp","replace","isStatic","replacer","createPointAt","pos","s","l","charCodeAt","charAt","assert","condition","msg1","msg2","TypeError","assertInstance","Constructor","name","descriptor","bitmap","value","enumerable","configurable","writable","simpleSet","createDefiner","DESC","defineProperty","uid","SYMBOL","sid","random","TO_STRING","getWellKnownSymbol","setter","Symbol","safeSymbol","DOT","assignHidden","src","setSpecies","C","isNative","SYMBOL_SPECIES","setIterator","SYMBOL_ITERATOR","SUPPORT_FF_ITER","FF_ITERATOR","createIterator","NAME","next","IteratorPrototype","defineIterator","DEFAULT","iter","iterProto","getPrototypeOf","Iterators","defineStdIterators","Base","IS_SET","createIter","kind","entries","KEY","VALUE","values","$define","PROTO","FORCED","BUGGY_ITERATORS","iterResult","done","isIterable","hasExt","ITERATOR","getIterator","ext","getIter","stepCall","forOf","iterable","step","iterator","source","own","out","exp","isGlobal","GLOBAL","STATIC","exports","core","BIND","WRAP","param","REFERENCE_GET","FUNCTION","ARRAY","STRING","NUMBER","REGEXP","DATE","MAP","SET","WEAKMAP","WEAKSET","PROMISE","MATH","ARGUMENTS","CONSTRUCTOR","TO_STRING_TAG","TO_LOCALE","HAS_OWN","FOR_EACH","PROCESS","CREATE_ELEMENT","Function","Number","RegExp","Date","Map","Set","WeakMap","WeakSet","Math","setTimeout","setImmediate","clearImmediate","process","nextTick","document","html","documentElement","navigator","define","ArrayProto","FunctionProto","Infinity","test","Undefined","Null","Arguments","Error","Boolean","setPrototypeOf","defineProperties","getOwnDescriptor","getOwnPropertyDescriptor","getOwnPropertyNames","getOwnPropertySymbols","isFrozen","assign","T","S","indexOf","forEach","ceil","floor","REDUCE_ERROR","e","set","SYMBOL_UNSCOPABLES","ArrayUnscopables","ITER","NATIVE_ITERATORS","exportGlobal","NODE","old","module","amd","noConflict","IS_ENUMERABLE","Empty","_classof","$PROTO","createDict","iframeDocument","iframe","keysLen1","style","display","appendChild","contentWindow","open","write","close","F","keys1","createGetKeys","names","isPrimitive","arrayMethodFix","createArrayReduce","isRight","memo","P","Attributes","Properties","keys2","seal","freeze","preventExtensions","isSealed","isExtensible","bind","bound","partArgs","join","isArray","arg","map","filter","some","every","reduce","reduceRight","lastIndexOf","fromIndex","trim","now","callee","TAG","SymbolRegistry","AllSymbols","description","sym","symbolStatics","for","keyFor","species","toStringTag","unscopables","pure","useSetter","useSimple","RegExpProto","isFinite","tmp","asinh","x","log","sqrt","expm1","assertNotRegExp","wrapObjectMethod","MODE","o","RangeError","isInteger","sign","E","pow","abs","fcc","fromCharCode","at","objectStatic","is","y","buggy","__proto__","EPSILON","isSafeInteger","MIN_SAFE_INTEGER","parseFloat","parseInt","acosh","NaN","atanh","cbrt","clz32","cosh","fround","Float32Array","hypot","sum","len1","len2","larg","imul","UInt16","xn","yn","xl","yl","log1p","log10","LN10","log2","LN2","sinh","tanh","fromCodePoint","code","len","raw","callSite","sln","codePointAt","endsWith","searchString","endPosition","end","includes","repeat","count","str","n","startsWith","iterated","point","from","arrayLike","mapfn","mapping","of","copyWithin","start","to","fin","inc","fill","endPos","find","findIndex","k","JSON","match","_RegExp","pattern","flags","ONREADYSTATECHANGE","run","id","queue","listner","event","data","defer","channel","port","postMessage","addEventListener","MessageChannel","counter","importScripts","port2","port1","onmessage","removeChild","Promise","resolve","asap","DEF","isThenable","then","notify","def","chain","msg","ok","state","react","ret","cb","fail","rej","err","wrapper","reject","getConstructor","executor","onFulfilled","onRejected","catch","all","remaining","results","promise","race","r","getCollection","methods","commonMethods","isWeak","initFromIterable","ADDER","fixSVZ","method","buggyZero","Native","inst","UID","O1","SIZE","LAST","FIRST","entry","p","v","fastKey","getEntry","prev","defWeak","leakStore","WEAK","LEAK","collectionMethods","clear","delete","add","weakMethods","Enumerate","wrap","reflectGet","propertyKey","receiver","desc","reflectSet","V","reflect","deleteProperty","enumerate","Reflect","createObjectToArray","isEntries","escape","REFERENCE","setMapMethods","MapProto","REFERENCE_SET","REFERENCE_DELETE","referenceGet","referenceSet","referenceDelete","NodeList","MSIE","time","setInterval","userAgent","arrayStatics","setArrayStatics","console","enabled","_console","enable","disable"],"mappings":"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"} \ No newline at end of file diff --git a/src/Quartz.Web/App/scripts/r.js b/src/Quartz.Web/App/scripts/r.js new file mode 100644 index 000000000..4cfd96d97 --- /dev/null +++ b/src/Quartz.Web/App/scripts/r.js @@ -0,0 +1,29002 @@ +/** + * @license r.js 2.1.17 Copyright (c) 2010-2015, The Dojo Foundation All Rights Reserved. + * Available via the MIT or new BSD license. + * see: http://github.com/jrburke/requirejs for details + */ + +/* + * This is a bootstrap script to allow running RequireJS in the command line + * in either a Java/Rhino or Node environment. It is modified by the top-level + * dist.js file to inject other files to completely enable this file. It is + * the shell of the r.js file. + */ + +/*jslint evil: true, nomen: true, sloppy: true */ +/*global readFile: true, process: false, Packages: false, print: false, +console: false, java: false, module: false, requirejsVars, navigator, +document, importScripts, self, location, Components, FileUtils */ + +var requirejs, require, define, xpcUtil; +(function (console, args, readFileFunc) { + var fileName, env, fs, vm, path, exec, rhinoContext, dir, nodeRequire, + nodeDefine, exists, reqMain, loadedOptimizedLib, existsForNode, Cc, Ci, + version = '2.1.17', + jsSuffixRegExp = /\.js$/, + commandOption = '', + useLibLoaded = {}, + //Used by jslib/rhino/args.js + rhinoArgs = args, + //Used by jslib/xpconnect/args.js + xpconnectArgs = args, + readFile = typeof readFileFunc !== 'undefined' ? readFileFunc : null; + + function showHelp() { + console.log('See https://github.com/jrburke/r.js for usage.'); + } + + if ((typeof navigator !== 'undefined' && typeof document !== 'undefined') || + (typeof importScripts !== 'undefined' && typeof self !== 'undefined')) { + env = 'browser'; + + readFile = function (path) { + return fs.readFileSync(path, 'utf8'); + }; + + exec = function (string) { + return eval(string); + }; + + exists = function () { + console.log('x.js exists not applicable in browser env'); + return false; + }; + + } else if (typeof process !== 'undefined' && process.versions && !!process.versions.node) { + env = 'node'; + + //Get the fs module via Node's require before it + //gets replaced. Used in require/node.js + fs = require('fs'); + vm = require('vm'); + path = require('path'); + //In Node 0.7+ existsSync is on fs. + existsForNode = fs.existsSync || path.existsSync; + + nodeRequire = require; + nodeDefine = define; + reqMain = require.main; + + //Temporarily hide require and define to allow require.js to define + //them. + require = undefined; + define = undefined; + + readFile = function (path) { + return fs.readFileSync(path, 'utf8'); + }; + + exec = function (string, name) { + return vm.runInThisContext(this.requirejsVars.require.makeNodeWrapper(string), + name ? fs.realpathSync(name) : ''); + }; + + exists = function (fileName) { + return existsForNode(fileName); + }; + + + fileName = process.argv[2]; + + if (fileName && fileName.indexOf('-') === 0) { + commandOption = fileName.substring(1); + fileName = process.argv[3]; + } + } else if (typeof Packages !== 'undefined') { + env = 'rhino'; + + fileName = args[0]; + + if (fileName && fileName.indexOf('-') === 0) { + commandOption = fileName.substring(1); + fileName = args[1]; + } + + //Exec/readFile differs between Rhino and Nashorn. Rhino has an + //importPackage where Nashorn does not, so branch on that. This is a + //coarser check -- detecting readFile existence might also be enough for + //this spot. However, sticking with importPackage to keep it the same + //as other Rhino/Nashorn detection branches. + if (typeof importPackage !== 'undefined') { + rhinoContext = Packages.org.mozilla.javascript.ContextFactory.getGlobal().enterContext(); + + exec = function (string, name) { + return rhinoContext.evaluateString(this, string, name, 0, null); + }; + } else { + exec = function (string, name) { + load({ script: string, name: name}); + }; + readFile = readFully; + } + + exists = function (fileName) { + return (new java.io.File(fileName)).exists(); + }; + + //Define a console.log for easier logging. Don't + //get fancy though. + if (typeof console === 'undefined') { + console = { + log: function () { + print.apply(undefined, arguments); + } + }; + } + } else if (typeof Components !== 'undefined' && Components.classes && Components.interfaces) { + env = 'xpconnect'; + + Components.utils['import']('resource://gre/modules/FileUtils.jsm'); + Cc = Components.classes; + Ci = Components.interfaces; + + fileName = args[0]; + + if (fileName && fileName.indexOf('-') === 0) { + commandOption = fileName.substring(1); + fileName = args[1]; + } + + xpcUtil = { + isWindows: ('@mozilla.org/windows-registry-key;1' in Cc), + cwd: function () { + return FileUtils.getFile("CurWorkD", []).path; + }, + + //Remove . and .. from paths, normalize on front slashes + normalize: function (path) { + //There has to be an easier way to do this. + var i, part, ary, + firstChar = path.charAt(0); + + if (firstChar !== '/' && + firstChar !== '\\' && + path.indexOf(':') === -1) { + //A relative path. Use the current working directory. + path = xpcUtil.cwd() + '/' + path; + } + + ary = path.replace(/\\/g, '/').split('/'); + + for (i = 0; i < ary.length; i += 1) { + part = ary[i]; + if (part === '.') { + ary.splice(i, 1); + i -= 1; + } else if (part === '..') { + ary.splice(i - 1, 2); + i -= 2; + } + } + return ary.join('/'); + }, + + xpfile: function (path) { + var fullPath; + try { + fullPath = xpcUtil.normalize(path); + if (xpcUtil.isWindows) { + fullPath = fullPath.replace(/\//g, '\\'); + } + return new FileUtils.File(fullPath); + } catch (e) { + throw new Error((fullPath || path) + ' failed: ' + e); + } + }, + + readFile: function (/*String*/path, /*String?*/encoding) { + //A file read function that can deal with BOMs + encoding = encoding || "utf-8"; + + var inStream, convertStream, + readData = {}, + fileObj = xpcUtil.xpfile(path); + + //XPCOM, you so crazy + try { + inStream = Cc['@mozilla.org/network/file-input-stream;1'] + .createInstance(Ci.nsIFileInputStream); + inStream.init(fileObj, 1, 0, false); + + convertStream = Cc['@mozilla.org/intl/converter-input-stream;1'] + .createInstance(Ci.nsIConverterInputStream); + convertStream.init(inStream, encoding, inStream.available(), + Ci.nsIConverterInputStream.DEFAULT_REPLACEMENT_CHARACTER); + + convertStream.readString(inStream.available(), readData); + return readData.value; + } catch (e) { + throw new Error((fileObj && fileObj.path || '') + ': ' + e); + } finally { + if (convertStream) { + convertStream.close(); + } + if (inStream) { + inStream.close(); + } + } + } + }; + + readFile = xpcUtil.readFile; + + exec = function (string) { + return eval(string); + }; + + exists = function (fileName) { + return xpcUtil.xpfile(fileName).exists(); + }; + + //Define a console.log for easier logging. Don't + //get fancy though. + if (typeof console === 'undefined') { + console = { + log: function () { + print.apply(undefined, arguments); + } + }; + } + } + + /** vim: et:ts=4:sw=4:sts=4 + * @license RequireJS 2.1.17 Copyright (c) 2010-2015, The Dojo Foundation All Rights Reserved. + * Available via the MIT or new BSD license. + * see: http://github.com/jrburke/requirejs for details + */ +//Not using strict: uneven strict support in browsers, #392, and causes +//problems with requirejs.exec()/transpiler plugins that may not be strict. +/*jslint regexp: true, nomen: true, sloppy: true */ +/*global window, navigator, document, importScripts, setTimeout, opera */ + + +(function (global) { + var req, s, head, baseElement, dataMain, src, + interactiveScript, currentlyAddingScript, mainScript, subPath, + version = '2.1.17', + commentRegExp = /(\/\*([\s\S]*?)\*\/|([^:]|^)\/\/(.*)$)/mg, + cjsRequireRegExp = /[^.]\s*require\s*\(\s*["']([^'"\s]+)["']\s*\)/g, + jsSuffixRegExp = /\.js$/, + currDirRegExp = /^\.\//, + op = Object.prototype, + ostring = op.toString, + hasOwn = op.hasOwnProperty, + ap = Array.prototype, + apsp = ap.splice, + isBrowser = !!(typeof window !== 'undefined' && typeof navigator !== 'undefined' && window.document), + isWebWorker = !isBrowser && typeof importScripts !== 'undefined', + //PS3 indicates loaded and complete, but need to wait for complete + //specifically. Sequence is 'loading', 'loaded', execution, + // then 'complete'. The UA check is unfortunate, but not sure how + //to feature test w/o causing perf issues. + readyRegExp = isBrowser && navigator.platform === 'PLAYSTATION 3' ? + /^complete$/ : /^(complete|loaded)$/, + defContextName = '_', + //Oh the tragedy, detecting opera. See the usage of isOpera for reason. + isOpera = typeof opera !== 'undefined' && opera.toString() === '[object Opera]', + contexts = {}, + cfg = {}, + globalDefQueue = [], + useInteractive = false; + + function isFunction(it) { + return ostring.call(it) === '[object Function]'; + } + + function isArray(it) { + return ostring.call(it) === '[object Array]'; + } + + /** + * Helper function for iterating over an array. If the func returns + * a true value, it will break out of the loop. + */ + function each(ary, func) { + if (ary) { + var i; + for (i = 0; i < ary.length; i += 1) { + if (ary[i] && func(ary[i], i, ary)) { + break; + } + } + } + } + + /** + * Helper function for iterating over an array backwards. If the func + * returns a true value, it will break out of the loop. + */ + function eachReverse(ary, func) { + if (ary) { + var i; + for (i = ary.length - 1; i > -1; i -= 1) { + if (ary[i] && func(ary[i], i, ary)) { + break; + } + } + } + } + + function hasProp(obj, prop) { + return hasOwn.call(obj, prop); + } + + function getOwn(obj, prop) { + return hasProp(obj, prop) && obj[prop]; + } + + /** + * Cycles over properties in an object and calls a function for each + * property value. If the function returns a truthy value, then the + * iteration is stopped. + */ + function eachProp(obj, func) { + var prop; + for (prop in obj) { + if (hasProp(obj, prop)) { + if (func(obj[prop], prop)) { + break; + } + } + } + } + + /** + * Simple function to mix in properties from source into target, + * but only if target does not already have a property of the same name. + */ + function mixin(target, source, force, deepStringMixin) { + if (source) { + eachProp(source, function (value, prop) { + if (force || !hasProp(target, prop)) { + if (deepStringMixin && typeof value === 'object' && value && + !isArray(value) && !isFunction(value) && + !(value instanceof RegExp)) { + + if (!target[prop]) { + target[prop] = {}; + } + mixin(target[prop], value, force, deepStringMixin); + } else { + target[prop] = value; + } + } + }); + } + return target; + } + + //Similar to Function.prototype.bind, but the 'this' object is specified + //first, since it is easier to read/figure out what 'this' will be. + function bind(obj, fn) { + return function () { + return fn.apply(obj, arguments); + }; + } + + function scripts() { + return document.getElementsByTagName('script'); + } + + function defaultOnError(err) { + throw err; + } + + //Allow getting a global that is expressed in + //dot notation, like 'a.b.c'. + function getGlobal(value) { + if (!value) { + return value; + } + var g = global; + each(value.split('.'), function (part) { + g = g[part]; + }); + return g; + } + + /** + * Constructs an error with a pointer to an URL with more information. + * @param {String} id the error ID that maps to an ID on a web page. + * @param {String} message human readable error. + * @param {Error} [err] the original error, if there is one. + * + * @returns {Error} + */ + function makeError(id, msg, err, requireModules) { + var e = new Error(msg + '\nhttp://requirejs.org/docs/errors.html#' + id); + e.requireType = id; + e.requireModules = requireModules; + if (err) { + e.originalError = err; + } + return e; + } + + if (typeof define !== 'undefined') { + //If a define is already in play via another AMD loader, + //do not overwrite. + return; + } + + if (typeof requirejs !== 'undefined') { + if (isFunction(requirejs)) { + //Do not overwrite an existing requirejs instance. + return; + } + cfg = requirejs; + requirejs = undefined; + } + + //Allow for a require config object + if (typeof require !== 'undefined' && !isFunction(require)) { + //assume it is a config object. + cfg = require; + require = undefined; + } + + function newContext(contextName) { + var inCheckLoaded, Module, context, handlers, + checkLoadedTimeoutId, + config = { + //Defaults. Do not set a default for map + //config to speed up normalize(), which + //will run faster if there is no default. + waitSeconds: 7, + baseUrl: './', + paths: {}, + bundles: {}, + pkgs: {}, + shim: {}, + config: {} + }, + registry = {}, + //registry of just enabled modules, to speed + //cycle breaking code when lots of modules + //are registered, but not activated. + enabledRegistry = {}, + undefEvents = {}, + defQueue = [], + defined = {}, + urlFetched = {}, + bundlesMap = {}, + requireCounter = 1, + unnormalizedCounter = 1; + + /** + * Trims the . and .. from an array of path segments. + * It will keep a leading path segment if a .. will become + * the first path segment, to help with module name lookups, + * which act like paths, but can be remapped. But the end result, + * all paths that use this function should look normalized. + * NOTE: this method MODIFIES the input array. + * @param {Array} ary the array of path segments. + */ + function trimDots(ary) { + var i, part; + for (i = 0; i < ary.length; i++) { + part = ary[i]; + if (part === '.') { + ary.splice(i, 1); + i -= 1; + } else if (part === '..') { + // If at the start, or previous value is still .., + // keep them so that when converted to a path it may + // still work when converted to a path, even though + // as an ID it is less than ideal. In larger point + // releases, may be better to just kick out an error. + if (i === 0 || (i === 1 && ary[2] === '..') || ary[i - 1] === '..') { + continue; + } else if (i > 0) { + ary.splice(i - 1, 2); + i -= 2; + } + } + } + } + + /** + * Given a relative module name, like ./something, normalize it to + * a real name that can be mapped to a path. + * @param {String} name the relative name + * @param {String} baseName a real name that the name arg is relative + * to. + * @param {Boolean} applyMap apply the map config to the value. Should + * only be done if this normalization is for a dependency ID. + * @returns {String} normalized name + */ + function normalize(name, baseName, applyMap) { + var pkgMain, mapValue, nameParts, i, j, nameSegment, lastIndex, + foundMap, foundI, foundStarMap, starI, normalizedBaseParts, + baseParts = (baseName && baseName.split('/')), + map = config.map, + starMap = map && map['*']; + + //Adjust any relative paths. + if (name) { + name = name.split('/'); + lastIndex = name.length - 1; + + // If wanting node ID compatibility, strip .js from end + // of IDs. Have to do this here, and not in nameToUrl + // because node allows either .js or non .js to map + // to same file. + if (config.nodeIdCompat && jsSuffixRegExp.test(name[lastIndex])) { + name[lastIndex] = name[lastIndex].replace(jsSuffixRegExp, ''); + } + + // Starts with a '.' so need the baseName + if (name[0].charAt(0) === '.' && baseParts) { + //Convert baseName to array, and lop off the last part, + //so that . matches that 'directory' and not name of the baseName's + //module. For instance, baseName of 'one/two/three', maps to + //'one/two/three.js', but we want the directory, 'one/two' for + //this normalization. + normalizedBaseParts = baseParts.slice(0, baseParts.length - 1); + name = normalizedBaseParts.concat(name); + } + + trimDots(name); + name = name.join('/'); + } + + //Apply map config if available. + if (applyMap && map && (baseParts || starMap)) { + nameParts = name.split('/'); + + outerLoop: for (i = nameParts.length; i > 0; i -= 1) { + nameSegment = nameParts.slice(0, i).join('/'); + + if (baseParts) { + //Find the longest baseName segment match in the config. + //So, do joins on the biggest to smallest lengths of baseParts. + for (j = baseParts.length; j > 0; j -= 1) { + mapValue = getOwn(map, baseParts.slice(0, j).join('/')); + + //baseName segment has config, find if it has one for + //this name. + if (mapValue) { + mapValue = getOwn(mapValue, nameSegment); + if (mapValue) { + //Match, update name to the new value. + foundMap = mapValue; + foundI = i; + break outerLoop; + } + } + } + } + + //Check for a star map match, but just hold on to it, + //if there is a shorter segment match later in a matching + //config, then favor over this star map. + if (!foundStarMap && starMap && getOwn(starMap, nameSegment)) { + foundStarMap = getOwn(starMap, nameSegment); + starI = i; + } + } + + if (!foundMap && foundStarMap) { + foundMap = foundStarMap; + foundI = starI; + } + + if (foundMap) { + nameParts.splice(0, foundI, foundMap); + name = nameParts.join('/'); + } + } + + // If the name points to a package's name, use + // the package main instead. + pkgMain = getOwn(config.pkgs, name); + + return pkgMain ? pkgMain : name; + } + + function removeScript(name) { + if (isBrowser) { + each(scripts(), function (scriptNode) { + if (scriptNode.getAttribute('data-requiremodule') === name && + scriptNode.getAttribute('data-requirecontext') === context.contextName) { + scriptNode.parentNode.removeChild(scriptNode); + return true; + } + }); + } + } + + function hasPathFallback(id) { + var pathConfig = getOwn(config.paths, id); + if (pathConfig && isArray(pathConfig) && pathConfig.length > 1) { + //Pop off the first array value, since it failed, and + //retry + pathConfig.shift(); + context.require.undef(id); + + //Custom require that does not do map translation, since + //ID is "absolute", already mapped/resolved. + context.makeRequire(null, { + skipMap: true + })([id]); + + return true; + } + } + + //Turns a plugin!resource to [plugin, resource] + //with the plugin being undefined if the name + //did not have a plugin prefix. + function splitPrefix(name) { + var prefix, + index = name ? name.indexOf('!') : -1; + if (index > -1) { + prefix = name.substring(0, index); + name = name.substring(index + 1, name.length); + } + return [prefix, name]; + } + + /** + * Creates a module mapping that includes plugin prefix, module + * name, and path. If parentModuleMap is provided it will + * also normalize the name via require.normalize() + * + * @param {String} name the module name + * @param {String} [parentModuleMap] parent module map + * for the module name, used to resolve relative names. + * @param {Boolean} isNormalized: is the ID already normalized. + * This is true if this call is done for a define() module ID. + * @param {Boolean} applyMap: apply the map config to the ID. + * Should only be true if this map is for a dependency. + * + * @returns {Object} + */ + function makeModuleMap(name, parentModuleMap, isNormalized, applyMap) { + var url, pluginModule, suffix, nameParts, + prefix = null, + parentName = parentModuleMap ? parentModuleMap.name : null, + originalName = name, + isDefine = true, + normalizedName = ''; + + //If no name, then it means it is a require call, generate an + //internal name. + if (!name) { + isDefine = false; + name = '_@r' + (requireCounter += 1); + } + + nameParts = splitPrefix(name); + prefix = nameParts[0]; + name = nameParts[1]; + + if (prefix) { + prefix = normalize(prefix, parentName, applyMap); + pluginModule = getOwn(defined, prefix); + } + + //Account for relative paths if there is a base name. + if (name) { + if (prefix) { + if (pluginModule && pluginModule.normalize) { + //Plugin is loaded, use its normalize method. + normalizedName = pluginModule.normalize(name, function (name) { + return normalize(name, parentName, applyMap); + }); + } else { + // If nested plugin references, then do not try to + // normalize, as it will not normalize correctly. This + // places a restriction on resourceIds, and the longer + // term solution is not to normalize until plugins are + // loaded and all normalizations to allow for async + // loading of a loader plugin. But for now, fixes the + // common uses. Details in #1131 + normalizedName = name.indexOf('!') === -1 ? + normalize(name, parentName, applyMap) : + name; + } + } else { + //A regular module. + normalizedName = normalize(name, parentName, applyMap); + + //Normalized name may be a plugin ID due to map config + //application in normalize. The map config values must + //already be normalized, so do not need to redo that part. + nameParts = splitPrefix(normalizedName); + prefix = nameParts[0]; + normalizedName = nameParts[1]; + isNormalized = true; + + url = context.nameToUrl(normalizedName); + } + } + + //If the id is a plugin id that cannot be determined if it needs + //normalization, stamp it with a unique ID so two matching relative + //ids that may conflict can be separate. + suffix = prefix && !pluginModule && !isNormalized ? + '_unnormalized' + (unnormalizedCounter += 1) : + ''; + + return { + prefix: prefix, + name: normalizedName, + parentMap: parentModuleMap, + unnormalized: !!suffix, + url: url, + originalName: originalName, + isDefine: isDefine, + id: (prefix ? + prefix + '!' + normalizedName : + normalizedName) + suffix + }; + } + + function getModule(depMap) { + var id = depMap.id, + mod = getOwn(registry, id); + + if (!mod) { + mod = registry[id] = new context.Module(depMap); + } + + return mod; + } + + function on(depMap, name, fn) { + var id = depMap.id, + mod = getOwn(registry, id); + + if (hasProp(defined, id) && + (!mod || mod.defineEmitComplete)) { + if (name === 'defined') { + fn(defined[id]); + } + } else { + mod = getModule(depMap); + if (mod.error && name === 'error') { + fn(mod.error); + } else { + mod.on(name, fn); + } + } + } + + function onError(err, errback) { + var ids = err.requireModules, + notified = false; + + if (errback) { + errback(err); + } else { + each(ids, function (id) { + var mod = getOwn(registry, id); + if (mod) { + //Set error on module, so it skips timeout checks. + mod.error = err; + if (mod.events.error) { + notified = true; + mod.emit('error', err); + } + } + }); + + if (!notified) { + req.onError(err); + } + } + } + + /** + * Internal method to transfer globalQueue items to this context's + * defQueue. + */ + function takeGlobalQueue() { + //Push all the globalDefQueue items into the context's defQueue + if (globalDefQueue.length) { + //Array splice in the values since the context code has a + //local var ref to defQueue, so cannot just reassign the one + //on context. + apsp.apply(defQueue, + [defQueue.length, 0].concat(globalDefQueue)); + globalDefQueue = []; + } + } + + handlers = { + 'require': function (mod) { + if (mod.require) { + return mod.require; + } else { + return (mod.require = context.makeRequire(mod.map)); + } + }, + 'exports': function (mod) { + mod.usingExports = true; + if (mod.map.isDefine) { + if (mod.exports) { + return (defined[mod.map.id] = mod.exports); + } else { + return (mod.exports = defined[mod.map.id] = {}); + } + } + }, + 'module': function (mod) { + if (mod.module) { + return mod.module; + } else { + return (mod.module = { + id: mod.map.id, + uri: mod.map.url, + config: function () { + return getOwn(config.config, mod.map.id) || {}; + }, + exports: mod.exports || (mod.exports = {}) + }); + } + } + }; + + function cleanRegistry(id) { + //Clean up machinery used for waiting modules. + delete registry[id]; + delete enabledRegistry[id]; + } + + function breakCycle(mod, traced, processed) { + var id = mod.map.id; + + if (mod.error) { + mod.emit('error', mod.error); + } else { + traced[id] = true; + each(mod.depMaps, function (depMap, i) { + var depId = depMap.id, + dep = getOwn(registry, depId); + + //Only force things that have not completed + //being defined, so still in the registry, + //and only if it has not been matched up + //in the module already. + if (dep && !mod.depMatched[i] && !processed[depId]) { + if (getOwn(traced, depId)) { + mod.defineDep(i, defined[depId]); + mod.check(); //pass false? + } else { + breakCycle(dep, traced, processed); + } + } + }); + processed[id] = true; + } + } + + function checkLoaded() { + var err, usingPathFallback, + waitInterval = config.waitSeconds * 1000, + //It is possible to disable the wait interval by using waitSeconds of 0. + expired = waitInterval && (context.startTime + waitInterval) < new Date().getTime(), + noLoads = [], + reqCalls = [], + stillLoading = false, + needCycleCheck = true; + + //Do not bother if this call was a result of a cycle break. + if (inCheckLoaded) { + return; + } + + inCheckLoaded = true; + + //Figure out the state of all the modules. + eachProp(enabledRegistry, function (mod) { + var map = mod.map, + modId = map.id; + + //Skip things that are not enabled or in error state. + if (!mod.enabled) { + return; + } + + if (!map.isDefine) { + reqCalls.push(mod); + } + + if (!mod.error) { + //If the module should be executed, and it has not + //been inited and time is up, remember it. + if (!mod.inited && expired) { + if (hasPathFallback(modId)) { + usingPathFallback = true; + stillLoading = true; + } else { + noLoads.push(modId); + removeScript(modId); + } + } else if (!mod.inited && mod.fetched && map.isDefine) { + stillLoading = true; + if (!map.prefix) { + //No reason to keep looking for unfinished + //loading. If the only stillLoading is a + //plugin resource though, keep going, + //because it may be that a plugin resource + //is waiting on a non-plugin cycle. + return (needCycleCheck = false); + } + } + } + }); + + if (expired && noLoads.length) { + //If wait time expired, throw error of unloaded modules. + err = makeError('timeout', 'Load timeout for modules: ' + noLoads, null, noLoads); + err.contextName = context.contextName; + return onError(err); + } + + //Not expired, check for a cycle. + if (needCycleCheck) { + each(reqCalls, function (mod) { + breakCycle(mod, {}, {}); + }); + } + + //If still waiting on loads, and the waiting load is something + //other than a plugin resource, or there are still outstanding + //scripts, then just try back later. + if ((!expired || usingPathFallback) && stillLoading) { + //Something is still waiting to load. Wait for it, but only + //if a timeout is not already in effect. + if ((isBrowser || isWebWorker) && !checkLoadedTimeoutId) { + checkLoadedTimeoutId = setTimeout(function () { + checkLoadedTimeoutId = 0; + checkLoaded(); + }, 50); + } + } + + inCheckLoaded = false; + } + + Module = function (map) { + this.events = getOwn(undefEvents, map.id) || {}; + this.map = map; + this.shim = getOwn(config.shim, map.id); + this.depExports = []; + this.depMaps = []; + this.depMatched = []; + this.pluginMaps = {}; + this.depCount = 0; + + /* this.exports this.factory + this.depMaps = [], + this.enabled, this.fetched + */ + }; + + Module.prototype = { + init: function (depMaps, factory, errback, options) { + options = options || {}; + + //Do not do more inits if already done. Can happen if there + //are multiple define calls for the same module. That is not + //a normal, common case, but it is also not unexpected. + if (this.inited) { + return; + } + + this.factory = factory; + + if (errback) { + //Register for errors on this module. + this.on('error', errback); + } else if (this.events.error) { + //If no errback already, but there are error listeners + //on this module, set up an errback to pass to the deps. + errback = bind(this, function (err) { + this.emit('error', err); + }); + } + + //Do a copy of the dependency array, so that + //source inputs are not modified. For example + //"shim" deps are passed in here directly, and + //doing a direct modification of the depMaps array + //would affect that config. + this.depMaps = depMaps && depMaps.slice(0); + + this.errback = errback; + + //Indicate this module has be initialized + this.inited = true; + + this.ignore = options.ignore; + + //Could have option to init this module in enabled mode, + //or could have been previously marked as enabled. However, + //the dependencies are not known until init is called. So + //if enabled previously, now trigger dependencies as enabled. + if (options.enabled || this.enabled) { + //Enable this module and dependencies. + //Will call this.check() + this.enable(); + } else { + this.check(); + } + }, + + defineDep: function (i, depExports) { + //Because of cycles, defined callback for a given + //export can be called more than once. + if (!this.depMatched[i]) { + this.depMatched[i] = true; + this.depCount -= 1; + this.depExports[i] = depExports; + } + }, + + fetch: function () { + if (this.fetched) { + return; + } + this.fetched = true; + + context.startTime = (new Date()).getTime(); + + var map = this.map; + + //If the manager is for a plugin managed resource, + //ask the plugin to load it now. + if (this.shim) { + context.makeRequire(this.map, { + enableBuildCallback: true + })(this.shim.deps || [], bind(this, function () { + return map.prefix ? this.callPlugin() : this.load(); + })); + } else { + //Regular dependency. + return map.prefix ? this.callPlugin() : this.load(); + } + }, + + load: function () { + var url = this.map.url; + + //Regular dependency. + if (!urlFetched[url]) { + urlFetched[url] = true; + context.load(this.map.id, url); + } + }, + + /** + * Checks if the module is ready to define itself, and if so, + * define it. + */ + check: function () { + if (!this.enabled || this.enabling) { + return; + } + + var err, cjsModule, + id = this.map.id, + depExports = this.depExports, + exports = this.exports, + factory = this.factory; + + if (!this.inited) { + this.fetch(); + } else if (this.error) { + this.emit('error', this.error); + } else if (!this.defining) { + //The factory could trigger another require call + //that would result in checking this module to + //define itself again. If already in the process + //of doing that, skip this work. + this.defining = true; + + if (this.depCount < 1 && !this.defined) { + if (isFunction(factory)) { + //If there is an error listener, favor passing + //to that instead of throwing an error. However, + //only do it for define()'d modules. require + //errbacks should not be called for failures in + //their callbacks (#699). However if a global + //onError is set, use that. + if ((this.events.error && this.map.isDefine) || + req.onError !== defaultOnError) { + try { + exports = context.execCb(id, factory, depExports, exports); + } catch (e) { + err = e; + } + } else { + exports = context.execCb(id, factory, depExports, exports); + } + + // Favor return value over exports. If node/cjs in play, + // then will not have a return value anyway. Favor + // module.exports assignment over exports object. + if (this.map.isDefine && exports === undefined) { + cjsModule = this.module; + if (cjsModule) { + exports = cjsModule.exports; + } else if (this.usingExports) { + //exports already set the defined value. + exports = this.exports; + } + } + + if (err) { + err.requireMap = this.map; + err.requireModules = this.map.isDefine ? [this.map.id] : null; + err.requireType = this.map.isDefine ? 'define' : 'require'; + return onError((this.error = err)); + } + + } else { + //Just a literal value + exports = factory; + } + + this.exports = exports; + + if (this.map.isDefine && !this.ignore) { + defined[id] = exports; + + if (req.onResourceLoad) { + req.onResourceLoad(context, this.map, this.depMaps); + } + } + + //Clean up + cleanRegistry(id); + + this.defined = true; + } + + //Finished the define stage. Allow calling check again + //to allow define notifications below in the case of a + //cycle. + this.defining = false; + + if (this.defined && !this.defineEmitted) { + this.defineEmitted = true; + this.emit('defined', this.exports); + this.defineEmitComplete = true; + } + + } + }, + + callPlugin: function () { + var map = this.map, + id = map.id, + //Map already normalized the prefix. + pluginMap = makeModuleMap(map.prefix); + + //Mark this as a dependency for this plugin, so it + //can be traced for cycles. + this.depMaps.push(pluginMap); + + on(pluginMap, 'defined', bind(this, function (plugin) { + var load, normalizedMap, normalizedMod, + bundleId = getOwn(bundlesMap, this.map.id), + name = this.map.name, + parentName = this.map.parentMap ? this.map.parentMap.name : null, + localRequire = context.makeRequire(map.parentMap, { + enableBuildCallback: true + }); + + //If current map is not normalized, wait for that + //normalized name to load instead of continuing. + if (this.map.unnormalized) { + //Normalize the ID if the plugin allows it. + if (plugin.normalize) { + name = plugin.normalize(name, function (name) { + return normalize(name, parentName, true); + }) || ''; + } + + //prefix and name should already be normalized, no need + //for applying map config again either. + normalizedMap = makeModuleMap(map.prefix + '!' + name, + this.map.parentMap); + on(normalizedMap, + 'defined', bind(this, function (value) { + this.init([], function () { return value; }, null, { + enabled: true, + ignore: true + }); + })); + + normalizedMod = getOwn(registry, normalizedMap.id); + if (normalizedMod) { + //Mark this as a dependency for this plugin, so it + //can be traced for cycles. + this.depMaps.push(normalizedMap); + + if (this.events.error) { + normalizedMod.on('error', bind(this, function (err) { + this.emit('error', err); + })); + } + normalizedMod.enable(); + } + + return; + } + + //If a paths config, then just load that file instead to + //resolve the plugin, as it is built into that paths layer. + if (bundleId) { + this.map.url = context.nameToUrl(bundleId); + this.load(); + return; + } + + load = bind(this, function (value) { + this.init([], function () { return value; }, null, { + enabled: true + }); + }); + + load.error = bind(this, function (err) { + this.inited = true; + this.error = err; + err.requireModules = [id]; + + //Remove temp unnormalized modules for this module, + //since they will never be resolved otherwise now. + eachProp(registry, function (mod) { + if (mod.map.id.indexOf(id + '_unnormalized') === 0) { + cleanRegistry(mod.map.id); + } + }); + + onError(err); + }); + + //Allow plugins to load other code without having to know the + //context or how to 'complete' the load. + load.fromText = bind(this, function (text, textAlt) { + /*jslint evil: true */ + var moduleName = map.name, + moduleMap = makeModuleMap(moduleName), + hasInteractive = useInteractive; + + //As of 2.1.0, support just passing the text, to reinforce + //fromText only being called once per resource. Still + //support old style of passing moduleName but discard + //that moduleName in favor of the internal ref. + if (textAlt) { + text = textAlt; + } + + //Turn off interactive script matching for IE for any define + //calls in the text, then turn it back on at the end. + if (hasInteractive) { + useInteractive = false; + } + + //Prime the system by creating a module instance for + //it. + getModule(moduleMap); + + //Transfer any config to this other module. + if (hasProp(config.config, id)) { + config.config[moduleName] = config.config[id]; + } + + try { + req.exec(text); + } catch (e) { + return onError(makeError('fromtexteval', + 'fromText eval for ' + id + + ' failed: ' + e, + e, + [id])); + } + + if (hasInteractive) { + useInteractive = true; + } + + //Mark this as a dependency for the plugin + //resource + this.depMaps.push(moduleMap); + + //Support anonymous modules. + context.completeLoad(moduleName); + + //Bind the value of that module to the value for this + //resource ID. + localRequire([moduleName], load); + }); + + //Use parentName here since the plugin's name is not reliable, + //could be some weird string with no path that actually wants to + //reference the parentName's path. + plugin.load(map.name, localRequire, load, config); + })); + + context.enable(pluginMap, this); + this.pluginMaps[pluginMap.id] = pluginMap; + }, + + enable: function () { + enabledRegistry[this.map.id] = this; + this.enabled = true; + + //Set flag mentioning that the module is enabling, + //so that immediate calls to the defined callbacks + //for dependencies do not trigger inadvertent load + //with the depCount still being zero. + this.enabling = true; + + //Enable each dependency + each(this.depMaps, bind(this, function (depMap, i) { + var id, mod, handler; + + if (typeof depMap === 'string') { + //Dependency needs to be converted to a depMap + //and wired up to this module. + depMap = makeModuleMap(depMap, + (this.map.isDefine ? this.map : this.map.parentMap), + false, + !this.skipMap); + this.depMaps[i] = depMap; + + handler = getOwn(handlers, depMap.id); + + if (handler) { + this.depExports[i] = handler(this); + return; + } + + this.depCount += 1; + + on(depMap, 'defined', bind(this, function (depExports) { + this.defineDep(i, depExports); + this.check(); + })); + + if (this.errback) { + on(depMap, 'error', bind(this, this.errback)); + } else if (this.events.error) { + // No direct errback on this module, but something + // else is listening for errors, so be sure to + // propagate the error correctly. + on(depMap, 'error', bind(this, function(err) { + this.emit('error', err); + })); + } + } + + id = depMap.id; + mod = registry[id]; + + //Skip special modules like 'require', 'exports', 'module' + //Also, don't call enable if it is already enabled, + //important in circular dependency cases. + if (!hasProp(handlers, id) && mod && !mod.enabled) { + context.enable(depMap, this); + } + })); + + //Enable each plugin that is used in + //a dependency + eachProp(this.pluginMaps, bind(this, function (pluginMap) { + var mod = getOwn(registry, pluginMap.id); + if (mod && !mod.enabled) { + context.enable(pluginMap, this); + } + })); + + this.enabling = false; + + this.check(); + }, + + on: function (name, cb) { + var cbs = this.events[name]; + if (!cbs) { + cbs = this.events[name] = []; + } + cbs.push(cb); + }, + + emit: function (name, evt) { + each(this.events[name], function (cb) { + cb(evt); + }); + if (name === 'error') { + //Now that the error handler was triggered, remove + //the listeners, since this broken Module instance + //can stay around for a while in the registry. + delete this.events[name]; + } + } + }; + + function callGetModule(args) { + //Skip modules already defined. + if (!hasProp(defined, args[0])) { + getModule(makeModuleMap(args[0], null, true)).init(args[1], args[2]); + } + } + + function removeListener(node, func, name, ieName) { + //Favor detachEvent because of IE9 + //issue, see attachEvent/addEventListener comment elsewhere + //in this file. + if (node.detachEvent && !isOpera) { + //Probably IE. If not it will throw an error, which will be + //useful to know. + if (ieName) { + node.detachEvent(ieName, func); + } + } else { + node.removeEventListener(name, func, false); + } + } + + /** + * Given an event from a script node, get the requirejs info from it, + * and then removes the event listeners on the node. + * @param {Event} evt + * @returns {Object} + */ + function getScriptData(evt) { + //Using currentTarget instead of target for Firefox 2.0's sake. Not + //all old browsers will be supported, but this one was easy enough + //to support and still makes sense. + var node = evt.currentTarget || evt.srcElement; + + //Remove the listeners once here. + removeListener(node, context.onScriptLoad, 'load', 'onreadystatechange'); + removeListener(node, context.onScriptError, 'error'); + + return { + node: node, + id: node && node.getAttribute('data-requiremodule') + }; + } + + function intakeDefines() { + var args; + + //Any defined modules in the global queue, intake them now. + takeGlobalQueue(); + + //Make sure any remaining defQueue items get properly processed. + while (defQueue.length) { + args = defQueue.shift(); + if (args[0] === null) { + return onError(makeError('mismatch', 'Mismatched anonymous define() module: ' + args[args.length - 1])); + } else { + //args are id, deps, factory. Should be normalized by the + //define() function. + callGetModule(args); + } + } + } + + context = { + config: config, + contextName: contextName, + registry: registry, + defined: defined, + urlFetched: urlFetched, + defQueue: defQueue, + Module: Module, + makeModuleMap: makeModuleMap, + nextTick: req.nextTick, + onError: onError, + + /** + * Set a configuration for the context. + * @param {Object} cfg config object to integrate. + */ + configure: function (cfg) { + //Make sure the baseUrl ends in a slash. + if (cfg.baseUrl) { + if (cfg.baseUrl.charAt(cfg.baseUrl.length - 1) !== '/') { + cfg.baseUrl += '/'; + } + } + + //Save off the paths since they require special processing, + //they are additive. + var shim = config.shim, + objs = { + paths: true, + bundles: true, + config: true, + map: true + }; + + eachProp(cfg, function (value, prop) { + if (objs[prop]) { + if (!config[prop]) { + config[prop] = {}; + } + mixin(config[prop], value, true, true); + } else { + config[prop] = value; + } + }); + + //Reverse map the bundles + if (cfg.bundles) { + eachProp(cfg.bundles, function (value, prop) { + each(value, function (v) { + if (v !== prop) { + bundlesMap[v] = prop; + } + }); + }); + } + + //Merge shim + if (cfg.shim) { + eachProp(cfg.shim, function (value, id) { + //Normalize the structure + if (isArray(value)) { + value = { + deps: value + }; + } + if ((value.exports || value.init) && !value.exportsFn) { + value.exportsFn = context.makeShimExports(value); + } + shim[id] = value; + }); + config.shim = shim; + } + + //Adjust packages if necessary. + if (cfg.packages) { + each(cfg.packages, function (pkgObj) { + var location, name; + + pkgObj = typeof pkgObj === 'string' ? { name: pkgObj } : pkgObj; + + name = pkgObj.name; + location = pkgObj.location; + if (location) { + config.paths[name] = pkgObj.location; + } + + //Save pointer to main module ID for pkg name. + //Remove leading dot in main, so main paths are normalized, + //and remove any trailing .js, since different package + //envs have different conventions: some use a module name, + //some use a file name. + config.pkgs[name] = pkgObj.name + '/' + (pkgObj.main || 'main') + .replace(currDirRegExp, '') + .replace(jsSuffixRegExp, ''); + }); + } + + //If there are any "waiting to execute" modules in the registry, + //update the maps for them, since their info, like URLs to load, + //may have changed. + eachProp(registry, function (mod, id) { + //If module already has init called, since it is too + //late to modify them, and ignore unnormalized ones + //since they are transient. + if (!mod.inited && !mod.map.unnormalized) { + mod.map = makeModuleMap(id); + } + }); + + //If a deps array or a config callback is specified, then call + //require with those args. This is useful when require is defined as a + //config object before require.js is loaded. + if (cfg.deps || cfg.callback) { + context.require(cfg.deps || [], cfg.callback); + } + }, + + makeShimExports: function (value) { + function fn() { + var ret; + if (value.init) { + ret = value.init.apply(global, arguments); + } + return ret || (value.exports && getGlobal(value.exports)); + } + return fn; + }, + + makeRequire: function (relMap, options) { + options = options || {}; + + function localRequire(deps, callback, errback) { + var id, map, requireMod; + + if (options.enableBuildCallback && callback && isFunction(callback)) { + callback.__requireJsBuild = true; + } + + if (typeof deps === 'string') { + if (isFunction(callback)) { + //Invalid call + return onError(makeError('requireargs', 'Invalid require call'), errback); + } + + //If require|exports|module are requested, get the + //value for them from the special handlers. Caveat: + //this only works while module is being defined. + if (relMap && hasProp(handlers, deps)) { + return handlers[deps](registry[relMap.id]); + } + + //Synchronous access to one module. If require.get is + //available (as in the Node adapter), prefer that. + if (req.get) { + return req.get(context, deps, relMap, localRequire); + } + + //Normalize module name, if it contains . or .. + map = makeModuleMap(deps, relMap, false, true); + id = map.id; + + if (!hasProp(defined, id)) { + return onError(makeError('notloaded', 'Module name "' + + id + + '" has not been loaded yet for context: ' + + contextName + + (relMap ? '' : '. Use require([])'))); + } + return defined[id]; + } + + //Grab defines waiting in the global queue. + intakeDefines(); + + //Mark all the dependencies as needing to be loaded. + context.nextTick(function () { + //Some defines could have been added since the + //require call, collect them. + intakeDefines(); + + requireMod = getModule(makeModuleMap(null, relMap)); + + //Store if map config should be applied to this require + //call for dependencies. + requireMod.skipMap = options.skipMap; + + requireMod.init(deps, callback, errback, { + enabled: true + }); + + checkLoaded(); + }); + + return localRequire; + } + + mixin(localRequire, { + isBrowser: isBrowser, + + /** + * Converts a module name + .extension into an URL path. + * *Requires* the use of a module name. It does not support using + * plain URLs like nameToUrl. + */ + toUrl: function (moduleNamePlusExt) { + var ext, + index = moduleNamePlusExt.lastIndexOf('.'), + segment = moduleNamePlusExt.split('/')[0], + isRelative = segment === '.' || segment === '..'; + + //Have a file extension alias, and it is not the + //dots from a relative path. + if (index !== -1 && (!isRelative || index > 1)) { + ext = moduleNamePlusExt.substring(index, moduleNamePlusExt.length); + moduleNamePlusExt = moduleNamePlusExt.substring(0, index); + } + + return context.nameToUrl(normalize(moduleNamePlusExt, + relMap && relMap.id, true), ext, true); + }, + + defined: function (id) { + return hasProp(defined, makeModuleMap(id, relMap, false, true).id); + }, + + specified: function (id) { + id = makeModuleMap(id, relMap, false, true).id; + return hasProp(defined, id) || hasProp(registry, id); + } + }); + + //Only allow undef on top level require calls + if (!relMap) { + localRequire.undef = function (id) { + //Bind any waiting define() calls to this context, + //fix for #408 + takeGlobalQueue(); + + var map = makeModuleMap(id, relMap, true), + mod = getOwn(registry, id); + + removeScript(id); + + delete defined[id]; + delete urlFetched[map.url]; + delete undefEvents[id]; + + //Clean queued defines too. Go backwards + //in array so that the splices do not + //mess up the iteration. + eachReverse(defQueue, function(args, i) { + if(args[0] === id) { + defQueue.splice(i, 1); + } + }); + + if (mod) { + //Hold on to listeners in case the + //module will be attempted to be reloaded + //using a different config. + if (mod.events.defined) { + undefEvents[id] = mod.events; + } + + cleanRegistry(id); + } + }; + } + + return localRequire; + }, + + /** + * Called to enable a module if it is still in the registry + * awaiting enablement. A second arg, parent, the parent module, + * is passed in for context, when this method is overridden by + * the optimizer. Not shown here to keep code compact. + */ + enable: function (depMap) { + var mod = getOwn(registry, depMap.id); + if (mod) { + getModule(depMap).enable(); + } + }, + + /** + * Internal method used by environment adapters to complete a load event. + * A load event could be a script load or just a load pass from a synchronous + * load call. + * @param {String} moduleName the name of the module to potentially complete. + */ + completeLoad: function (moduleName) { + var found, args, mod, + shim = getOwn(config.shim, moduleName) || {}, + shExports = shim.exports; + + takeGlobalQueue(); + + while (defQueue.length) { + args = defQueue.shift(); + if (args[0] === null) { + args[0] = moduleName; + //If already found an anonymous module and bound it + //to this name, then this is some other anon module + //waiting for its completeLoad to fire. + if (found) { + break; + } + found = true; + } else if (args[0] === moduleName) { + //Found matching define call for this script! + found = true; + } + + callGetModule(args); + } + + //Do this after the cycle of callGetModule in case the result + //of those calls/init calls changes the registry. + mod = getOwn(registry, moduleName); + + if (!found && !hasProp(defined, moduleName) && mod && !mod.inited) { + if (config.enforceDefine && (!shExports || !getGlobal(shExports))) { + if (hasPathFallback(moduleName)) { + return; + } else { + return onError(makeError('nodefine', + 'No define call for ' + moduleName, + null, + [moduleName])); + } + } else { + //A script that does not call define(), so just simulate + //the call for it. + callGetModule([moduleName, (shim.deps || []), shim.exportsFn]); + } + } + + checkLoaded(); + }, + + /** + * Converts a module name to a file path. Supports cases where + * moduleName may actually be just an URL. + * Note that it **does not** call normalize on the moduleName, + * it is assumed to have already been normalized. This is an + * internal API, not a public one. Use toUrl for the public API. + */ + nameToUrl: function (moduleName, ext, skipExt) { + var paths, syms, i, parentModule, url, + parentPath, bundleId, + pkgMain = getOwn(config.pkgs, moduleName); + + if (pkgMain) { + moduleName = pkgMain; + } + + bundleId = getOwn(bundlesMap, moduleName); + + if (bundleId) { + return context.nameToUrl(bundleId, ext, skipExt); + } + + //If a colon is in the URL, it indicates a protocol is used and it is just + //an URL to a file, or if it starts with a slash, contains a query arg (i.e. ?) + //or ends with .js, then assume the user meant to use an url and not a module id. + //The slash is important for protocol-less URLs as well as full paths. + if (req.jsExtRegExp.test(moduleName)) { + //Just a plain path, not module name lookup, so just return it. + //Add extension if it is included. This is a bit wonky, only non-.js things pass + //an extension, this method probably needs to be reworked. + url = moduleName + (ext || ''); + } else { + //A module that needs to be converted to a path. + paths = config.paths; + + syms = moduleName.split('/'); + //For each module name segment, see if there is a path + //registered for it. Start with most specific name + //and work up from it. + for (i = syms.length; i > 0; i -= 1) { + parentModule = syms.slice(0, i).join('/'); + + parentPath = getOwn(paths, parentModule); + if (parentPath) { + //If an array, it means there are a few choices, + //Choose the one that is desired + if (isArray(parentPath)) { + parentPath = parentPath[0]; + } + syms.splice(0, i, parentPath); + break; + } + } + + //Join the path parts together, then figure out if baseUrl is needed. + url = syms.join('/'); + url += (ext || (/^data\:|\?/.test(url) || skipExt ? '' : '.js')); + url = (url.charAt(0) === '/' || url.match(/^[\w\+\.\-]+:/) ? '' : config.baseUrl) + url; + } + + return config.urlArgs ? url + + ((url.indexOf('?') === -1 ? '?' : '&') + + config.urlArgs) : url; + }, + + //Delegates to req.load. Broken out as a separate function to + //allow overriding in the optimizer. + load: function (id, url) { + req.load(context, id, url); + }, + + /** + * Executes a module callback function. Broken out as a separate function + * solely to allow the build system to sequence the files in the built + * layer in the right sequence. + * + * @private + */ + execCb: function (name, callback, args, exports) { + return callback.apply(exports, args); + }, + + /** + * callback for script loads, used to check status of loading. + * + * @param {Event} evt the event from the browser for the script + * that was loaded. + */ + onScriptLoad: function (evt) { + //Using currentTarget instead of target for Firefox 2.0's sake. Not + //all old browsers will be supported, but this one was easy enough + //to support and still makes sense. + if (evt.type === 'load' || + (readyRegExp.test((evt.currentTarget || evt.srcElement).readyState))) { + //Reset interactive script so a script node is not held onto for + //to long. + interactiveScript = null; + + //Pull out the name of the module and the context. + var data = getScriptData(evt); + context.completeLoad(data.id); + } + }, + + /** + * Callback for script errors. + */ + onScriptError: function (evt) { + var data = getScriptData(evt); + if (!hasPathFallback(data.id)) { + return onError(makeError('scripterror', 'Script error for: ' + data.id, evt, [data.id])); + } + } + }; + + context.require = context.makeRequire(); + return context; + } + + /** + * Main entry point. + * + * If the only argument to require is a string, then the module that + * is represented by that string is fetched for the appropriate context. + * + * If the first argument is an array, then it will be treated as an array + * of dependency string names to fetch. An optional function callback can + * be specified to execute when all of those dependencies are available. + * + * Make a local req variable to help Caja compliance (it assumes things + * on a require that are not standardized), and to give a short + * name for minification/local scope use. + */ + req = requirejs = function (deps, callback, errback, optional) { + + //Find the right context, use default + var context, config, + contextName = defContextName; + + // Determine if have config object in the call. + if (!isArray(deps) && typeof deps !== 'string') { + // deps is a config object + config = deps; + if (isArray(callback)) { + // Adjust args if there are dependencies + deps = callback; + callback = errback; + errback = optional; + } else { + deps = []; + } + } + + if (config && config.context) { + contextName = config.context; + } + + context = getOwn(contexts, contextName); + if (!context) { + context = contexts[contextName] = req.s.newContext(contextName); + } + + if (config) { + context.configure(config); + } + + return context.require(deps, callback, errback); + }; + + /** + * Support require.config() to make it easier to cooperate with other + * AMD loaders on globally agreed names. + */ + req.config = function (config) { + return req(config); + }; + + /** + * Execute something after the current tick + * of the event loop. Override for other envs + * that have a better solution than setTimeout. + * @param {Function} fn function to execute later. + */ + req.nextTick = typeof setTimeout !== 'undefined' ? function (fn) { + setTimeout(fn, 4); + } : function (fn) { fn(); }; + + /** + * Export require as a global, but only if it does not already exist. + */ + if (!require) { + require = req; + } + + req.version = version; + + //Used to filter out dependencies that are already paths. + req.jsExtRegExp = /^\/|:|\?|\.js$/; + req.isBrowser = isBrowser; + s = req.s = { + contexts: contexts, + newContext: newContext + }; + + //Create default context. + req({}); + + //Exports some context-sensitive methods on global require. + each([ + 'toUrl', + 'undef', + 'defined', + 'specified' + ], function (prop) { + //Reference from contexts instead of early binding to default context, + //so that during builds, the latest instance of the default context + //with its config gets used. + req[prop] = function () { + var ctx = contexts[defContextName]; + return ctx.require[prop].apply(ctx, arguments); + }; + }); + + if (isBrowser) { + head = s.head = document.getElementsByTagName('head')[0]; + //If BASE tag is in play, using appendChild is a problem for IE6. + //When that browser dies, this can be removed. Details in this jQuery bug: + //http://dev.jquery.com/ticket/2709 + baseElement = document.getElementsByTagName('base')[0]; + if (baseElement) { + head = s.head = baseElement.parentNode; + } + } + + /** + * Any errors that require explicitly generates will be passed to this + * function. Intercept/override it if you want custom error handling. + * @param {Error} err the error object. + */ + req.onError = defaultOnError; + + /** + * Creates the node for the load command. Only used in browser envs. + */ + req.createNode = function (config, moduleName, url) { + var node = config.xhtml ? + document.createElementNS('http://www.w3.org/1999/xhtml', 'html:script') : + document.createElement('script'); + node.type = config.scriptType || 'text/javascript'; + node.charset = 'utf-8'; + node.async = true; + return node; + }; + + /** + * Does the request to load a module for the browser case. + * Make this a separate function to allow other environments + * to override it. + * + * @param {Object} context the require context to find state. + * @param {String} moduleName the name of the module. + * @param {Object} url the URL to the module. + */ + req.load = function (context, moduleName, url) { + var config = (context && context.config) || {}, + node; + if (isBrowser) { + //In the browser so use a script tag + node = req.createNode(config, moduleName, url); + + node.setAttribute('data-requirecontext', context.contextName); + node.setAttribute('data-requiremodule', moduleName); + + //Set up load listener. Test attachEvent first because IE9 has + //a subtle issue in its addEventListener and script onload firings + //that do not match the behavior of all other browsers with + //addEventListener support, which fire the onload event for a + //script right after the script execution. See: + //https://connect.microsoft.com/IE/feedback/details/648057/script-onload-event-is-not-fired-immediately-after-script-execution + //UNFORTUNATELY Opera implements attachEvent but does not follow the script + //script execution mode. + if (node.attachEvent && + //Check if node.attachEvent is artificially added by custom script or + //natively supported by browser + //read https://github.com/jrburke/requirejs/issues/187 + //if we can NOT find [native code] then it must NOT natively supported. + //in IE8, node.attachEvent does not have toString() + //Note the test for "[native code" with no closing brace, see: + //https://github.com/jrburke/requirejs/issues/273 + !(node.attachEvent.toString && node.attachEvent.toString().indexOf('[native code') < 0) && + !isOpera) { + //Probably IE. IE (at least 6-8) do not fire + //script onload right after executing the script, so + //we cannot tie the anonymous define call to a name. + //However, IE reports the script as being in 'interactive' + //readyState at the time of the define call. + useInteractive = true; + + node.attachEvent('onreadystatechange', context.onScriptLoad); + //It would be great to add an error handler here to catch + //404s in IE9+. However, onreadystatechange will fire before + //the error handler, so that does not help. If addEventListener + //is used, then IE will fire error before load, but we cannot + //use that pathway given the connect.microsoft.com issue + //mentioned above about not doing the 'script execute, + //then fire the script load event listener before execute + //next script' that other browsers do. + //Best hope: IE10 fixes the issues, + //and then destroys all installs of IE 6-9. + //node.attachEvent('onerror', context.onScriptError); + } else { + node.addEventListener('load', context.onScriptLoad, false); + node.addEventListener('error', context.onScriptError, false); + } + node.src = url; + + //For some cache cases in IE 6-8, the script executes before the end + //of the appendChild execution, so to tie an anonymous define + //call to the module name (which is stored on the node), hold on + //to a reference to this node, but clear after the DOM insertion. + currentlyAddingScript = node; + if (baseElement) { + head.insertBefore(node, baseElement); + } else { + head.appendChild(node); + } + currentlyAddingScript = null; + + return node; + } else if (isWebWorker) { + try { + //In a web worker, use importScripts. This is not a very + //efficient use of importScripts, importScripts will block until + //its script is downloaded and evaluated. However, if web workers + //are in play, the expectation that a build has been done so that + //only one script needs to be loaded anyway. This may need to be + //reevaluated if other use cases become common. + importScripts(url); + + //Account for anonymous modules + context.completeLoad(moduleName); + } catch (e) { + context.onError(makeError('importscripts', + 'importScripts failed for ' + + moduleName + ' at ' + url, + e, + [moduleName])); + } + } + }; + + function getInteractiveScript() { + if (interactiveScript && interactiveScript.readyState === 'interactive') { + return interactiveScript; + } + + eachReverse(scripts(), function (script) { + if (script.readyState === 'interactive') { + return (interactiveScript = script); + } + }); + return interactiveScript; + } + + //Look for a data-main script attribute, which could also adjust the baseUrl. + if (isBrowser && !cfg.skipDataMain) { + //Figure out baseUrl. Get it from the script tag with require.js in it. + eachReverse(scripts(), function (script) { + //Set the 'head' where we can append children by + //using the script's parent. + if (!head) { + head = script.parentNode; + } + + //Look for a data-main attribute to set main script for the page + //to load. If it is there, the path to data main becomes the + //baseUrl, if it is not already set. + dataMain = script.getAttribute('data-main'); + if (dataMain) { + //Preserve dataMain in case it is a path (i.e. contains '?') + mainScript = dataMain; + + //Set final baseUrl if there is not already an explicit one. + if (!cfg.baseUrl) { + //Pull off the directory of data-main for use as the + //baseUrl. + src = mainScript.split('/'); + mainScript = src.pop(); + subPath = src.length ? src.join('/') + '/' : './'; + + cfg.baseUrl = subPath; + } + + //Strip off any trailing .js since mainScript is now + //like a module name. + mainScript = mainScript.replace(jsSuffixRegExp, ''); + + //If mainScript is still a path, fall back to dataMain + if (req.jsExtRegExp.test(mainScript)) { + mainScript = dataMain; + } + + //Put the data-main script in the files to load. + cfg.deps = cfg.deps ? cfg.deps.concat(mainScript) : [mainScript]; + + return true; + } + }); + } + + /** + * The function that handles definitions of modules. Differs from + * require() in that a string for the module should be the first argument, + * and the function to execute after dependencies are loaded should + * return a value to define the module corresponding to the first argument's + * name. + */ + define = function (name, deps, callback) { + var node, context; + + //Allow for anonymous modules + if (typeof name !== 'string') { + //Adjust args appropriately + callback = deps; + deps = name; + name = null; + } + + //This module may not have dependencies + if (!isArray(deps)) { + callback = deps; + deps = null; + } + + //If no name, and callback is a function, then figure out if it a + //CommonJS thing with dependencies. + if (!deps && isFunction(callback)) { + deps = []; + //Remove comments from the callback string, + //look for require calls, and pull them into the dependencies, + //but only if there are function args. + if (callback.length) { + callback + .toString() + .replace(commentRegExp, '') + .replace(cjsRequireRegExp, function (match, dep) { + deps.push(dep); + }); + + //May be a CommonJS thing even without require calls, but still + //could use exports, and module. Avoid doing exports and module + //work though if it just needs require. + //REQUIRES the function to expect the CommonJS variables in the + //order listed below. + deps = (callback.length === 1 ? ['require'] : ['require', 'exports', 'module']).concat(deps); + } + } + + //If in IE 6-8 and hit an anonymous define() call, do the interactive + //work. + if (useInteractive) { + node = currentlyAddingScript || getInteractiveScript(); + if (node) { + if (!name) { + name = node.getAttribute('data-requiremodule'); + } + context = contexts[node.getAttribute('data-requirecontext')]; + } + } + + //Always save off evaluating the def call until the script onload handler. + //This allows multiple modules to be in a file without prematurely + //tracing dependencies, and allows for anonymous module support, + //where the module name is not known until the script onload event + //occurs. If no context, use the global queue, and get it processed + //in the onscript load callback. + (context ? context.defQueue : globalDefQueue).push([name, deps, callback]); + }; + + define.amd = { + jQuery: true + }; + + + /** + * Executes the text. Normally just uses eval, but can be modified + * to use a better, environment-specific call. Only used for transpiling + * loader plugins, not for plain JS modules. + * @param {String} text the text to execute/evaluate. + */ + req.exec = function (text) { + /*jslint evil: true */ + return eval(text); + }; + + //Set up with config info. + req(cfg); +}(this)); + + + + this.requirejsVars = { + require: require, + requirejs: require, + define: define + }; + + if (env === 'browser') { + /** + * @license RequireJS rhino Copyright (c) 2012-2014, The Dojo Foundation All Rights Reserved. + * Available via the MIT or new BSD license. + * see: http://github.com/jrburke/requirejs for details + */ + +//sloppy since eval enclosed with use strict causes problems if the source +//text is not strict-compliant. +/*jslint sloppy: true, evil: true */ +/*global require, XMLHttpRequest */ + +(function () { + // Separate function to avoid eval pollution, same with arguments use. + function exec() { + eval(arguments[0]); + } + + require.load = function (context, moduleName, url) { + var xhr = new XMLHttpRequest(); + + xhr.open('GET', url, true); + xhr.send(); + + xhr.onreadystatechange = function () { + if (xhr.readyState === 4) { + exec(xhr.responseText); + + //Support anonymous modules. + context.completeLoad(moduleName); + } + }; + }; +}()); + } else if (env === 'rhino') { + /** + * @license RequireJS rhino Copyright (c) 2010-2014, The Dojo Foundation All Rights Reserved. + * Available via the MIT or new BSD license. + * see: http://github.com/jrburke/requirejs for details + */ + +/*jslint */ +/*global require: false, java: false, load: false */ + +(function () { + 'use strict'; + require.load = function (context, moduleName, url) { + + load(url); + + //Support anonymous modules. + context.completeLoad(moduleName); + }; + +}()); + } else if (env === 'node') { + this.requirejsVars.nodeRequire = nodeRequire; + require.nodeRequire = nodeRequire; + + /** + * @license RequireJS node Copyright (c) 2010-2014, The Dojo Foundation All Rights Reserved. + * Available via the MIT or new BSD license. + * see: http://github.com/jrburke/requirejs for details + */ + +//Explicity not strict since this file contains an eval call, and do not want +//to enforce strict on code evaluated that way. See +//https://github.com/jrburke/r.js/issues/774 +/*jslint regexp: false, sloppy: true*/ +/*global require: false, define: false, requirejsVars: false, process: false */ + +/** + * This adapter assumes that x.js has loaded it and set up + * some variables. This adapter just allows limited RequireJS + * usage from within the requirejs directory. The general + * node adapater is r.js. + */ + +(function () { + var nodeReq = requirejsVars.nodeRequire, + req = requirejsVars.require, + def = requirejsVars.define, + fs = nodeReq('fs'), + path = nodeReq('path'), + vm = nodeReq('vm'), + //In Node 0.7+ existsSync is on fs. + exists = fs.existsSync || path.existsSync, + hasOwn = Object.prototype.hasOwnProperty; + + function hasProp(obj, prop) { + return hasOwn.call(obj, prop); + } + + function syncTick(fn) { + fn(); + } + + function makeError(message, moduleName) { + var err = new Error(message); + err.requireModules = [moduleName]; + return err; + } + + //Supply an implementation that allows synchronous get of a module. + req.get = function (context, moduleName, relModuleMap, localRequire) { + if (moduleName === "require" || moduleName === "exports" || moduleName === "module") { + context.onError(makeError("Explicit require of " + moduleName + " is not allowed.", moduleName)); + } + + var ret, oldTick, + moduleMap = context.makeModuleMap(moduleName, relModuleMap, false, true); + + //Normalize module name, if it contains . or .. + moduleName = moduleMap.id; + + if (hasProp(context.defined, moduleName)) { + ret = context.defined[moduleName]; + } else { + if (ret === undefined) { + //Make sure nextTick for this type of call is sync-based. + oldTick = context.nextTick; + context.nextTick = syncTick; + try { + if (moduleMap.prefix) { + //A plugin, call requirejs to handle it. Now that + //nextTick is syncTick, the require will complete + //synchronously. + localRequire([moduleMap.originalName]); + + //Now that plugin is loaded, can regenerate the moduleMap + //to get the final, normalized ID. + moduleMap = context.makeModuleMap(moduleMap.originalName, relModuleMap, false, true); + moduleName = moduleMap.id; + } else { + //Try to dynamically fetch it. + req.load(context, moduleName, moduleMap.url); + + //Enable the module + context.enable(moduleMap, relModuleMap); + } + + //Break any cycles by requiring it normally, but this will + //finish synchronously + context.require([moduleName]); + + //The above calls are sync, so can do the next thing safely. + ret = context.defined[moduleName]; + } finally { + context.nextTick = oldTick; + } + } + } + + return ret; + }; + + req.nextTick = function (fn) { + process.nextTick(fn); + }; + + //Add wrapper around the code so that it gets the requirejs + //API instead of the Node API, and it is done lexically so + //that it survives later execution. + req.makeNodeWrapper = function (contents) { + return '(function (require, requirejs, define) { ' + + contents + + '\n}(requirejsVars.require, requirejsVars.requirejs, requirejsVars.define));'; + }; + + req.load = function (context, moduleName, url) { + var contents, err, + config = context.config; + + if (config.shim[moduleName] && (!config.suppress || !config.suppress.nodeShim)) { + console.warn('Shim config not supported in Node, may or may not work. Detected ' + + 'for module: ' + moduleName); + } + + if (exists(url)) { + contents = fs.readFileSync(url, 'utf8'); + + contents = req.makeNodeWrapper(contents); + try { + vm.runInThisContext(contents, fs.realpathSync(url)); + } catch (e) { + err = new Error('Evaluating ' + url + ' as module "' + + moduleName + '" failed with error: ' + e); + err.originalError = e; + err.moduleName = moduleName; + err.requireModules = [moduleName]; + err.fileName = url; + return context.onError(err); + } + } else { + def(moduleName, function () { + //Get the original name, since relative requires may be + //resolved differently in node (issue #202). Also, if relative, + //make it relative to the URL of the item requesting it + //(issue #393) + var dirName, + map = hasProp(context.registry, moduleName) && + context.registry[moduleName].map, + parentMap = map && map.parentMap, + originalName = map && map.originalName; + + if (originalName.charAt(0) === '.' && parentMap) { + dirName = parentMap.url.split('/'); + dirName.pop(); + originalName = dirName.join('/') + '/' + originalName; + } + + try { + return (context.config.nodeRequire || req.nodeRequire)(originalName); + } catch (e) { + err = new Error('Tried loading "' + moduleName + '" at ' + + url + ' then tried node\'s require("' + + originalName + '") and it failed ' + + 'with error: ' + e); + err.originalError = e; + err.moduleName = originalName; + err.requireModules = [moduleName]; + throw err; + } + }); + } + + //Support anonymous modules. + context.completeLoad(moduleName); + }; + + //Override to provide the function wrapper for define/require. + req.exec = function (text) { + /*jslint evil: true */ + text = req.makeNodeWrapper(text); + return eval(text); + }; +}()); + + } else if (env === 'xpconnect') { + /** + * @license RequireJS xpconnect Copyright (c) 2013-2014, The Dojo Foundation All Rights Reserved. + * Available via the MIT or new BSD license. + * see: http://github.com/jrburke/requirejs for details + */ + +/*jslint */ +/*global require, load */ + +(function () { + 'use strict'; + require.load = function (context, moduleName, url) { + + load(url); + + //Support anonymous modules. + context.completeLoad(moduleName); + }; + +}()); + + } + + //Support a default file name to execute. Useful for hosted envs + //like Joyent where it defaults to a server.js as the only executed + //script. But only do it if this is not an optimization run. + if (commandOption !== 'o' && (!fileName || !jsSuffixRegExp.test(fileName))) { + fileName = 'main.js'; + } + + /** + * Loads the library files that can be used for the optimizer, or for other + * tasks. + */ + function loadLib() { + /** + * @license Copyright (c) 2010-2014, The Dojo Foundation All Rights Reserved. + * Available via the MIT or new BSD license. + * see: http://github.com/jrburke/requirejs for details + */ + +/*jslint strict: false */ +/*global Packages: false, process: false, window: false, navigator: false, + document: false, define: false */ + +/** + * A plugin that modifies any /env/ path to be the right path based on + * the host environment. Right now only works for Node, Rhino and browser. + */ +(function () { + var pathRegExp = /(\/|^)env\/|\{env\}/, + env = 'unknown'; + + if (typeof process !== 'undefined' && process.versions && !!process.versions.node) { + env = 'node'; + } else if (typeof Packages !== 'undefined') { + env = 'rhino'; + } else if ((typeof navigator !== 'undefined' && typeof document !== 'undefined') || + (typeof importScripts !== 'undefined' && typeof self !== 'undefined')) { + env = 'browser'; + } else if (typeof Components !== 'undefined' && Components.classes && Components.interfaces) { + env = 'xpconnect'; + } + + define('env', { + get: function () { + return env; + }, + + load: function (name, req, load, config) { + //Allow override in the config. + if (config.env) { + env = config.env; + } + + name = name.replace(pathRegExp, function (match, prefix) { + if (match.indexOf('{') === -1) { + return prefix + env + '/'; + } else { + return env; + } + }); + + req([name], function (mod) { + load(mod); + }); + } + }); +}()); +/** + * @license Copyright (c) 2010-2014, The Dojo Foundation All Rights Reserved. + * Available via the MIT or new BSD license. + * see: http://github.com/jrburke/requirejs for details + */ + +/*jslint plusplus: true */ +/*global define, java */ + +define('lang', function () { + 'use strict'; + + var lang, isJavaObj, + hasOwn = Object.prototype.hasOwnProperty; + + function hasProp(obj, prop) { + return hasOwn.call(obj, prop); + } + + isJavaObj = function () { + return false; + }; + + //Rhino, but not Nashorn (detected by importPackage not existing) + //Can have some strange foreign objects. + if (typeof java !== 'undefined' && java.lang && java.lang.Object && typeof importPackage !== 'undefined') { + isJavaObj = function (obj) { + return obj instanceof java.lang.Object; + }; + } + + lang = { + backSlashRegExp: /\\/g, + ostring: Object.prototype.toString, + + isArray: Array.isArray || function (it) { + return lang.ostring.call(it) === "[object Array]"; + }, + + isFunction: function(it) { + return lang.ostring.call(it) === "[object Function]"; + }, + + isRegExp: function(it) { + return it && it instanceof RegExp; + }, + + hasProp: hasProp, + + //returns true if the object does not have an own property prop, + //or if it does, it is a falsy value. + falseProp: function (obj, prop) { + return !hasProp(obj, prop) || !obj[prop]; + }, + + //gets own property value for given prop on object + getOwn: function (obj, prop) { + return hasProp(obj, prop) && obj[prop]; + }, + + _mixin: function(dest, source, override){ + var name; + for (name in source) { + if(source.hasOwnProperty(name) && + (override || !dest.hasOwnProperty(name))) { + dest[name] = source[name]; + } + } + + return dest; // Object + }, + + /** + * mixin({}, obj1, obj2) is allowed. If the last argument is a boolean, + * then the source objects properties are force copied over to dest. + */ + mixin: function(dest){ + var parameters = Array.prototype.slice.call(arguments), + override, i, l; + + if (!dest) { dest = {}; } + + if (parameters.length > 2 && typeof arguments[parameters.length-1] === 'boolean') { + override = parameters.pop(); + } + + for (i = 1, l = parameters.length; i < l; i++) { + lang._mixin(dest, parameters[i], override); + } + return dest; // Object + }, + + /** + * Does a deep mix of source into dest, where source values override + * dest values if a winner is needed. + * @param {Object} dest destination object that receives the mixed + * values. + * @param {Object} source source object contributing properties to mix + * in. + * @return {[Object]} returns dest object with the modification. + */ + deepMix: function(dest, source) { + lang.eachProp(source, function (value, prop) { + if (typeof value === 'object' && value && + !lang.isArray(value) && !lang.isFunction(value) && + !(value instanceof RegExp)) { + + if (!dest[prop]) { + dest[prop] = {}; + } + lang.deepMix(dest[prop], value); + } else { + dest[prop] = value; + } + }); + return dest; + }, + + /** + * Does a type of deep copy. Do not give it anything fancy, best + * for basic object copies of objects that also work well as + * JSON-serialized things, or has properties pointing to functions. + * For non-array/object values, just returns the same object. + * @param {Object} obj copy properties from this object + * @param {Object} [result] optional result object to use + * @return {Object} + */ + deeplikeCopy: function (obj) { + var type, result; + + if (lang.isArray(obj)) { + result = []; + obj.forEach(function(value) { + result.push(lang.deeplikeCopy(value)); + }); + return result; + } + + type = typeof obj; + if (obj === null || obj === undefined || type === 'boolean' || + type === 'string' || type === 'number' || lang.isFunction(obj) || + lang.isRegExp(obj)|| isJavaObj(obj)) { + return obj; + } + + //Anything else is an object, hopefully. + result = {}; + lang.eachProp(obj, function(value, key) { + result[key] = lang.deeplikeCopy(value); + }); + return result; + }, + + delegate: (function () { + // boodman/crockford delegation w/ cornford optimization + function TMP() {} + return function (obj, props) { + TMP.prototype = obj; + var tmp = new TMP(); + TMP.prototype = null; + if (props) { + lang.mixin(tmp, props); + } + return tmp; // Object + }; + }()), + + /** + * Helper function for iterating over an array. If the func returns + * a true value, it will break out of the loop. + */ + each: function each(ary, func) { + if (ary) { + var i; + for (i = 0; i < ary.length; i += 1) { + if (func(ary[i], i, ary)) { + break; + } + } + } + }, + + /** + * Cycles over properties in an object and calls a function for each + * property value. If the function returns a truthy value, then the + * iteration is stopped. + */ + eachProp: function eachProp(obj, func) { + var prop; + for (prop in obj) { + if (hasProp(obj, prop)) { + if (func(obj[prop], prop)) { + break; + } + } + } + }, + + //Similar to Function.prototype.bind, but the "this" object is specified + //first, since it is easier to read/figure out what "this" will be. + bind: function bind(obj, fn) { + return function () { + return fn.apply(obj, arguments); + }; + }, + + //Escapes a content string to be be a string that has characters escaped + //for inclusion as part of a JS string. + jsEscape: function (content) { + return content.replace(/(["'\\])/g, '\\$1') + .replace(/[\f]/g, "\\f") + .replace(/[\b]/g, "\\b") + .replace(/[\n]/g, "\\n") + .replace(/[\t]/g, "\\t") + .replace(/[\r]/g, "\\r"); + } + }; + return lang; +}); +/** + * prim 0.0.1 Copyright (c) 2012-2014, The Dojo Foundation All Rights Reserved. + * Available via the MIT or new BSD license. + * see: http://github.com/requirejs/prim for details + */ + +/*global setImmediate, process, setTimeout, define, module */ + +//Set prime.hideResolutionConflict = true to allow "resolution-races" +//in promise-tests to pass. +//Since the goal of prim is to be a small impl for trusted code, it is +//more important to normally throw in this case so that we can find +//logic errors quicker. + +var prim; +(function () { + 'use strict'; + var op = Object.prototype, + hasOwn = op.hasOwnProperty; + + function hasProp(obj, prop) { + return hasOwn.call(obj, prop); + } + + /** + * Helper function for iterating over an array. If the func returns + * a true value, it will break out of the loop. + */ + function each(ary, func) { + if (ary) { + var i; + for (i = 0; i < ary.length; i += 1) { + if (ary[i]) { + func(ary[i], i, ary); + } + } + } + } + + function check(p) { + if (hasProp(p, 'e') || hasProp(p, 'v')) { + if (!prim.hideResolutionConflict) { + throw new Error('nope'); + } + return false; + } + return true; + } + + function notify(ary, value) { + prim.nextTick(function () { + each(ary, function (item) { + item(value); + }); + }); + } + + prim = function prim() { + var p, + ok = [], + fail = []; + + return (p = { + callback: function (yes, no) { + if (no) { + p.errback(no); + } + + if (hasProp(p, 'v')) { + prim.nextTick(function () { + yes(p.v); + }); + } else { + ok.push(yes); + } + }, + + errback: function (no) { + if (hasProp(p, 'e')) { + prim.nextTick(function () { + no(p.e); + }); + } else { + fail.push(no); + } + }, + + finished: function () { + return hasProp(p, 'e') || hasProp(p, 'v'); + }, + + rejected: function () { + return hasProp(p, 'e'); + }, + + resolve: function (v) { + if (check(p)) { + p.v = v; + notify(ok, v); + } + return p; + }, + reject: function (e) { + if (check(p)) { + p.e = e; + notify(fail, e); + } + return p; + }, + + start: function (fn) { + p.resolve(); + return p.promise.then(fn); + }, + + promise: { + then: function (yes, no) { + var next = prim(); + + p.callback(function (v) { + try { + if (yes && typeof yes === 'function') { + v = yes(v); + } + + if (v && v.then) { + v.then(next.resolve, next.reject); + } else { + next.resolve(v); + } + } catch (e) { + next.reject(e); + } + }, function (e) { + var err; + + try { + if (!no || typeof no !== 'function') { + next.reject(e); + } else { + err = no(e); + + if (err && err.then) { + err.then(next.resolve, next.reject); + } else { + next.resolve(err); + } + } + } catch (e2) { + next.reject(e2); + } + }); + + return next.promise; + }, + + fail: function (no) { + return p.promise.then(null, no); + }, + + end: function () { + p.errback(function (e) { + throw e; + }); + } + } + }); + }; + + prim.serial = function (ary) { + var result = prim().resolve().promise; + each(ary, function (item) { + result = result.then(function () { + return item(); + }); + }); + return result; + }; + + prim.nextTick = typeof setImmediate === 'function' ? setImmediate : + (typeof process !== 'undefined' && process.nextTick ? + process.nextTick : (typeof setTimeout !== 'undefined' ? + function (fn) { + setTimeout(fn, 0); + } : function (fn) { + fn(); + })); + + if (typeof define === 'function' && define.amd) { + define('prim', function () { return prim; }); + } else if (typeof module !== 'undefined' && module.exports) { + module.exports = prim; + } +}()); +if(env === 'browser') { +/** + * @license RequireJS Copyright (c) 2012-2014, The Dojo Foundation All Rights Reserved. + * Available via the MIT or new BSD license. + * see: http://github.com/jrburke/requirejs for details + */ + +/*jslint strict: false */ +/*global define: false, load: false */ + +//Just a stub for use with uglify's consolidator.js +define('browser/assert', function () { + return {}; +}); + +} + +if(env === 'node') { +/** + * @license RequireJS Copyright (c) 2012-2014, The Dojo Foundation All Rights Reserved. + * Available via the MIT or new BSD license. + * see: http://github.com/jrburke/requirejs for details + */ + +/*jslint strict: false */ +/*global define: false, load: false */ + +//Needed so that rhino/assert can return a stub for uglify's consolidator.js +define('node/assert', ['assert'], function (assert) { + return assert; +}); + +} + +if(env === 'rhino') { +/** + * @license RequireJS Copyright (c) 2013-2014, The Dojo Foundation All Rights Reserved. + * Available via the MIT or new BSD license. + * see: http://github.com/jrburke/requirejs for details + */ + +/*jslint strict: false */ +/*global define: false, load: false */ + +//Just a stub for use with uglify's consolidator.js +define('rhino/assert', function () { + return {}; +}); + +} + +if(env === 'xpconnect') { +/** + * @license RequireJS Copyright (c) 2013-2014, The Dojo Foundation All Rights Reserved. + * Available via the MIT or new BSD license. + * see: http://github.com/jrburke/requirejs for details + */ + +/*jslint strict: false */ +/*global define: false, load: false */ + +//Just a stub for use with uglify's consolidator.js +define('xpconnect/assert', function () { + return {}; +}); + +} + +if(env === 'browser') { +/** + * @license Copyright (c) 2010-2014, The Dojo Foundation All Rights Reserved. + * Available via the MIT or new BSD license. + * see: http://github.com/jrburke/requirejs for details + */ + +/*jslint strict: false */ +/*global define: false, process: false */ + +define('browser/args', function () { + //Always expect config via an API call + return []; +}); + +} + +if(env === 'node') { +/** + * @license Copyright (c) 2010-2014, The Dojo Foundation All Rights Reserved. + * Available via the MIT or new BSD license. + * see: http://github.com/jrburke/requirejs for details + */ + +/*jslint strict: false */ +/*global define: false, process: false */ + +define('node/args', function () { + //Do not return the "node" or "r.js" arguments + var args = process.argv.slice(2); + + //Ignore any command option used for main x.js branching + if (args[0] && args[0].indexOf('-') === 0) { + args = args.slice(1); + } + + return args; +}); + +} + +if(env === 'rhino') { +/** + * @license Copyright (c) 2010-2014, The Dojo Foundation All Rights Reserved. + * Available via the MIT or new BSD license. + * see: http://github.com/jrburke/requirejs for details + */ + +/*jslint strict: false */ +/*global define: false, process: false */ + +var jsLibRhinoArgs = (typeof rhinoArgs !== 'undefined' && rhinoArgs) || [].concat(Array.prototype.slice.call(arguments, 0)); + +define('rhino/args', function () { + var args = jsLibRhinoArgs; + + //Ignore any command option used for main x.js branching + if (args[0] && args[0].indexOf('-') === 0) { + args = args.slice(1); + } + + return args; +}); + +} + +if(env === 'xpconnect') { +/** + * @license Copyright (c) 2013-2014, The Dojo Foundation All Rights Reserved. + * Available via the MIT or new BSD license. + * see: http://github.com/jrburke/requirejs for details + */ + +/*jslint strict: false */ +/*global define, xpconnectArgs */ + +var jsLibXpConnectArgs = (typeof xpconnectArgs !== 'undefined' && xpconnectArgs) || [].concat(Array.prototype.slice.call(arguments, 0)); + +define('xpconnect/args', function () { + var args = jsLibXpConnectArgs; + + //Ignore any command option used for main x.js branching + if (args[0] && args[0].indexOf('-') === 0) { + args = args.slice(1); + } + + return args; +}); + +} + +if(env === 'browser') { +/** + * @license RequireJS Copyright (c) 2010-2014, The Dojo Foundation All Rights Reserved. + * Available via the MIT or new BSD license. + * see: http://github.com/jrburke/requirejs for details + */ + +/*jslint strict: false */ +/*global define: false, console: false */ + +define('browser/load', ['./file'], function (file) { + function load(fileName) { + eval(file.readFile(fileName)); + } + + return load; +}); + +} + +if(env === 'node') { +/** + * @license RequireJS Copyright (c) 2010-2014, The Dojo Foundation All Rights Reserved. + * Available via the MIT or new BSD license. + * see: http://github.com/jrburke/requirejs for details + */ + +/*jslint strict: false */ +/*global define: false, console: false */ + +define('node/load', ['fs'], function (fs) { + function load(fileName) { + var contents = fs.readFileSync(fileName, 'utf8'); + process.compile(contents, fileName); + } + + return load; +}); + +} + +if(env === 'rhino') { +/** + * @license RequireJS Copyright (c) 2010-2014, The Dojo Foundation All Rights Reserved. + * Available via the MIT or new BSD license. + * see: http://github.com/jrburke/requirejs for details + */ + +/*jslint strict: false */ +/*global define: false, load: false */ + +define('rhino/load', function () { + return load; +}); + +} + +if(env === 'xpconnect') { +/** + * @license RequireJS Copyright (c) 2013-2014, The Dojo Foundation All Rights Reserved. + * Available via the MIT or new BSD license. + * see: http://github.com/jrburke/requirejs for details + */ + +/*jslint strict: false */ +/*global define: false, load: false */ + +define('xpconnect/load', function () { + return load; +}); + +} + +if(env === 'browser') { +/** + * @license Copyright (c) 2012-2014, The Dojo Foundation All Rights Reserved. + * Available via the MIT or new BSD license. + * see: http://github.com/jrburke/requirejs for details + */ + +/*jslint sloppy: true, nomen: true */ +/*global require, define, console, XMLHttpRequest, requirejs, location */ + +define('browser/file', ['prim'], function (prim) { + + var file, + currDirRegExp = /^\.(\/|$)/; + + function frontSlash(path) { + return path.replace(/\\/g, '/'); + } + + function exists(path) { + var status, xhr = new XMLHttpRequest(); + + //Oh yeah, that is right SYNC IO. Behold its glory + //and horrible blocking behavior. + xhr.open('HEAD', path, false); + xhr.send(); + status = xhr.status; + + return status === 200 || status === 304; + } + + function mkDir(dir) { + console.log('mkDir is no-op in browser'); + } + + function mkFullDir(dir) { + console.log('mkFullDir is no-op in browser'); + } + + file = { + backSlashRegExp: /\\/g, + exclusionRegExp: /^\./, + getLineSeparator: function () { + return '/'; + }, + + exists: function (fileName) { + return exists(fileName); + }, + + parent: function (fileName) { + var parts = fileName.split('/'); + parts.pop(); + return parts.join('/'); + }, + + /** + * Gets the absolute file path as a string, normalized + * to using front slashes for path separators. + * @param {String} fileName + */ + absPath: function (fileName) { + var dir; + if (currDirRegExp.test(fileName)) { + dir = frontSlash(location.href); + if (dir.indexOf('/') !== -1) { + dir = dir.split('/'); + + //Pull off protocol and host, just want + //to allow paths (other build parts, like + //require._isSupportedBuildUrl do not support + //full URLs), but a full path from + //the root. + dir.splice(0, 3); + + dir.pop(); + dir = '/' + dir.join('/'); + } + + fileName = dir + fileName.substring(1); + } + + return fileName; + }, + + normalize: function (fileName) { + return fileName; + }, + + isFile: function (path) { + return true; + }, + + isDirectory: function (path) { + return false; + }, + + getFilteredFileList: function (startDir, regExpFilters, makeUnixPaths) { + console.log('file.getFilteredFileList is no-op in browser'); + }, + + copyDir: function (srcDir, destDir, regExpFilter, onlyCopyNew) { + console.log('file.copyDir is no-op in browser'); + + }, + + copyFile: function (srcFileName, destFileName, onlyCopyNew) { + console.log('file.copyFile is no-op in browser'); + }, + + /** + * Renames a file. May fail if "to" already exists or is on another drive. + */ + renameFile: function (from, to) { + console.log('file.renameFile is no-op in browser'); + }, + + /** + * Reads a *text* file. + */ + readFile: function (path, encoding) { + var xhr = new XMLHttpRequest(); + + //Oh yeah, that is right SYNC IO. Behold its glory + //and horrible blocking behavior. + xhr.open('GET', path, false); + xhr.send(); + + return xhr.responseText; + }, + + readFileAsync: function (path, encoding) { + var xhr = new XMLHttpRequest(), + d = prim(); + + xhr.open('GET', path, true); + xhr.send(); + + xhr.onreadystatechange = function () { + if (xhr.readyState === 4) { + if (xhr.status > 400) { + d.reject(new Error('Status: ' + xhr.status + ': ' + xhr.statusText)); + } else { + d.resolve(xhr.responseText); + } + } + }; + + return d.promise; + }, + + saveUtf8File: function (fileName, fileContents) { + //summary: saves a *text* file using UTF-8 encoding. + file.saveFile(fileName, fileContents, "utf8"); + }, + + saveFile: function (fileName, fileContents, encoding) { + requirejs.browser.saveFile(fileName, fileContents, encoding); + }, + + deleteFile: function (fileName) { + console.log('file.deleteFile is no-op in browser'); + }, + + /** + * Deletes any empty directories under the given directory. + */ + deleteEmptyDirs: function (startDir) { + console.log('file.deleteEmptyDirs is no-op in browser'); + } + }; + + return file; + +}); + +} + +if(env === 'node') { +/** + * @license Copyright (c) 2010-2014, The Dojo Foundation All Rights Reserved. + * Available via the MIT or new BSD license. + * see: http://github.com/jrburke/requirejs for details + */ + +/*jslint plusplus: false, octal:false, strict: false */ +/*global define: false, process: false */ + +define('node/file', ['fs', 'path', 'prim'], function (fs, path, prim) { + + var isWindows = process.platform === 'win32', + windowsDriveRegExp = /^[a-zA-Z]\:\/$/, + file; + + function frontSlash(path) { + return path.replace(/\\/g, '/'); + } + + function exists(path) { + if (isWindows && path.charAt(path.length - 1) === '/' && + path.charAt(path.length - 2) !== ':') { + path = path.substring(0, path.length - 1); + } + + try { + fs.statSync(path); + return true; + } catch (e) { + return false; + } + } + + function mkDir(dir) { + if (!exists(dir) && (!isWindows || !windowsDriveRegExp.test(dir))) { + fs.mkdirSync(dir, 511); + } + } + + function mkFullDir(dir) { + var parts = dir.split('/'), + currDir = '', + first = true; + + parts.forEach(function (part) { + //First part may be empty string if path starts with a slash. + currDir += part + '/'; + first = false; + + if (part) { + mkDir(currDir); + } + }); + } + + file = { + backSlashRegExp: /\\/g, + exclusionRegExp: /^\./, + getLineSeparator: function () { + return '/'; + }, + + exists: function (fileName) { + return exists(fileName); + }, + + parent: function (fileName) { + var parts = fileName.split('/'); + parts.pop(); + return parts.join('/'); + }, + + /** + * Gets the absolute file path as a string, normalized + * to using front slashes for path separators. + * @param {String} fileName + */ + absPath: function (fileName) { + return frontSlash(path.normalize(frontSlash(fs.realpathSync(fileName)))); + }, + + normalize: function (fileName) { + return frontSlash(path.normalize(fileName)); + }, + + isFile: function (path) { + return fs.statSync(path).isFile(); + }, + + isDirectory: function (path) { + return fs.statSync(path).isDirectory(); + }, + + getFilteredFileList: function (/*String*/startDir, /*RegExp*/regExpFilters, /*boolean?*/makeUnixPaths) { + //summary: Recurses startDir and finds matches to the files that match regExpFilters.include + //and do not match regExpFilters.exclude. Or just one regexp can be passed in for regExpFilters, + //and it will be treated as the "include" case. + //Ignores files/directories that start with a period (.) unless exclusionRegExp + //is set to another value. + var files = [], topDir, regExpInclude, regExpExclude, dirFileArray, + i, stat, filePath, ok, dirFiles, fileName; + + topDir = startDir; + + regExpInclude = regExpFilters.include || regExpFilters; + regExpExclude = regExpFilters.exclude || null; + + if (file.exists(topDir)) { + dirFileArray = fs.readdirSync(topDir); + for (i = 0; i < dirFileArray.length; i++) { + fileName = dirFileArray[i]; + filePath = path.join(topDir, fileName); + stat = fs.statSync(filePath); + if (stat.isFile()) { + if (makeUnixPaths) { + //Make sure we have a JS string. + if (filePath.indexOf("/") === -1) { + filePath = frontSlash(filePath); + } + } + + ok = true; + if (regExpInclude) { + ok = filePath.match(regExpInclude); + } + if (ok && regExpExclude) { + ok = !filePath.match(regExpExclude); + } + + if (ok && (!file.exclusionRegExp || + !file.exclusionRegExp.test(fileName))) { + files.push(filePath); + } + } else if (stat.isDirectory() && + (!file.exclusionRegExp || !file.exclusionRegExp.test(fileName))) { + dirFiles = this.getFilteredFileList(filePath, regExpFilters, makeUnixPaths); + files.push.apply(files, dirFiles); + } + } + } + + return files; //Array + }, + + copyDir: function (/*String*/srcDir, /*String*/destDir, /*RegExp?*/regExpFilter, /*boolean?*/onlyCopyNew) { + //summary: copies files from srcDir to destDir using the regExpFilter to determine if the + //file should be copied. Returns a list file name strings of the destinations that were copied. + regExpFilter = regExpFilter || /\w/; + + //Normalize th directory names, but keep front slashes. + //path module on windows now returns backslashed paths. + srcDir = frontSlash(path.normalize(srcDir)); + destDir = frontSlash(path.normalize(destDir)); + + var fileNames = file.getFilteredFileList(srcDir, regExpFilter, true), + copiedFiles = [], i, srcFileName, destFileName; + + for (i = 0; i < fileNames.length; i++) { + srcFileName = fileNames[i]; + destFileName = srcFileName.replace(srcDir, destDir); + + if (file.copyFile(srcFileName, destFileName, onlyCopyNew)) { + copiedFiles.push(destFileName); + } + } + + return copiedFiles.length ? copiedFiles : null; //Array or null + }, + + copyFile: function (/*String*/srcFileName, /*String*/destFileName, /*boolean?*/onlyCopyNew) { + //summary: copies srcFileName to destFileName. If onlyCopyNew is set, it only copies the file if + //srcFileName is newer than destFileName. Returns a boolean indicating if the copy occurred. + var parentDir; + + //logger.trace("Src filename: " + srcFileName); + //logger.trace("Dest filename: " + destFileName); + + //If onlyCopyNew is true, then compare dates and only copy if the src is newer + //than dest. + if (onlyCopyNew) { + if (file.exists(destFileName) && fs.statSync(destFileName).mtime.getTime() >= fs.statSync(srcFileName).mtime.getTime()) { + return false; //Boolean + } + } + + //Make sure destination dir exists. + parentDir = path.dirname(destFileName); + if (!file.exists(parentDir)) { + mkFullDir(parentDir); + } + + fs.writeFileSync(destFileName, fs.readFileSync(srcFileName, 'binary'), 'binary'); + + return true; //Boolean + }, + + /** + * Renames a file. May fail if "to" already exists or is on another drive. + */ + renameFile: function (from, to) { + return fs.renameSync(from, to); + }, + + /** + * Reads a *text* file. + */ + readFile: function (/*String*/path, /*String?*/encoding) { + if (encoding === 'utf-8') { + encoding = 'utf8'; + } + if (!encoding) { + encoding = 'utf8'; + } + + var text = fs.readFileSync(path, encoding); + + //Hmm, would not expect to get A BOM, but it seems to happen, + //remove it just in case. + if (text.indexOf('\uFEFF') === 0) { + text = text.substring(1, text.length); + } + + return text; + }, + + readFileAsync: function (path, encoding) { + var d = prim(); + try { + d.resolve(file.readFile(path, encoding)); + } catch (e) { + d.reject(e); + } + return d.promise; + }, + + saveUtf8File: function (/*String*/fileName, /*String*/fileContents) { + //summary: saves a *text* file using UTF-8 encoding. + file.saveFile(fileName, fileContents, "utf8"); + }, + + saveFile: function (/*String*/fileName, /*String*/fileContents, /*String?*/encoding) { + //summary: saves a *text* file. + var parentDir; + + if (encoding === 'utf-8') { + encoding = 'utf8'; + } + if (!encoding) { + encoding = 'utf8'; + } + + //Make sure destination directories exist. + parentDir = path.dirname(fileName); + if (!file.exists(parentDir)) { + mkFullDir(parentDir); + } + + fs.writeFileSync(fileName, fileContents, encoding); + }, + + deleteFile: function (/*String*/fileName) { + //summary: deletes a file or directory if it exists. + var files, i, stat; + if (file.exists(fileName)) { + stat = fs.lstatSync(fileName); + if (stat.isDirectory()) { + files = fs.readdirSync(fileName); + for (i = 0; i < files.length; i++) { + this.deleteFile(path.join(fileName, files[i])); + } + fs.rmdirSync(fileName); + } else { + fs.unlinkSync(fileName); + } + } + }, + + + /** + * Deletes any empty directories under the given directory. + */ + deleteEmptyDirs: function (startDir) { + var dirFileArray, i, fileName, filePath, stat; + + if (file.exists(startDir)) { + dirFileArray = fs.readdirSync(startDir); + for (i = 0; i < dirFileArray.length; i++) { + fileName = dirFileArray[i]; + filePath = path.join(startDir, fileName); + stat = fs.lstatSync(filePath); + if (stat.isDirectory()) { + file.deleteEmptyDirs(filePath); + } + } + + //If directory is now empty, remove it. + if (fs.readdirSync(startDir).length === 0) { + file.deleteFile(startDir); + } + } + } + }; + + return file; + +}); + +} + +if(env === 'rhino') { +/** + * @license RequireJS Copyright (c) 2010-2014, The Dojo Foundation All Rights Reserved. + * Available via the MIT or new BSD license. + * see: http://github.com/jrburke/requirejs for details + */ +//Helper functions to deal with file I/O. + +/*jslint plusplus: false */ +/*global java: false, define: false */ + +define('rhino/file', ['prim'], function (prim) { + var file = { + backSlashRegExp: /\\/g, + + exclusionRegExp: /^\./, + + getLineSeparator: function () { + return file.lineSeparator; + }, + + lineSeparator: java.lang.System.getProperty("line.separator"), //Java String + + exists: function (fileName) { + return (new java.io.File(fileName)).exists(); + }, + + parent: function (fileName) { + return file.absPath((new java.io.File(fileName)).getParentFile()); + }, + + normalize: function (fileName) { + return file.absPath(fileName); + }, + + isFile: function (path) { + return (new java.io.File(path)).isFile(); + }, + + isDirectory: function (path) { + return (new java.io.File(path)).isDirectory(); + }, + + /** + * Gets the absolute file path as a string, normalized + * to using front slashes for path separators. + * @param {java.io.File||String} file + */ + absPath: function (fileObj) { + if (typeof fileObj === "string") { + fileObj = new java.io.File(fileObj); + } + return (fileObj.getCanonicalPath() + "").replace(file.backSlashRegExp, "/"); + }, + + getFilteredFileList: function (/*String*/startDir, /*RegExp*/regExpFilters, /*boolean?*/makeUnixPaths, /*boolean?*/startDirIsJavaObject) { + //summary: Recurses startDir and finds matches to the files that match regExpFilters.include + //and do not match regExpFilters.exclude. Or just one regexp can be passed in for regExpFilters, + //and it will be treated as the "include" case. + //Ignores files/directories that start with a period (.) unless exclusionRegExp + //is set to another value. + var files = [], topDir, regExpInclude, regExpExclude, dirFileArray, + i, fileObj, filePath, ok, dirFiles; + + topDir = startDir; + if (!startDirIsJavaObject) { + topDir = new java.io.File(startDir); + } + + regExpInclude = regExpFilters.include || regExpFilters; + regExpExclude = regExpFilters.exclude || null; + + if (topDir.exists()) { + dirFileArray = topDir.listFiles(); + for (i = 0; i < dirFileArray.length; i++) { + fileObj = dirFileArray[i]; + if (fileObj.isFile()) { + filePath = fileObj.getPath(); + if (makeUnixPaths) { + //Make sure we have a JS string. + filePath = String(filePath); + if (filePath.indexOf("/") === -1) { + filePath = filePath.replace(/\\/g, "/"); + } + } + + ok = true; + if (regExpInclude) { + ok = filePath.match(regExpInclude); + } + if (ok && regExpExclude) { + ok = !filePath.match(regExpExclude); + } + + if (ok && (!file.exclusionRegExp || + !file.exclusionRegExp.test(fileObj.getName()))) { + files.push(filePath); + } + } else if (fileObj.isDirectory() && + (!file.exclusionRegExp || !file.exclusionRegExp.test(fileObj.getName()))) { + dirFiles = this.getFilteredFileList(fileObj, regExpFilters, makeUnixPaths, true); + files.push.apply(files, dirFiles); + } + } + } + + return files; //Array + }, + + copyDir: function (/*String*/srcDir, /*String*/destDir, /*RegExp?*/regExpFilter, /*boolean?*/onlyCopyNew) { + //summary: copies files from srcDir to destDir using the regExpFilter to determine if the + //file should be copied. Returns a list file name strings of the destinations that were copied. + regExpFilter = regExpFilter || /\w/; + + var fileNames = file.getFilteredFileList(srcDir, regExpFilter, true), + copiedFiles = [], i, srcFileName, destFileName; + + for (i = 0; i < fileNames.length; i++) { + srcFileName = fileNames[i]; + destFileName = srcFileName.replace(srcDir, destDir); + + if (file.copyFile(srcFileName, destFileName, onlyCopyNew)) { + copiedFiles.push(destFileName); + } + } + + return copiedFiles.length ? copiedFiles : null; //Array or null + }, + + copyFile: function (/*String*/srcFileName, /*String*/destFileName, /*boolean?*/onlyCopyNew) { + //summary: copies srcFileName to destFileName. If onlyCopyNew is set, it only copies the file if + //srcFileName is newer than destFileName. Returns a boolean indicating if the copy occurred. + var destFile = new java.io.File(destFileName), srcFile, parentDir, + srcChannel, destChannel; + + //logger.trace("Src filename: " + srcFileName); + //logger.trace("Dest filename: " + destFileName); + + //If onlyCopyNew is true, then compare dates and only copy if the src is newer + //than dest. + if (onlyCopyNew) { + srcFile = new java.io.File(srcFileName); + if (destFile.exists() && destFile.lastModified() >= srcFile.lastModified()) { + return false; //Boolean + } + } + + //Make sure destination dir exists. + parentDir = destFile.getParentFile(); + if (!parentDir.exists()) { + if (!parentDir.mkdirs()) { + throw "Could not create directory: " + parentDir.getCanonicalPath(); + } + } + + //Java's version of copy file. + srcChannel = new java.io.FileInputStream(srcFileName).getChannel(); + destChannel = new java.io.FileOutputStream(destFileName).getChannel(); + destChannel.transferFrom(srcChannel, 0, srcChannel.size()); + srcChannel.close(); + destChannel.close(); + + return true; //Boolean + }, + + /** + * Renames a file. May fail if "to" already exists or is on another drive. + */ + renameFile: function (from, to) { + return (new java.io.File(from)).renameTo((new java.io.File(to))); + }, + + readFile: function (/*String*/path, /*String?*/encoding) { + //A file read function that can deal with BOMs + encoding = encoding || "utf-8"; + var fileObj = new java.io.File(path), + input = new java.io.BufferedReader(new java.io.InputStreamReader(new java.io.FileInputStream(fileObj), encoding)), + stringBuffer, line; + try { + stringBuffer = new java.lang.StringBuffer(); + line = input.readLine(); + + // Byte Order Mark (BOM) - The Unicode Standard, version 3.0, page 324 + // http://www.unicode.org/faq/utf_bom.html + + // Note that when we use utf-8, the BOM should appear as "EF BB BF", but it doesn't due to this bug in the JDK: + // http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4508058 + if (line && line.length() && line.charAt(0) === 0xfeff) { + // Eat the BOM, since we've already found the encoding on this file, + // and we plan to concatenating this buffer with others; the BOM should + // only appear at the top of a file. + line = line.substring(1); + } + while (line !== null) { + stringBuffer.append(line); + stringBuffer.append(file.lineSeparator); + line = input.readLine(); + } + //Make sure we return a JavaScript string and not a Java string. + return String(stringBuffer.toString()); //String + } finally { + input.close(); + } + }, + + readFileAsync: function (path, encoding) { + var d = prim(); + try { + d.resolve(file.readFile(path, encoding)); + } catch (e) { + d.reject(e); + } + return d.promise; + }, + + saveUtf8File: function (/*String*/fileName, /*String*/fileContents) { + //summary: saves a file using UTF-8 encoding. + file.saveFile(fileName, fileContents, "utf-8"); + }, + + saveFile: function (/*String*/fileName, /*String*/fileContents, /*String?*/encoding) { + //summary: saves a file. + var outFile = new java.io.File(fileName), outWriter, parentDir, os; + + parentDir = outFile.getAbsoluteFile().getParentFile(); + if (!parentDir.exists()) { + if (!parentDir.mkdirs()) { + throw "Could not create directory: " + parentDir.getAbsolutePath(); + } + } + + if (encoding) { + outWriter = new java.io.OutputStreamWriter(new java.io.FileOutputStream(outFile), encoding); + } else { + outWriter = new java.io.OutputStreamWriter(new java.io.FileOutputStream(outFile)); + } + + os = new java.io.BufferedWriter(outWriter); + try { + //If in Nashorn, need to coerce the JS string to a Java string so that + //writer.write method dispatch correctly detects the type. + if (typeof importPackage !== 'undefined') { + os.write(fileContents); + } else { + os.write(new java.lang.String(fileContents)); + } + } finally { + os.close(); + } + }, + + deleteFile: function (/*String*/fileName) { + //summary: deletes a file or directory if it exists. + var fileObj = new java.io.File(fileName), files, i; + if (fileObj.exists()) { + if (fileObj.isDirectory()) { + files = fileObj.listFiles(); + for (i = 0; i < files.length; i++) { + this.deleteFile(files[i]); + } + } + fileObj["delete"](); + } + }, + + /** + * Deletes any empty directories under the given directory. + * The startDirIsJavaObject is private to this implementation's + * recursion needs. + */ + deleteEmptyDirs: function (startDir, startDirIsJavaObject) { + var topDir = startDir, + dirFileArray, i, fileObj; + + if (!startDirIsJavaObject) { + topDir = new java.io.File(startDir); + } + + if (topDir.exists()) { + dirFileArray = topDir.listFiles(); + for (i = 0; i < dirFileArray.length; i++) { + fileObj = dirFileArray[i]; + if (fileObj.isDirectory()) { + file.deleteEmptyDirs(fileObj, true); + } + } + + //If the directory is empty now, delete it. + if (topDir.listFiles().length === 0) { + file.deleteFile(String(topDir.getPath())); + } + } + } + }; + + return file; +}); + +} + +if(env === 'xpconnect') { +/** + * @license RequireJS Copyright (c) 2013-2014, The Dojo Foundation All Rights Reserved. + * Available via the MIT or new BSD license. + * see: http://github.com/jrburke/requirejs for details + */ +//Helper functions to deal with file I/O. + +/*jslint plusplus: false */ +/*global define, Components, xpcUtil */ + +define('xpconnect/file', ['prim'], function (prim) { + var file, + Cc = Components.classes, + Ci = Components.interfaces, + //Depends on xpcUtil which is set up in x.js + xpfile = xpcUtil.xpfile; + + function mkFullDir(dirObj) { + //1 is DIRECTORY_TYPE, 511 is 0777 permissions + if (!dirObj.exists()) { + dirObj.create(1, 511); + } + } + + file = { + backSlashRegExp: /\\/g, + + exclusionRegExp: /^\./, + + getLineSeparator: function () { + return file.lineSeparator; + }, + + lineSeparator: ('@mozilla.org/windows-registry-key;1' in Cc) ? + '\r\n' : '\n', + + exists: function (fileName) { + return xpfile(fileName).exists(); + }, + + parent: function (fileName) { + return xpfile(fileName).parent; + }, + + normalize: function (fileName) { + return file.absPath(fileName); + }, + + isFile: function (path) { + return xpfile(path).isFile(); + }, + + isDirectory: function (path) { + return xpfile(path).isDirectory(); + }, + + /** + * Gets the absolute file path as a string, normalized + * to using front slashes for path separators. + * @param {java.io.File||String} file + */ + absPath: function (fileObj) { + if (typeof fileObj === "string") { + fileObj = xpfile(fileObj); + } + return fileObj.path; + }, + + getFilteredFileList: function (/*String*/startDir, /*RegExp*/regExpFilters, /*boolean?*/makeUnixPaths, /*boolean?*/startDirIsObject) { + //summary: Recurses startDir and finds matches to the files that match regExpFilters.include + //and do not match regExpFilters.exclude. Or just one regexp can be passed in for regExpFilters, + //and it will be treated as the "include" case. + //Ignores files/directories that start with a period (.) unless exclusionRegExp + //is set to another value. + var files = [], topDir, regExpInclude, regExpExclude, dirFileArray, + fileObj, filePath, ok, dirFiles; + + topDir = startDir; + if (!startDirIsObject) { + topDir = xpfile(startDir); + } + + regExpInclude = regExpFilters.include || regExpFilters; + regExpExclude = regExpFilters.exclude || null; + + if (topDir.exists()) { + dirFileArray = topDir.directoryEntries; + while (dirFileArray.hasMoreElements()) { + fileObj = dirFileArray.getNext().QueryInterface(Ci.nsILocalFile); + if (fileObj.isFile()) { + filePath = fileObj.path; + if (makeUnixPaths) { + if (filePath.indexOf("/") === -1) { + filePath = filePath.replace(/\\/g, "/"); + } + } + + ok = true; + if (regExpInclude) { + ok = filePath.match(regExpInclude); + } + if (ok && regExpExclude) { + ok = !filePath.match(regExpExclude); + } + + if (ok && (!file.exclusionRegExp || + !file.exclusionRegExp.test(fileObj.leafName))) { + files.push(filePath); + } + } else if (fileObj.isDirectory() && + (!file.exclusionRegExp || !file.exclusionRegExp.test(fileObj.leafName))) { + dirFiles = this.getFilteredFileList(fileObj, regExpFilters, makeUnixPaths, true); + files.push.apply(files, dirFiles); + } + } + } + + return files; //Array + }, + + copyDir: function (/*String*/srcDir, /*String*/destDir, /*RegExp?*/regExpFilter, /*boolean?*/onlyCopyNew) { + //summary: copies files from srcDir to destDir using the regExpFilter to determine if the + //file should be copied. Returns a list file name strings of the destinations that were copied. + regExpFilter = regExpFilter || /\w/; + + var fileNames = file.getFilteredFileList(srcDir, regExpFilter, true), + copiedFiles = [], i, srcFileName, destFileName; + + for (i = 0; i < fileNames.length; i += 1) { + srcFileName = fileNames[i]; + destFileName = srcFileName.replace(srcDir, destDir); + + if (file.copyFile(srcFileName, destFileName, onlyCopyNew)) { + copiedFiles.push(destFileName); + } + } + + return copiedFiles.length ? copiedFiles : null; //Array or null + }, + + copyFile: function (/*String*/srcFileName, /*String*/destFileName, /*boolean?*/onlyCopyNew) { + //summary: copies srcFileName to destFileName. If onlyCopyNew is set, it only copies the file if + //srcFileName is newer than destFileName. Returns a boolean indicating if the copy occurred. + var destFile = xpfile(destFileName), + srcFile = xpfile(srcFileName); + + //logger.trace("Src filename: " + srcFileName); + //logger.trace("Dest filename: " + destFileName); + + //If onlyCopyNew is true, then compare dates and only copy if the src is newer + //than dest. + if (onlyCopyNew) { + if (destFile.exists() && destFile.lastModifiedTime >= srcFile.lastModifiedTime) { + return false; //Boolean + } + } + + srcFile.copyTo(destFile.parent, destFile.leafName); + + return true; //Boolean + }, + + /** + * Renames a file. May fail if "to" already exists or is on another drive. + */ + renameFile: function (from, to) { + var toFile = xpfile(to); + return xpfile(from).moveTo(toFile.parent, toFile.leafName); + }, + + readFile: xpcUtil.readFile, + + readFileAsync: function (path, encoding) { + var d = prim(); + try { + d.resolve(file.readFile(path, encoding)); + } catch (e) { + d.reject(e); + } + return d.promise; + }, + + saveUtf8File: function (/*String*/fileName, /*String*/fileContents) { + //summary: saves a file using UTF-8 encoding. + file.saveFile(fileName, fileContents, "utf-8"); + }, + + saveFile: function (/*String*/fileName, /*String*/fileContents, /*String?*/encoding) { + var outStream, convertStream, + fileObj = xpfile(fileName); + + mkFullDir(fileObj.parent); + + try { + outStream = Cc['@mozilla.org/network/file-output-stream;1'] + .createInstance(Ci.nsIFileOutputStream); + //438 is decimal for 0777 + outStream.init(fileObj, 0x02 | 0x08 | 0x20, 511, 0); + + convertStream = Cc['@mozilla.org/intl/converter-output-stream;1'] + .createInstance(Ci.nsIConverterOutputStream); + + convertStream.init(outStream, encoding, 0, 0); + convertStream.writeString(fileContents); + } catch (e) { + throw new Error((fileObj && fileObj.path || '') + ': ' + e); + } finally { + if (convertStream) { + convertStream.close(); + } + if (outStream) { + outStream.close(); + } + } + }, + + deleteFile: function (/*String*/fileName) { + //summary: deletes a file or directory if it exists. + var fileObj = xpfile(fileName); + if (fileObj.exists()) { + fileObj.remove(true); + } + }, + + /** + * Deletes any empty directories under the given directory. + * The startDirIsJavaObject is private to this implementation's + * recursion needs. + */ + deleteEmptyDirs: function (startDir, startDirIsObject) { + var topDir = startDir, + dirFileArray, fileObj; + + if (!startDirIsObject) { + topDir = xpfile(startDir); + } + + if (topDir.exists()) { + dirFileArray = topDir.directoryEntries; + while (dirFileArray.hasMoreElements()) { + fileObj = dirFileArray.getNext().QueryInterface(Ci.nsILocalFile); + + if (fileObj.isDirectory()) { + file.deleteEmptyDirs(fileObj, true); + } + } + + //If the directory is empty now, delete it. + dirFileArray = topDir.directoryEntries; + if (!dirFileArray.hasMoreElements()) { + file.deleteFile(topDir.path); + } + } + } + }; + + return file; +}); + +} + +if(env === 'browser') { +/*global process */ +define('browser/quit', function () { + 'use strict'; + return function (code) { + }; +}); +} + +if(env === 'node') { +/*global process */ +define('node/quit', function () { + 'use strict'; + return function (code) { + var draining = 0; + var exit = function () { + if (draining === 0) { + process.exit(code); + } else { + draining -= 1; + } + }; + if (process.stdout.bufferSize) { + draining += 1; + process.stdout.once('drain', exit); + } + if (process.stderr.bufferSize) { + draining += 1; + process.stderr.once('drain', exit); + } + exit(); + }; +}); + +} + +if(env === 'rhino') { +/*global quit */ +define('rhino/quit', function () { + 'use strict'; + return function (code) { + return quit(code); + }; +}); + +} + +if(env === 'xpconnect') { +/*global quit */ +define('xpconnect/quit', function () { + 'use strict'; + return function (code) { + return quit(code); + }; +}); + +} + +if(env === 'browser') { +/** + * @license RequireJS Copyright (c) 2010-2014, The Dojo Foundation All Rights Reserved. + * Available via the MIT or new BSD license. + * see: http://github.com/jrburke/requirejs for details + */ + +/*jslint strict: false */ +/*global define: false, console: false */ + +define('browser/print', function () { + function print(msg) { + console.log(msg); + } + + return print; +}); + +} + +if(env === 'node') { +/** + * @license RequireJS Copyright (c) 2010-2014, The Dojo Foundation All Rights Reserved. + * Available via the MIT or new BSD license. + * see: http://github.com/jrburke/requirejs for details + */ + +/*jslint strict: false */ +/*global define: false, console: false */ + +define('node/print', function () { + function print(msg) { + console.log(msg); + } + + return print; +}); + +} + +if(env === 'rhino') { +/** + * @license RequireJS Copyright (c) 2010-2014, The Dojo Foundation All Rights Reserved. + * Available via the MIT or new BSD license. + * see: http://github.com/jrburke/requirejs for details + */ + +/*jslint strict: false */ +/*global define: false, print: false */ + +define('rhino/print', function () { + return print; +}); + +} + +if(env === 'xpconnect') { +/** + * @license RequireJS Copyright (c) 2013-2014, The Dojo Foundation All Rights Reserved. + * Available via the MIT or new BSD license. + * see: http://github.com/jrburke/requirejs for details + */ + +/*jslint strict: false */ +/*global define: false, print: false */ + +define('xpconnect/print', function () { + return print; +}); + +} +/** + * @license RequireJS Copyright (c) 2010-2014, The Dojo Foundation All Rights Reserved. + * Available via the MIT or new BSD license. + * see: http://github.com/jrburke/requirejs for details + */ + +/*jslint nomen: false, strict: false */ +/*global define: false */ + +define('logger', ['env!env/print'], function (print) { + var logger = { + TRACE: 0, + INFO: 1, + WARN: 2, + ERROR: 3, + SILENT: 4, + level: 0, + logPrefix: "", + + logLevel: function( level ) { + this.level = level; + }, + + trace: function (message) { + if (this.level <= this.TRACE) { + this._print(message); + } + }, + + info: function (message) { + if (this.level <= this.INFO) { + this._print(message); + } + }, + + warn: function (message) { + if (this.level <= this.WARN) { + this._print(message); + } + }, + + error: function (message) { + if (this.level <= this.ERROR) { + this._print(message); + } + }, + + _print: function (message) { + this._sysPrint((this.logPrefix ? (this.logPrefix + " ") : "") + message); + }, + + _sysPrint: function (message) { + print(message); + } + }; + + return logger; +}); +//Just a blank file to use when building the optimizer with the optimizer, +//so that the build does not attempt to inline some env modules, +//like Node's fs and path. + +/* + Copyright (C) 2013 Ariya Hidayat + Copyright (C) 2013 Thaddee Tyl + Copyright (C) 2013 Mathias Bynens + Copyright (C) 2012 Ariya Hidayat + Copyright (C) 2012 Mathias Bynens + Copyright (C) 2012 Joost-Wim Boekesteijn + Copyright (C) 2012 Kris Kowal + Copyright (C) 2012 Yusuke Suzuki + Copyright (C) 2012 Arpad Borsos + Copyright (C) 2011 Ariya Hidayat + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + ARE DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY + DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND + ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF + THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +(function (root, factory) { + 'use strict'; + + // Universal Module Definition (UMD) to support AMD, CommonJS/Node.js, + // Rhino, and plain browser loading. + + /* istanbul ignore next */ + if (typeof define === 'function' && define.amd) { + define('esprima', ['exports'], factory); + } else if (typeof exports !== 'undefined') { + factory(exports); + } else { + factory((root.esprima = {})); + } +}(this, function (exports) { + 'use strict'; + + var Token, + TokenName, + FnExprTokens, + Syntax, + PlaceHolders, + Messages, + Regex, + source, + strict, + index, + lineNumber, + lineStart, + hasLineTerminator, + lastIndex, + lastLineNumber, + lastLineStart, + startIndex, + startLineNumber, + startLineStart, + scanning, + length, + lookahead, + state, + extra; + + Token = { + BooleanLiteral: 1, + EOF: 2, + Identifier: 3, + Keyword: 4, + NullLiteral: 5, + NumericLiteral: 6, + Punctuator: 7, + StringLiteral: 8, + RegularExpression: 9 + }; + + TokenName = {}; + TokenName[Token.BooleanLiteral] = 'Boolean'; + TokenName[Token.EOF] = ''; + TokenName[Token.Identifier] = 'Identifier'; + TokenName[Token.Keyword] = 'Keyword'; + TokenName[Token.NullLiteral] = 'Null'; + TokenName[Token.NumericLiteral] = 'Numeric'; + TokenName[Token.Punctuator] = 'Punctuator'; + TokenName[Token.StringLiteral] = 'String'; + TokenName[Token.RegularExpression] = 'RegularExpression'; + + // A function following one of those tokens is an expression. + FnExprTokens = ['(', '{', '[', 'in', 'typeof', 'instanceof', 'new', + 'return', 'case', 'delete', 'throw', 'void', + // assignment operators + '=', '+=', '-=', '*=', '/=', '%=', '<<=', '>>=', '>>>=', + '&=', '|=', '^=', ',', + // binary/unary operators + '+', '-', '*', '/', '%', '++', '--', '<<', '>>', '>>>', '&', + '|', '^', '!', '~', '&&', '||', '?', ':', '===', '==', '>=', + '<=', '<', '>', '!=', '!==']; + + Syntax = { + AssignmentExpression: 'AssignmentExpression', + ArrayExpression: 'ArrayExpression', + ArrowFunctionExpression: 'ArrowFunctionExpression', + BlockStatement: 'BlockStatement', + BinaryExpression: 'BinaryExpression', + BreakStatement: 'BreakStatement', + CallExpression: 'CallExpression', + CatchClause: 'CatchClause', + ClassBody: 'ClassBody', + ClassDeclaration: 'ClassDeclaration', + ClassExpression: 'ClassExpression', + ConditionalExpression: 'ConditionalExpression', + ContinueStatement: 'ContinueStatement', + DoWhileStatement: 'DoWhileStatement', + DebuggerStatement: 'DebuggerStatement', + EmptyStatement: 'EmptyStatement', + ExpressionStatement: 'ExpressionStatement', + ForStatement: 'ForStatement', + ForInStatement: 'ForInStatement', + FunctionDeclaration: 'FunctionDeclaration', + FunctionExpression: 'FunctionExpression', + Identifier: 'Identifier', + IfStatement: 'IfStatement', + Literal: 'Literal', + LabeledStatement: 'LabeledStatement', + LogicalExpression: 'LogicalExpression', + MemberExpression: 'MemberExpression', + MethodDefinition: 'MethodDefinition', + NewExpression: 'NewExpression', + ObjectExpression: 'ObjectExpression', + Program: 'Program', + Property: 'Property', + RestElement: 'RestElement', + ReturnStatement: 'ReturnStatement', + SequenceExpression: 'SequenceExpression', + SwitchStatement: 'SwitchStatement', + SwitchCase: 'SwitchCase', + ThisExpression: 'ThisExpression', + ThrowStatement: 'ThrowStatement', + TryStatement: 'TryStatement', + UnaryExpression: 'UnaryExpression', + UpdateExpression: 'UpdateExpression', + VariableDeclaration: 'VariableDeclaration', + VariableDeclarator: 'VariableDeclarator', + WhileStatement: 'WhileStatement', + WithStatement: 'WithStatement' + }; + + PlaceHolders = { + ArrowParameterPlaceHolder: 'ArrowParameterPlaceHolder' + }; + + // Error messages should be identical to V8. + Messages = { + UnexpectedToken: 'Unexpected token %0', + UnexpectedNumber: 'Unexpected number', + UnexpectedString: 'Unexpected string', + UnexpectedIdentifier: 'Unexpected identifier', + UnexpectedReserved: 'Unexpected reserved word', + UnexpectedEOS: 'Unexpected end of input', + NewlineAfterThrow: 'Illegal newline after throw', + InvalidRegExp: 'Invalid regular expression', + UnterminatedRegExp: 'Invalid regular expression: missing /', + InvalidLHSInAssignment: 'Invalid left-hand side in assignment', + InvalidLHSInForIn: 'Invalid left-hand side in for-in', + MultipleDefaultsInSwitch: 'More than one default clause in switch statement', + NoCatchOrFinally: 'Missing catch or finally after try', + UnknownLabel: 'Undefined label \'%0\'', + Redeclaration: '%0 \'%1\' has already been declared', + IllegalContinue: 'Illegal continue statement', + IllegalBreak: 'Illegal break statement', + IllegalReturn: 'Illegal return statement', + StrictModeWith: 'Strict mode code may not include a with statement', + StrictCatchVariable: 'Catch variable may not be eval or arguments in strict mode', + StrictVarName: 'Variable name may not be eval or arguments in strict mode', + StrictParamName: 'Parameter name eval or arguments is not allowed in strict mode', + StrictParamDupe: 'Strict mode function may not have duplicate parameter names', + StrictFunctionName: 'Function name may not be eval or arguments in strict mode', + StrictOctalLiteral: 'Octal literals are not allowed in strict mode.', + StrictDelete: 'Delete of an unqualified identifier in strict mode.', + StrictLHSAssignment: 'Assignment to eval or arguments is not allowed in strict mode', + StrictLHSPostfix: 'Postfix increment/decrement may not have eval or arguments operand in strict mode', + StrictLHSPrefix: 'Prefix increment/decrement may not have eval or arguments operand in strict mode', + StrictReservedWord: 'Use of future reserved word in strict mode', + ParameterAfterRestParameter: 'Rest parameter must be last formal parameter', + DefaultRestParameter: 'Unexpected token =', + ObjectPatternAsRestParameter: 'Unexpected token {', + DuplicateProtoProperty: 'Duplicate __proto__ fields are not allowed in object literals', + ConstructorSpecialMethod: 'Class constructor may not be an accessor', + DuplicateConstructor: 'A class may only have one constructor', + StaticPrototype: 'Classes may not have static property named prototype' + }; + + // See also tools/generate-unicode-regex.py. + Regex = { + NonAsciiIdentifierStart: new RegExp('[\xAA\xB5\xBA\xC0-\xD6\xD8-\xF6\xF8-\u02C1\u02C6-\u02D1\u02E0-\u02E4\u02EC\u02EE\u0370-\u0374\u0376\u0377\u037A-\u037D\u037F\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03F5\u03F7-\u0481\u048A-\u052F\u0531-\u0556\u0559\u0561-\u0587\u05D0-\u05EA\u05F0-\u05F2\u0620-\u064A\u066E\u066F\u0671-\u06D3\u06D5\u06E5\u06E6\u06EE\u06EF\u06FA-\u06FC\u06FF\u0710\u0712-\u072F\u074D-\u07A5\u07B1\u07CA-\u07EA\u07F4\u07F5\u07FA\u0800-\u0815\u081A\u0824\u0828\u0840-\u0858\u08A0-\u08B2\u0904-\u0939\u093D\u0950\u0958-\u0961\u0971-\u0980\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2\u09B6-\u09B9\u09BD\u09CE\u09DC\u09DD\u09DF-\u09E1\u09F0\u09F1\u0A05-\u0A0A\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39\u0A59-\u0A5C\u0A5E\u0A72-\u0A74\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABD\u0AD0\u0AE0\u0AE1\u0B05-\u0B0C\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3D\u0B5C\u0B5D\u0B5F-\u0B61\u0B71\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BD0\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C39\u0C3D\u0C58\u0C59\u0C60\u0C61\u0C85-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3\u0CB5-\u0CB9\u0CBD\u0CDE\u0CE0\u0CE1\u0CF1\u0CF2\u0D05-\u0D0C\u0D0E-\u0D10\u0D12-\u0D3A\u0D3D\u0D4E\u0D60\u0D61\u0D7A-\u0D7F\u0D85-\u0D96\u0D9A-\u0DB1\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0E01-\u0E30\u0E32\u0E33\u0E40-\u0E46\u0E81\u0E82\u0E84\u0E87\u0E88\u0E8A\u0E8D\u0E94-\u0E97\u0E99-\u0E9F\u0EA1-\u0EA3\u0EA5\u0EA7\u0EAA\u0EAB\u0EAD-\u0EB0\u0EB2\u0EB3\u0EBD\u0EC0-\u0EC4\u0EC6\u0EDC-\u0EDF\u0F00\u0F40-\u0F47\u0F49-\u0F6C\u0F88-\u0F8C\u1000-\u102A\u103F\u1050-\u1055\u105A-\u105D\u1061\u1065\u1066\u106E-\u1070\u1075-\u1081\u108E\u10A0-\u10C5\u10C7\u10CD\u10D0-\u10FA\u10FC-\u1248\u124A-\u124D\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310\u1312-\u1315\u1318-\u135A\u1380-\u138F\u13A0-\u13F4\u1401-\u166C\u166F-\u167F\u1681-\u169A\u16A0-\u16EA\u16EE-\u16F8\u1700-\u170C\u170E-\u1711\u1720-\u1731\u1740-\u1751\u1760-\u176C\u176E-\u1770\u1780-\u17B3\u17D7\u17DC\u1820-\u1877\u1880-\u18A8\u18AA\u18B0-\u18F5\u1900-\u191E\u1950-\u196D\u1970-\u1974\u1980-\u19AB\u19C1-\u19C7\u1A00-\u1A16\u1A20-\u1A54\u1AA7\u1B05-\u1B33\u1B45-\u1B4B\u1B83-\u1BA0\u1BAE\u1BAF\u1BBA-\u1BE5\u1C00-\u1C23\u1C4D-\u1C4F\u1C5A-\u1C7D\u1CE9-\u1CEC\u1CEE-\u1CF1\u1CF5\u1CF6\u1D00-\u1DBF\u1E00-\u1F15\u1F18-\u1F1D\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u2071\u207F\u2090-\u209C\u2102\u2107\u210A-\u2113\u2115\u2119-\u211D\u2124\u2126\u2128\u212A-\u212D\u212F-\u2139\u213C-\u213F\u2145-\u2149\u214E\u2160-\u2188\u2C00-\u2C2E\u2C30-\u2C5E\u2C60-\u2CE4\u2CEB-\u2CEE\u2CF2\u2CF3\u2D00-\u2D25\u2D27\u2D2D\u2D30-\u2D67\u2D6F\u2D80-\u2D96\u2DA0-\u2DA6\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE\u2DD0-\u2DD6\u2DD8-\u2DDE\u2E2F\u3005-\u3007\u3021-\u3029\u3031-\u3035\u3038-\u303C\u3041-\u3096\u309D-\u309F\u30A1-\u30FA\u30FC-\u30FF\u3105-\u312D\u3131-\u318E\u31A0-\u31BA\u31F0-\u31FF\u3400-\u4DB5\u4E00-\u9FCC\uA000-\uA48C\uA4D0-\uA4FD\uA500-\uA60C\uA610-\uA61F\uA62A\uA62B\uA640-\uA66E\uA67F-\uA69D\uA6A0-\uA6EF\uA717-\uA71F\uA722-\uA788\uA78B-\uA78E\uA790-\uA7AD\uA7B0\uA7B1\uA7F7-\uA801\uA803-\uA805\uA807-\uA80A\uA80C-\uA822\uA840-\uA873\uA882-\uA8B3\uA8F2-\uA8F7\uA8FB\uA90A-\uA925\uA930-\uA946\uA960-\uA97C\uA984-\uA9B2\uA9CF\uA9E0-\uA9E4\uA9E6-\uA9EF\uA9FA-\uA9FE\uAA00-\uAA28\uAA40-\uAA42\uAA44-\uAA4B\uAA60-\uAA76\uAA7A\uAA7E-\uAAAF\uAAB1\uAAB5\uAAB6\uAAB9-\uAABD\uAAC0\uAAC2\uAADB-\uAADD\uAAE0-\uAAEA\uAAF2-\uAAF4\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E\uAB30-\uAB5A\uAB5C-\uAB5F\uAB64\uAB65\uABC0-\uABE2\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uF900-\uFA6D\uFA70-\uFAD9\uFB00-\uFB06\uFB13-\uFB17\uFB1D\uFB1F-\uFB28\uFB2A-\uFB36\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBB1\uFBD3-\uFD3D\uFD50-\uFD8F\uFD92-\uFDC7\uFDF0-\uFDFB\uFE70-\uFE74\uFE76-\uFEFC\uFF21-\uFF3A\uFF41-\uFF5A\uFF66-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF\uFFD2-\uFFD7\uFFDA-\uFFDC]'), + NonAsciiIdentifierPart: new RegExp('[\xAA\xB5\xBA\xC0-\xD6\xD8-\xF6\xF8-\u02C1\u02C6-\u02D1\u02E0-\u02E4\u02EC\u02EE\u0300-\u0374\u0376\u0377\u037A-\u037D\u037F\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03F5\u03F7-\u0481\u0483-\u0487\u048A-\u052F\u0531-\u0556\u0559\u0561-\u0587\u0591-\u05BD\u05BF\u05C1\u05C2\u05C4\u05C5\u05C7\u05D0-\u05EA\u05F0-\u05F2\u0610-\u061A\u0620-\u0669\u066E-\u06D3\u06D5-\u06DC\u06DF-\u06E8\u06EA-\u06FC\u06FF\u0710-\u074A\u074D-\u07B1\u07C0-\u07F5\u07FA\u0800-\u082D\u0840-\u085B\u08A0-\u08B2\u08E4-\u0963\u0966-\u096F\u0971-\u0983\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2\u09B6-\u09B9\u09BC-\u09C4\u09C7\u09C8\u09CB-\u09CE\u09D7\u09DC\u09DD\u09DF-\u09E3\u09E6-\u09F1\u0A01-\u0A03\u0A05-\u0A0A\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39\u0A3C\u0A3E-\u0A42\u0A47\u0A48\u0A4B-\u0A4D\u0A51\u0A59-\u0A5C\u0A5E\u0A66-\u0A75\u0A81-\u0A83\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABC-\u0AC5\u0AC7-\u0AC9\u0ACB-\u0ACD\u0AD0\u0AE0-\u0AE3\u0AE6-\u0AEF\u0B01-\u0B03\u0B05-\u0B0C\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3C-\u0B44\u0B47\u0B48\u0B4B-\u0B4D\u0B56\u0B57\u0B5C\u0B5D\u0B5F-\u0B63\u0B66-\u0B6F\u0B71\u0B82\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BBE-\u0BC2\u0BC6-\u0BC8\u0BCA-\u0BCD\u0BD0\u0BD7\u0BE6-\u0BEF\u0C00-\u0C03\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C39\u0C3D-\u0C44\u0C46-\u0C48\u0C4A-\u0C4D\u0C55\u0C56\u0C58\u0C59\u0C60-\u0C63\u0C66-\u0C6F\u0C81-\u0C83\u0C85-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3\u0CB5-\u0CB9\u0CBC-\u0CC4\u0CC6-\u0CC8\u0CCA-\u0CCD\u0CD5\u0CD6\u0CDE\u0CE0-\u0CE3\u0CE6-\u0CEF\u0CF1\u0CF2\u0D01-\u0D03\u0D05-\u0D0C\u0D0E-\u0D10\u0D12-\u0D3A\u0D3D-\u0D44\u0D46-\u0D48\u0D4A-\u0D4E\u0D57\u0D60-\u0D63\u0D66-\u0D6F\u0D7A-\u0D7F\u0D82\u0D83\u0D85-\u0D96\u0D9A-\u0DB1\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0DCA\u0DCF-\u0DD4\u0DD6\u0DD8-\u0DDF\u0DE6-\u0DEF\u0DF2\u0DF3\u0E01-\u0E3A\u0E40-\u0E4E\u0E50-\u0E59\u0E81\u0E82\u0E84\u0E87\u0E88\u0E8A\u0E8D\u0E94-\u0E97\u0E99-\u0E9F\u0EA1-\u0EA3\u0EA5\u0EA7\u0EAA\u0EAB\u0EAD-\u0EB9\u0EBB-\u0EBD\u0EC0-\u0EC4\u0EC6\u0EC8-\u0ECD\u0ED0-\u0ED9\u0EDC-\u0EDF\u0F00\u0F18\u0F19\u0F20-\u0F29\u0F35\u0F37\u0F39\u0F3E-\u0F47\u0F49-\u0F6C\u0F71-\u0F84\u0F86-\u0F97\u0F99-\u0FBC\u0FC6\u1000-\u1049\u1050-\u109D\u10A0-\u10C5\u10C7\u10CD\u10D0-\u10FA\u10FC-\u1248\u124A-\u124D\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310\u1312-\u1315\u1318-\u135A\u135D-\u135F\u1380-\u138F\u13A0-\u13F4\u1401-\u166C\u166F-\u167F\u1681-\u169A\u16A0-\u16EA\u16EE-\u16F8\u1700-\u170C\u170E-\u1714\u1720-\u1734\u1740-\u1753\u1760-\u176C\u176E-\u1770\u1772\u1773\u1780-\u17D3\u17D7\u17DC\u17DD\u17E0-\u17E9\u180B-\u180D\u1810-\u1819\u1820-\u1877\u1880-\u18AA\u18B0-\u18F5\u1900-\u191E\u1920-\u192B\u1930-\u193B\u1946-\u196D\u1970-\u1974\u1980-\u19AB\u19B0-\u19C9\u19D0-\u19D9\u1A00-\u1A1B\u1A20-\u1A5E\u1A60-\u1A7C\u1A7F-\u1A89\u1A90-\u1A99\u1AA7\u1AB0-\u1ABD\u1B00-\u1B4B\u1B50-\u1B59\u1B6B-\u1B73\u1B80-\u1BF3\u1C00-\u1C37\u1C40-\u1C49\u1C4D-\u1C7D\u1CD0-\u1CD2\u1CD4-\u1CF6\u1CF8\u1CF9\u1D00-\u1DF5\u1DFC-\u1F15\u1F18-\u1F1D\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u200C\u200D\u203F\u2040\u2054\u2071\u207F\u2090-\u209C\u20D0-\u20DC\u20E1\u20E5-\u20F0\u2102\u2107\u210A-\u2113\u2115\u2119-\u211D\u2124\u2126\u2128\u212A-\u212D\u212F-\u2139\u213C-\u213F\u2145-\u2149\u214E\u2160-\u2188\u2C00-\u2C2E\u2C30-\u2C5E\u2C60-\u2CE4\u2CEB-\u2CF3\u2D00-\u2D25\u2D27\u2D2D\u2D30-\u2D67\u2D6F\u2D7F-\u2D96\u2DA0-\u2DA6\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE\u2DD0-\u2DD6\u2DD8-\u2DDE\u2DE0-\u2DFF\u2E2F\u3005-\u3007\u3021-\u302F\u3031-\u3035\u3038-\u303C\u3041-\u3096\u3099\u309A\u309D-\u309F\u30A1-\u30FA\u30FC-\u30FF\u3105-\u312D\u3131-\u318E\u31A0-\u31BA\u31F0-\u31FF\u3400-\u4DB5\u4E00-\u9FCC\uA000-\uA48C\uA4D0-\uA4FD\uA500-\uA60C\uA610-\uA62B\uA640-\uA66F\uA674-\uA67D\uA67F-\uA69D\uA69F-\uA6F1\uA717-\uA71F\uA722-\uA788\uA78B-\uA78E\uA790-\uA7AD\uA7B0\uA7B1\uA7F7-\uA827\uA840-\uA873\uA880-\uA8C4\uA8D0-\uA8D9\uA8E0-\uA8F7\uA8FB\uA900-\uA92D\uA930-\uA953\uA960-\uA97C\uA980-\uA9C0\uA9CF-\uA9D9\uA9E0-\uA9FE\uAA00-\uAA36\uAA40-\uAA4D\uAA50-\uAA59\uAA60-\uAA76\uAA7A-\uAAC2\uAADB-\uAADD\uAAE0-\uAAEF\uAAF2-\uAAF6\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E\uAB30-\uAB5A\uAB5C-\uAB5F\uAB64\uAB65\uABC0-\uABEA\uABEC\uABED\uABF0-\uABF9\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uF900-\uFA6D\uFA70-\uFAD9\uFB00-\uFB06\uFB13-\uFB17\uFB1D-\uFB28\uFB2A-\uFB36\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBB1\uFBD3-\uFD3D\uFD50-\uFD8F\uFD92-\uFDC7\uFDF0-\uFDFB\uFE00-\uFE0F\uFE20-\uFE2D\uFE33\uFE34\uFE4D-\uFE4F\uFE70-\uFE74\uFE76-\uFEFC\uFF10-\uFF19\uFF21-\uFF3A\uFF3F\uFF41-\uFF5A\uFF66-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF\uFFD2-\uFFD7\uFFDA-\uFFDC]') + }; + + // Ensure the condition is true, otherwise throw an error. + // This is only to have a better contract semantic, i.e. another safety net + // to catch a logic error. The condition shall be fulfilled in normal case. + // Do NOT use this to enforce a certain condition on any user input. + + function assert(condition, message) { + /* istanbul ignore if */ + if (!condition) { + throw new Error('ASSERT: ' + message); + } + } + + function isDecimalDigit(ch) { + return (ch >= 0x30 && ch <= 0x39); // 0..9 + } + + function isHexDigit(ch) { + return '0123456789abcdefABCDEF'.indexOf(ch) >= 0; + } + + function isOctalDigit(ch) { + return '01234567'.indexOf(ch) >= 0; + } + + + // 7.2 White Space + + function isWhiteSpace(ch) { + return (ch === 0x20) || (ch === 0x09) || (ch === 0x0B) || (ch === 0x0C) || (ch === 0xA0) || + (ch >= 0x1680 && [0x1680, 0x180E, 0x2000, 0x2001, 0x2002, 0x2003, 0x2004, 0x2005, 0x2006, 0x2007, 0x2008, 0x2009, 0x200A, 0x202F, 0x205F, 0x3000, 0xFEFF].indexOf(ch) >= 0); + } + + // 7.3 Line Terminators + + function isLineTerminator(ch) { + return (ch === 0x0A) || (ch === 0x0D) || (ch === 0x2028) || (ch === 0x2029); + } + + // 7.6 Identifier Names and Identifiers + + function isIdentifierStart(ch) { + return (ch === 0x24) || (ch === 0x5F) || // $ (dollar) and _ (underscore) + (ch >= 0x41 && ch <= 0x5A) || // A..Z + (ch >= 0x61 && ch <= 0x7A) || // a..z + (ch === 0x5C) || // \ (backslash) + ((ch >= 0x80) && Regex.NonAsciiIdentifierStart.test(String.fromCharCode(ch))); + } + + function isIdentifierPart(ch) { + return (ch === 0x24) || (ch === 0x5F) || // $ (dollar) and _ (underscore) + (ch >= 0x41 && ch <= 0x5A) || // A..Z + (ch >= 0x61 && ch <= 0x7A) || // a..z + (ch >= 0x30 && ch <= 0x39) || // 0..9 + (ch === 0x5C) || // \ (backslash) + ((ch >= 0x80) && Regex.NonAsciiIdentifierPart.test(String.fromCharCode(ch))); + } + + // 7.6.1.2 Future Reserved Words + + function isFutureReservedWord(id) { + switch (id) { + case 'enum': + case 'export': + case 'import': + case 'super': + return true; + default: + return false; + } + } + + // 11.6.2.2 Future Reserved Words + + function isStrictModeReservedWord(id) { + switch (id) { + case 'implements': + case 'interface': + case 'package': + case 'private': + case 'protected': + case 'public': + case 'static': + case 'yield': + case 'let': + return true; + default: + return false; + } + } + + function isRestrictedWord(id) { + return id === 'eval' || id === 'arguments'; + } + + // 7.6.1.1 Keywords + + function isKeyword(id) { + if (strict && isStrictModeReservedWord(id)) { + return true; + } + + // 'const' is specialized as Keyword in V8. + // 'yield' and 'let' are for compatibility with SpiderMonkey and ES.next. + // Some others are from future reserved words. + + switch (id.length) { + case 2: + return (id === 'if') || (id === 'in') || (id === 'do'); + case 3: + return (id === 'var') || (id === 'for') || (id === 'new') || + (id === 'try') || (id === 'let'); + case 4: + return (id === 'this') || (id === 'else') || (id === 'case') || + (id === 'void') || (id === 'with') || (id === 'enum'); + case 5: + return (id === 'while') || (id === 'break') || (id === 'catch') || + (id === 'throw') || (id === 'const') || (id === 'yield') || + (id === 'class') || (id === 'super'); + case 6: + return (id === 'return') || (id === 'typeof') || (id === 'delete') || + (id === 'switch') || (id === 'export') || (id === 'import'); + case 7: + return (id === 'default') || (id === 'finally') || (id === 'extends'); + case 8: + return (id === 'function') || (id === 'continue') || (id === 'debugger'); + case 10: + return (id === 'instanceof'); + default: + return false; + } + } + + // 7.4 Comments + + function addComment(type, value, start, end, loc) { + var comment; + + assert(typeof start === 'number', 'Comment must have valid position'); + + state.lastCommentStart = start; + + comment = { + type: type, + value: value + }; + if (extra.range) { + comment.range = [start, end]; + } + if (extra.loc) { + comment.loc = loc; + } + extra.comments.push(comment); + if (extra.attachComment) { + extra.leadingComments.push(comment); + extra.trailingComments.push(comment); + } + } + + function skipSingleLineComment(offset) { + var start, loc, ch, comment; + + start = index - offset; + loc = { + start: { + line: lineNumber, + column: index - lineStart - offset + } + }; + + while (index < length) { + ch = source.charCodeAt(index); + ++index; + if (isLineTerminator(ch)) { + hasLineTerminator = true; + if (extra.comments) { + comment = source.slice(start + offset, index - 1); + loc.end = { + line: lineNumber, + column: index - lineStart - 1 + }; + addComment('Line', comment, start, index - 1, loc); + } + if (ch === 13 && source.charCodeAt(index) === 10) { + ++index; + } + ++lineNumber; + lineStart = index; + return; + } + } + + if (extra.comments) { + comment = source.slice(start + offset, index); + loc.end = { + line: lineNumber, + column: index - lineStart + }; + addComment('Line', comment, start, index, loc); + } + } + + function skipMultiLineComment() { + var start, loc, ch, comment; + + if (extra.comments) { + start = index - 2; + loc = { + start: { + line: lineNumber, + column: index - lineStart - 2 + } + }; + } + + while (index < length) { + ch = source.charCodeAt(index); + if (isLineTerminator(ch)) { + if (ch === 0x0D && source.charCodeAt(index + 1) === 0x0A) { + ++index; + } + hasLineTerminator = true; + ++lineNumber; + ++index; + lineStart = index; + } else if (ch === 0x2A) { + // Block comment ends with '*/'. + if (source.charCodeAt(index + 1) === 0x2F) { + ++index; + ++index; + if (extra.comments) { + comment = source.slice(start + 2, index - 2); + loc.end = { + line: lineNumber, + column: index - lineStart + }; + addComment('Block', comment, start, index, loc); + } + return; + } + ++index; + } else { + ++index; + } + } + + if (extra.errors && index >= length) { + //ran off the end of the file - the whole thing is a comment + if (extra.comments) { + loc.end = { + line: lineNumber, + column: index - lineStart + }; + comment = source.slice(start + 2, index); + addComment('Block', comment, start, index, loc); + } + tolerateUnexpectedToken(); + } else { + throwUnexpectedToken(); + } + } + + function skipComment() { + var ch, start; + hasLineTerminator = false; + + start = (index === 0); + while (index < length) { + ch = source.charCodeAt(index); + + if (isWhiteSpace(ch)) { + ++index; + } else if (isLineTerminator(ch)) { + hasLineTerminator = true; + ++index; + if (ch === 0x0D && source.charCodeAt(index) === 0x0A) { + ++index; + } + ++lineNumber; + lineStart = index; + start = true; + } else if (ch === 0x2F) { // U+002F is '/' + ch = source.charCodeAt(index + 1); + if (ch === 0x2F) { + ++index; + ++index; + skipSingleLineComment(2); + start = true; + } else if (ch === 0x2A) { // U+002A is '*' + ++index; + ++index; + skipMultiLineComment(); + } else { + break; + } + } else if (start && ch === 0x2D) { // U+002D is '-' + // U+003E is '>' + if ((source.charCodeAt(index + 1) === 0x2D) && (source.charCodeAt(index + 2) === 0x3E)) { + // '-->' is a single-line comment + index += 3; + skipSingleLineComment(3); + } else { + break; + } + } else if (ch === 0x3C) { // U+003C is '<' + if (source.slice(index + 1, index + 4) === '!--') { + ++index; // `<` + ++index; // `!` + ++index; // `-` + ++index; // `-` + skipSingleLineComment(4); + } else { + break; + } + } else { + break; + } + } + } + + function scanHexEscape(prefix) { + var i, len, ch, code = 0; + + len = (prefix === 'u') ? 4 : 2; + for (i = 0; i < len; ++i) { + if (index < length && isHexDigit(source[index])) { + ch = source[index++]; + code = code * 16 + '0123456789abcdef'.indexOf(ch.toLowerCase()); + } else { + return ''; + } + } + return String.fromCharCode(code); + } + + function scanUnicodeCodePointEscape() { + var ch, code, cu1, cu2; + + ch = source[index]; + code = 0; + + // At least, one hex digit is required. + if (ch === '}') { + throwUnexpectedToken(); + } + + while (index < length) { + ch = source[index++]; + if (!isHexDigit(ch)) { + break; + } + code = code * 16 + '0123456789abcdef'.indexOf(ch.toLowerCase()); + } + + if (code > 0x10FFFF || ch !== '}') { + throwUnexpectedToken(); + } + + // UTF-16 Encoding + if (code <= 0xFFFF) { + return String.fromCharCode(code); + } + cu1 = ((code - 0x10000) >> 10) + 0xD800; + cu2 = ((code - 0x10000) & 1023) + 0xDC00; + return String.fromCharCode(cu1, cu2); + } + + function getEscapedIdentifier() { + var ch, id; + + ch = source.charCodeAt(index++); + id = String.fromCharCode(ch); + + // '\u' (U+005C, U+0075) denotes an escaped character. + if (ch === 0x5C) { + if (source.charCodeAt(index) !== 0x75) { + throwUnexpectedToken(); + } + ++index; + ch = scanHexEscape('u'); + if (!ch || ch === '\\' || !isIdentifierStart(ch.charCodeAt(0))) { + throwUnexpectedToken(); + } + id = ch; + } + + while (index < length) { + ch = source.charCodeAt(index); + if (!isIdentifierPart(ch)) { + break; + } + ++index; + id += String.fromCharCode(ch); + + // '\u' (U+005C, U+0075) denotes an escaped character. + if (ch === 0x5C) { + id = id.substr(0, id.length - 1); + if (source.charCodeAt(index) !== 0x75) { + throwUnexpectedToken(); + } + ++index; + ch = scanHexEscape('u'); + if (!ch || ch === '\\' || !isIdentifierPart(ch.charCodeAt(0))) { + throwUnexpectedToken(); + } + id += ch; + } + } + + return id; + } + + function getIdentifier() { + var start, ch; + + start = index++; + while (index < length) { + ch = source.charCodeAt(index); + if (ch === 0x5C) { + // Blackslash (U+005C) marks Unicode escape sequence. + index = start; + return getEscapedIdentifier(); + } + if (isIdentifierPart(ch)) { + ++index; + } else { + break; + } + } + + return source.slice(start, index); + } + + function scanIdentifier() { + var start, id, type; + + start = index; + + // Backslash (U+005C) starts an escaped character. + id = (source.charCodeAt(index) === 0x5C) ? getEscapedIdentifier() : getIdentifier(); + + // There is no keyword or literal with only one character. + // Thus, it must be an identifier. + if (id.length === 1) { + type = Token.Identifier; + } else if (isKeyword(id)) { + type = Token.Keyword; + } else if (id === 'null') { + type = Token.NullLiteral; + } else if (id === 'true' || id === 'false') { + type = Token.BooleanLiteral; + } else { + type = Token.Identifier; + } + + return { + type: type, + value: id, + lineNumber: lineNumber, + lineStart: lineStart, + start: start, + end: index + }; + } + + + // 7.7 Punctuators + + function scanPunctuator() { + var token, str; + + token = { + type: Token.Punctuator, + value: '', + lineNumber: lineNumber, + lineStart: lineStart, + start: index, + end: index + }; + + // Check for most common single-character punctuators. + str = source[index]; + switch (str) { + + case '(': + if (extra.tokenize) { + extra.openParenToken = extra.tokens.length; + } + ++index; + break; + + case '{': + if (extra.tokenize) { + extra.openCurlyToken = extra.tokens.length; + } + ++index; + break; + + case '.': + ++index; + if (source[index] === '.' && source[index + 1] === '.') { + // Spread operator: ... + index += 2; + str = '...'; + } + break; + + case ')': + case ';': + case ',': + case '}': + case '[': + case ']': + case ':': + case '?': + case '~': + ++index; + break; + + default: + // 4-character punctuator. + str = source.substr(index, 4); + if (str === '>>>=') { + index += 4; + } else { + + // 3-character punctuators. + str = str.substr(0, 3); + if (str === '===' || str === '!==' || str === '>>>' || + str === '<<=' || str === '>>=') { + index += 3; + } else { + + // 2-character punctuators. + str = str.substr(0, 2); + if (str === '&&' || str === '||' || str === '==' || str === '!=' || + str === '+=' || str === '-=' || str === '*=' || str === '/=' || + str === '++' || str === '--' || str === '<<' || str === '>>' || + str === '&=' || str === '|=' || str === '^=' || str === '%=' || + str === '<=' || str === '>=' || str === '=>') { + index += 2; + } else { + + // 1-character punctuators. + str = source[index]; + if ('<>=!+-*%&|^/'.indexOf(str) >= 0) { + ++index; + } + } + } + } + } + + if (index === token.start) { + throwUnexpectedToken(); + } + + token.end = index; + token.value = str; + return token; + } + + // 7.8.3 Numeric Literals + + function scanHexLiteral(start) { + var number = ''; + + while (index < length) { + if (!isHexDigit(source[index])) { + break; + } + number += source[index++]; + } + + if (number.length === 0) { + throwUnexpectedToken(); + } + + if (isIdentifierStart(source.charCodeAt(index))) { + throwUnexpectedToken(); + } + + return { + type: Token.NumericLiteral, + value: parseInt('0x' + number, 16), + lineNumber: lineNumber, + lineStart: lineStart, + start: start, + end: index + }; + } + + function scanBinaryLiteral(start) { + var ch, number; + + number = ''; + + while (index < length) { + ch = source[index]; + if (ch !== '0' && ch !== '1') { + break; + } + number += source[index++]; + } + + if (number.length === 0) { + // only 0b or 0B + throwUnexpectedToken(); + } + + if (index < length) { + ch = source.charCodeAt(index); + /* istanbul ignore else */ + if (isIdentifierStart(ch) || isDecimalDigit(ch)) { + throwUnexpectedToken(); + } + } + + return { + type: Token.NumericLiteral, + value: parseInt(number, 2), + lineNumber: lineNumber, + lineStart: lineStart, + start: start, + end: index + }; + } + + function scanOctalLiteral(prefix, start) { + var number, octal; + + if (isOctalDigit(prefix)) { + octal = true; + number = '0' + source[index++]; + } else { + octal = false; + ++index; + number = ''; + } + + while (index < length) { + if (!isOctalDigit(source[index])) { + break; + } + number += source[index++]; + } + + if (!octal && number.length === 0) { + // only 0o or 0O + throwUnexpectedToken(); + } + + if (isIdentifierStart(source.charCodeAt(index)) || isDecimalDigit(source.charCodeAt(index))) { + throwUnexpectedToken(); + } + + return { + type: Token.NumericLiteral, + value: parseInt(number, 8), + octal: octal, + lineNumber: lineNumber, + lineStart: lineStart, + start: start, + end: index + }; + } + + function isImplicitOctalLiteral() { + var i, ch; + + // Implicit octal, unless there is a non-octal digit. + // (Annex B.1.1 on Numeric Literals) + for (i = index + 1; i < length; ++i) { + ch = source[i]; + if (ch === '8' || ch === '9') { + return false; + } + if (!isOctalDigit(ch)) { + return true; + } + } + + return true; + } + + function scanNumericLiteral() { + var number, start, ch; + + ch = source[index]; + assert(isDecimalDigit(ch.charCodeAt(0)) || (ch === '.'), + 'Numeric literal must start with a decimal digit or a decimal point'); + + start = index; + number = ''; + if (ch !== '.') { + number = source[index++]; + ch = source[index]; + + // Hex number starts with '0x'. + // Octal number starts with '0'. + // Octal number in ES6 starts with '0o'. + // Binary number in ES6 starts with '0b'. + if (number === '0') { + if (ch === 'x' || ch === 'X') { + ++index; + return scanHexLiteral(start); + } + if (ch === 'b' || ch === 'B') { + ++index; + return scanBinaryLiteral(start); + } + if (ch === 'o' || ch === 'O') { + return scanOctalLiteral(ch, start); + } + + if (isOctalDigit(ch)) { + if (isImplicitOctalLiteral()) { + return scanOctalLiteral(ch, start); + } + } + } + + while (isDecimalDigit(source.charCodeAt(index))) { + number += source[index++]; + } + ch = source[index]; + } + + if (ch === '.') { + number += source[index++]; + while (isDecimalDigit(source.charCodeAt(index))) { + number += source[index++]; + } + ch = source[index]; + } + + if (ch === 'e' || ch === 'E') { + number += source[index++]; + + ch = source[index]; + if (ch === '+' || ch === '-') { + number += source[index++]; + } + if (isDecimalDigit(source.charCodeAt(index))) { + while (isDecimalDigit(source.charCodeAt(index))) { + number += source[index++]; + } + } else { + throwUnexpectedToken(); + } + } + + if (isIdentifierStart(source.charCodeAt(index))) { + throwUnexpectedToken(); + } + + return { + type: Token.NumericLiteral, + value: parseFloat(number), + lineNumber: lineNumber, + lineStart: lineStart, + start: start, + end: index + }; + } + + // 7.8.4 String Literals + + function scanStringLiteral() { + var str = '', quote, start, ch, code, unescaped, restore, octal = false; + + quote = source[index]; + assert((quote === '\'' || quote === '"'), + 'String literal must starts with a quote'); + + start = index; + ++index; + + while (index < length) { + ch = source[index++]; + + if (ch === quote) { + quote = ''; + break; + } else if (ch === '\\') { + ch = source[index++]; + if (!ch || !isLineTerminator(ch.charCodeAt(0))) { + switch (ch) { + case 'u': + case 'x': + if (source[index] === '{') { + ++index; + str += scanUnicodeCodePointEscape(); + } else { + restore = index; + unescaped = scanHexEscape(ch); + if (unescaped) { + str += unescaped; + } else { + index = restore; + str += ch; + } + } + break; + case 'n': + str += '\n'; + break; + case 'r': + str += '\r'; + break; + case 't': + str += '\t'; + break; + case 'b': + str += '\b'; + break; + case 'f': + str += '\f'; + break; + case 'v': + str += '\x0B'; + break; + + default: + if (isOctalDigit(ch)) { + code = '01234567'.indexOf(ch); + + // \0 is not octal escape sequence + if (code !== 0) { + octal = true; + } + + if (index < length && isOctalDigit(source[index])) { + octal = true; + code = code * 8 + '01234567'.indexOf(source[index++]); + + // 3 digits are only allowed when string starts + // with 0, 1, 2, 3 + if ('0123'.indexOf(ch) >= 0 && + index < length && + isOctalDigit(source[index])) { + code = code * 8 + '01234567'.indexOf(source[index++]); + } + } + str += String.fromCharCode(code); + } else { + str += ch; + } + break; + } + } else { + ++lineNumber; + if (ch === '\r' && source[index] === '\n') { + ++index; + } + lineStart = index; + } + } else if (isLineTerminator(ch.charCodeAt(0))) { + break; + } else { + str += ch; + } + } + + if (quote !== '') { + throwUnexpectedToken(); + } + + return { + type: Token.StringLiteral, + value: str, + octal: octal, + lineNumber: startLineNumber, + lineStart: startLineStart, + start: start, + end: index + }; + } + + function testRegExp(pattern, flags) { + var tmp = pattern; + + if (flags.indexOf('u') >= 0) { + // Replace each astral symbol and every Unicode code point + // escape sequence with a single ASCII symbol to avoid throwing on + // regular expressions that are only valid in combination with the + // `/u` flag. + // Note: replacing with the ASCII symbol `x` might cause false + // negatives in unlikely scenarios. For example, `[\u{61}-b]` is a + // perfectly valid pattern that is equivalent to `[a-b]`, but it + // would be replaced by `[x-b]` which throws an error. + tmp = tmp + .replace(/\\u\{([0-9a-fA-F]+)\}/g, function ($0, $1) { + if (parseInt($1, 16) <= 0x10FFFF) { + return 'x'; + } + throwUnexpectedToken(null, Messages.InvalidRegExp); + }) + .replace(/[\uD800-\uDBFF][\uDC00-\uDFFF]/g, 'x'); + } + + // First, detect invalid regular expressions. + try { + RegExp(tmp); + } catch (e) { + throwUnexpectedToken(null, Messages.InvalidRegExp); + } + + // Return a regular expression object for this pattern-flag pair, or + // `null` in case the current environment doesn't support the flags it + // uses. + try { + return new RegExp(pattern, flags); + } catch (exception) { + return null; + } + } + + function scanRegExpBody() { + var ch, str, classMarker, terminated, body; + + ch = source[index]; + assert(ch === '/', 'Regular expression literal must start with a slash'); + str = source[index++]; + + classMarker = false; + terminated = false; + while (index < length) { + ch = source[index++]; + str += ch; + if (ch === '\\') { + ch = source[index++]; + // ECMA-262 7.8.5 + if (isLineTerminator(ch.charCodeAt(0))) { + throwUnexpectedToken(null, Messages.UnterminatedRegExp); + } + str += ch; + } else if (isLineTerminator(ch.charCodeAt(0))) { + throwUnexpectedToken(null, Messages.UnterminatedRegExp); + } else if (classMarker) { + if (ch === ']') { + classMarker = false; + } + } else { + if (ch === '/') { + terminated = true; + break; + } else if (ch === '[') { + classMarker = true; + } + } + } + + if (!terminated) { + throwUnexpectedToken(null, Messages.UnterminatedRegExp); + } + + // Exclude leading and trailing slash. + body = str.substr(1, str.length - 2); + return { + value: body, + literal: str + }; + } + + function scanRegExpFlags() { + var ch, str, flags, restore; + + str = ''; + flags = ''; + while (index < length) { + ch = source[index]; + if (!isIdentifierPart(ch.charCodeAt(0))) { + break; + } + + ++index; + if (ch === '\\' && index < length) { + ch = source[index]; + if (ch === 'u') { + ++index; + restore = index; + ch = scanHexEscape('u'); + if (ch) { + flags += ch; + for (str += '\\u'; restore < index; ++restore) { + str += source[restore]; + } + } else { + index = restore; + flags += 'u'; + str += '\\u'; + } + tolerateUnexpectedToken(); + } else { + str += '\\'; + tolerateUnexpectedToken(); + } + } else { + flags += ch; + str += ch; + } + } + + return { + value: flags, + literal: str + }; + } + + function scanRegExp() { + scanning = true; + var start, body, flags, value; + + lookahead = null; + skipComment(); + start = index; + + body = scanRegExpBody(); + flags = scanRegExpFlags(); + value = testRegExp(body.value, flags.value); + scanning = false; + if (extra.tokenize) { + return { + type: Token.RegularExpression, + value: value, + regex: { + pattern: body.value, + flags: flags.value + }, + lineNumber: lineNumber, + lineStart: lineStart, + start: start, + end: index + }; + } + + return { + literal: body.literal + flags.literal, + value: value, + regex: { + pattern: body.value, + flags: flags.value + }, + start: start, + end: index + }; + } + + function collectRegex() { + var pos, loc, regex, token; + + skipComment(); + + pos = index; + loc = { + start: { + line: lineNumber, + column: index - lineStart + } + }; + + regex = scanRegExp(); + + loc.end = { + line: lineNumber, + column: index - lineStart + }; + + /* istanbul ignore next */ + if (!extra.tokenize) { + // Pop the previous token, which is likely '/' or '/=' + if (extra.tokens.length > 0) { + token = extra.tokens[extra.tokens.length - 1]; + if (token.range[0] === pos && token.type === 'Punctuator') { + if (token.value === '/' || token.value === '/=') { + extra.tokens.pop(); + } + } + } + + extra.tokens.push({ + type: 'RegularExpression', + value: regex.literal, + regex: regex.regex, + range: [pos, index], + loc: loc + }); + } + + return regex; + } + + function isIdentifierName(token) { + return token.type === Token.Identifier || + token.type === Token.Keyword || + token.type === Token.BooleanLiteral || + token.type === Token.NullLiteral; + } + + function advanceSlash() { + var prevToken, + checkToken; + // Using the following algorithm: + // https://github.com/mozilla/sweet.js/wiki/design + prevToken = extra.tokens[extra.tokens.length - 1]; + if (!prevToken) { + // Nothing before that: it cannot be a division. + return collectRegex(); + } + if (prevToken.type === 'Punctuator') { + if (prevToken.value === ']') { + return scanPunctuator(); + } + if (prevToken.value === ')') { + checkToken = extra.tokens[extra.openParenToken - 1]; + if (checkToken && + checkToken.type === 'Keyword' && + (checkToken.value === 'if' || + checkToken.value === 'while' || + checkToken.value === 'for' || + checkToken.value === 'with')) { + return collectRegex(); + } + return scanPunctuator(); + } + if (prevToken.value === '}') { + // Dividing a function by anything makes little sense, + // but we have to check for that. + if (extra.tokens[extra.openCurlyToken - 3] && + extra.tokens[extra.openCurlyToken - 3].type === 'Keyword') { + // Anonymous function. + checkToken = extra.tokens[extra.openCurlyToken - 4]; + if (!checkToken) { + return scanPunctuator(); + } + } else if (extra.tokens[extra.openCurlyToken - 4] && + extra.tokens[extra.openCurlyToken - 4].type === 'Keyword') { + // Named function. + checkToken = extra.tokens[extra.openCurlyToken - 5]; + if (!checkToken) { + return collectRegex(); + } + } else { + return scanPunctuator(); + } + // checkToken determines whether the function is + // a declaration or an expression. + if (FnExprTokens.indexOf(checkToken.value) >= 0) { + // It is an expression. + return scanPunctuator(); + } + // It is a declaration. + return collectRegex(); + } + return collectRegex(); + } + if (prevToken.type === 'Keyword' && prevToken.value !== 'this') { + return collectRegex(); + } + return scanPunctuator(); + } + + function advance() { + var ch; + + if (index >= length) { + return { + type: Token.EOF, + lineNumber: lineNumber, + lineStart: lineStart, + start: index, + end: index + }; + } + + ch = source.charCodeAt(index); + + if (isIdentifierStart(ch)) { + return scanIdentifier(); + } + + // Very common: ( and ) and ; + if (ch === 0x28 || ch === 0x29 || ch === 0x3B) { + return scanPunctuator(); + } + + // String literal starts with single quote (U+0027) or double quote (U+0022). + if (ch === 0x27 || ch === 0x22) { + return scanStringLiteral(); + } + + + // Dot (.) U+002E can also start a floating-point number, hence the need + // to check the next character. + if (ch === 0x2E) { + if (isDecimalDigit(source.charCodeAt(index + 1))) { + return scanNumericLiteral(); + } + return scanPunctuator(); + } + + if (isDecimalDigit(ch)) { + return scanNumericLiteral(); + } + + // Slash (/) U+002F can also start a regex. + if (extra.tokenize && ch === 0x2F) { + return advanceSlash(); + } + + return scanPunctuator(); + } + + function collectToken() { + var loc, token, value, entry; + + loc = { + start: { + line: lineNumber, + column: index - lineStart + } + }; + + token = advance(); + loc.end = { + line: lineNumber, + column: index - lineStart + }; + + if (token.type !== Token.EOF) { + value = source.slice(token.start, token.end); + entry = { + type: TokenName[token.type], + value: value, + range: [token.start, token.end], + loc: loc + }; + if (token.regex) { + entry.regex = { + pattern: token.regex.pattern, + flags: token.regex.flags + }; + } + extra.tokens.push(entry); + } + + return token; + } + + function lex() { + var token; + scanning = true; + + lastIndex = index; + lastLineNumber = lineNumber; + lastLineStart = lineStart; + + skipComment(); + + token = lookahead; + + startIndex = index; + startLineNumber = lineNumber; + startLineStart = lineStart; + + lookahead = (typeof extra.tokens !== 'undefined') ? collectToken() : advance(); + scanning = false; + return token; + } + + function peek() { + scanning = true; + + skipComment(); + + lastIndex = index; + lastLineNumber = lineNumber; + lastLineStart = lineStart; + + startIndex = index; + startLineNumber = lineNumber; + startLineStart = lineStart; + + lookahead = (typeof extra.tokens !== 'undefined') ? collectToken() : advance(); + scanning = false; + } + + function Position() { + this.line = startLineNumber; + this.column = startIndex - startLineStart; + } + + function SourceLocation() { + this.start = new Position(); + this.end = null; + } + + function WrappingSourceLocation(startToken) { + this.start = { + line: startToken.lineNumber, + column: startToken.start - startToken.lineStart + }; + this.end = null; + } + + function Node() { + if (extra.range) { + this.range = [startIndex, 0]; + } + if (extra.loc) { + this.loc = new SourceLocation(); + } + } + + function WrappingNode(startToken) { + if (extra.range) { + this.range = [startToken.start, 0]; + } + if (extra.loc) { + this.loc = new WrappingSourceLocation(startToken); + } + } + + WrappingNode.prototype = Node.prototype = { + + processComment: function () { + var lastChild, + leadingComments, + trailingComments, + bottomRight = extra.bottomRightStack, + i, + comment, + last = bottomRight[bottomRight.length - 1]; + + if (this.type === Syntax.Program) { + if (this.body.length > 0) { + return; + } + } + + if (extra.trailingComments.length > 0) { + trailingComments = []; + for (i = extra.trailingComments.length - 1; i >= 0; --i) { + comment = extra.trailingComments[i]; + if (comment.range[0] >= this.range[1]) { + trailingComments.unshift(comment); + extra.trailingComments.splice(i, 1); + } + } + extra.trailingComments = []; + } else { + if (last && last.trailingComments && last.trailingComments[0].range[0] >= this.range[1]) { + trailingComments = last.trailingComments; + delete last.trailingComments; + } + } + + // Eating the stack. + if (last) { + while (last && last.range[0] >= this.range[0]) { + lastChild = last; + last = bottomRight.pop(); + } + } + + if (lastChild) { + if (lastChild.leadingComments && lastChild.leadingComments[lastChild.leadingComments.length - 1].range[1] <= this.range[0]) { + this.leadingComments = lastChild.leadingComments; + lastChild.leadingComments = undefined; + } + } else if (extra.leadingComments.length > 0) { + leadingComments = []; + for (i = extra.leadingComments.length - 1; i >= 0; --i) { + comment = extra.leadingComments[i]; + if (comment.range[1] <= this.range[0]) { + leadingComments.unshift(comment); + extra.leadingComments.splice(i, 1); + } + } + } + + + if (leadingComments && leadingComments.length > 0) { + this.leadingComments = leadingComments; + } + if (trailingComments && trailingComments.length > 0) { + this.trailingComments = trailingComments; + } + + bottomRight.push(this); + }, + + finish: function () { + if (extra.range) { + this.range[1] = lastIndex; + } + if (extra.loc) { + this.loc.end = { + line: lastLineNumber, + column: lastIndex - lastLineStart + }; + if (extra.source) { + this.loc.source = extra.source; + } + } + + if (extra.attachComment) { + this.processComment(); + } + }, + + finishArrayExpression: function (elements) { + this.type = Syntax.ArrayExpression; + this.elements = elements; + this.finish(); + return this; + }, + + finishArrowFunctionExpression: function (params, defaults, body, expression) { + this.type = Syntax.ArrowFunctionExpression; + this.id = null; + this.params = params; + this.defaults = defaults; + this.body = body; + this.generator = false; + this.expression = expression; + this.finish(); + return this; + }, + + finishAssignmentExpression: function (operator, left, right) { + this.type = Syntax.AssignmentExpression; + this.operator = operator; + this.left = left; + this.right = right; + this.finish(); + return this; + }, + + finishBinaryExpression: function (operator, left, right) { + this.type = (operator === '||' || operator === '&&') ? Syntax.LogicalExpression : Syntax.BinaryExpression; + this.operator = operator; + this.left = left; + this.right = right; + this.finish(); + return this; + }, + + finishBlockStatement: function (body) { + this.type = Syntax.BlockStatement; + this.body = body; + this.finish(); + return this; + }, + + finishBreakStatement: function (label) { + this.type = Syntax.BreakStatement; + this.label = label; + this.finish(); + return this; + }, + + finishCallExpression: function (callee, args) { + this.type = Syntax.CallExpression; + this.callee = callee; + this.arguments = args; + this.finish(); + return this; + }, + + finishCatchClause: function (param, body) { + this.type = Syntax.CatchClause; + this.param = param; + this.body = body; + this.finish(); + return this; + }, + + finishClassBody: function (body) { + this.type = Syntax.ClassBody; + this.body = body; + this.finish(); + return this; + }, + + finishClassDeclaration: function (id, superClass, body) { + this.type = Syntax.ClassDeclaration; + this.id = id; + this.superClass = superClass; + this.body = body; + this.finish(); + return this; + }, + + finishClassExpression: function (id, superClass, body) { + this.type = Syntax.ClassExpression; + this.id = id; + this.superClass = superClass; + this.body = body; + this.finish(); + return this; + }, + + finishConditionalExpression: function (test, consequent, alternate) { + this.type = Syntax.ConditionalExpression; + this.test = test; + this.consequent = consequent; + this.alternate = alternate; + this.finish(); + return this; + }, + + finishContinueStatement: function (label) { + this.type = Syntax.ContinueStatement; + this.label = label; + this.finish(); + return this; + }, + + finishDebuggerStatement: function () { + this.type = Syntax.DebuggerStatement; + this.finish(); + return this; + }, + + finishDoWhileStatement: function (body, test) { + this.type = Syntax.DoWhileStatement; + this.body = body; + this.test = test; + this.finish(); + return this; + }, + + finishEmptyStatement: function () { + this.type = Syntax.EmptyStatement; + this.finish(); + return this; + }, + + finishExpressionStatement: function (expression) { + this.type = Syntax.ExpressionStatement; + this.expression = expression; + this.finish(); + return this; + }, + + finishForStatement: function (init, test, update, body) { + this.type = Syntax.ForStatement; + this.init = init; + this.test = test; + this.update = update; + this.body = body; + this.finish(); + return this; + }, + + finishForInStatement: function (left, right, body) { + this.type = Syntax.ForInStatement; + this.left = left; + this.right = right; + this.body = body; + this.each = false; + this.finish(); + return this; + }, + + finishFunctionDeclaration: function (id, params, defaults, body) { + this.type = Syntax.FunctionDeclaration; + this.id = id; + this.params = params; + this.defaults = defaults; + this.body = body; + this.generator = false; + this.expression = false; + this.finish(); + return this; + }, + + finishFunctionExpression: function (id, params, defaults, body) { + this.type = Syntax.FunctionExpression; + this.id = id; + this.params = params; + this.defaults = defaults; + this.body = body; + this.generator = false; + this.expression = false; + this.finish(); + return this; + }, + + finishIdentifier: function (name) { + this.type = Syntax.Identifier; + this.name = name; + this.finish(); + return this; + }, + + finishIfStatement: function (test, consequent, alternate) { + this.type = Syntax.IfStatement; + this.test = test; + this.consequent = consequent; + this.alternate = alternate; + this.finish(); + return this; + }, + + finishLabeledStatement: function (label, body) { + this.type = Syntax.LabeledStatement; + this.label = label; + this.body = body; + this.finish(); + return this; + }, + + finishLiteral: function (token) { + this.type = Syntax.Literal; + this.value = token.value; + this.raw = source.slice(token.start, token.end); + if (token.regex) { + this.regex = token.regex; + } + this.finish(); + return this; + }, + + finishMemberExpression: function (accessor, object, property) { + this.type = Syntax.MemberExpression; + this.computed = accessor === '['; + this.object = object; + this.property = property; + this.finish(); + return this; + }, + + finishNewExpression: function (callee, args) { + this.type = Syntax.NewExpression; + this.callee = callee; + this.arguments = args; + this.finish(); + return this; + }, + + finishObjectExpression: function (properties) { + this.type = Syntax.ObjectExpression; + this.properties = properties; + this.finish(); + return this; + }, + + finishPostfixExpression: function (operator, argument) { + this.type = Syntax.UpdateExpression; + this.operator = operator; + this.argument = argument; + this.prefix = false; + this.finish(); + return this; + }, + + finishProgram: function (body) { + this.type = Syntax.Program; + this.body = body; + this.finish(); + return this; + }, + + finishProperty: function (kind, key, computed, value, method, shorthand) { + this.type = Syntax.Property; + this.key = key; + this.computed = computed; + this.value = value; + this.kind = kind; + this.method = method; + this.shorthand = shorthand; + this.finish(); + return this; + }, + + finishRestElement: function (argument) { + this.type = Syntax.RestElement; + this.argument = argument; + this.finish(); + return this; + }, + + finishReturnStatement: function (argument) { + this.type = Syntax.ReturnStatement; + this.argument = argument; + this.finish(); + return this; + }, + + finishSequenceExpression: function (expressions) { + this.type = Syntax.SequenceExpression; + this.expressions = expressions; + this.finish(); + return this; + }, + + finishSwitchCase: function (test, consequent) { + this.type = Syntax.SwitchCase; + this.test = test; + this.consequent = consequent; + this.finish(); + return this; + }, + + finishSwitchStatement: function (discriminant, cases) { + this.type = Syntax.SwitchStatement; + this.discriminant = discriminant; + this.cases = cases; + this.finish(); + return this; + }, + + finishThisExpression: function () { + this.type = Syntax.ThisExpression; + this.finish(); + return this; + }, + + finishThrowStatement: function (argument) { + this.type = Syntax.ThrowStatement; + this.argument = argument; + this.finish(); + return this; + }, + + finishTryStatement: function (block, handler, finalizer) { + this.type = Syntax.TryStatement; + this.block = block; + this.guardedHandlers = []; + this.handlers = handler ? [ handler ] : []; + this.handler = handler; + this.finalizer = finalizer; + this.finish(); + return this; + }, + + finishUnaryExpression: function (operator, argument) { + this.type = (operator === '++' || operator === '--') ? Syntax.UpdateExpression : Syntax.UnaryExpression; + this.operator = operator; + this.argument = argument; + this.prefix = true; + this.finish(); + return this; + }, + + finishVariableDeclaration: function (declarations) { + this.type = Syntax.VariableDeclaration; + this.declarations = declarations; + this.kind = 'var'; + this.finish(); + return this; + }, + + finishLexicalDeclaration: function (declarations, kind) { + this.type = Syntax.VariableDeclaration; + this.declarations = declarations; + this.kind = kind; + this.finish(); + return this; + }, + + finishVariableDeclarator: function (id, init) { + this.type = Syntax.VariableDeclarator; + this.id = id; + this.init = init; + this.finish(); + return this; + }, + + finishWhileStatement: function (test, body) { + this.type = Syntax.WhileStatement; + this.test = test; + this.body = body; + this.finish(); + return this; + }, + + finishWithStatement: function (object, body) { + this.type = Syntax.WithStatement; + this.object = object; + this.body = body; + this.finish(); + return this; + } + }; + + + function recordError(error) { + var e, existing; + + for (e = 0; e < extra.errors.length; e++) { + existing = extra.errors[e]; + // Prevent duplicated error. + /* istanbul ignore next */ + if (existing.index === error.index && existing.message === error.message) { + return; + } + } + + extra.errors.push(error); + } + + function createError(line, pos, description) { + var error = new Error('Line ' + line + ': ' + description); + error.index = pos; + error.lineNumber = line; + error.column = pos - (scanning ? lineStart : lastLineStart) + 1; + error.description = description; + return error; + } + + // Throw an exception + + function throwError(messageFormat) { + var args, msg; + + args = Array.prototype.slice.call(arguments, 1); + msg = messageFormat.replace(/%(\d)/g, + function (whole, idx) { + assert(idx < args.length, 'Message reference must be in range'); + return args[idx]; + } + ); + + throw createError(lastLineNumber, lastIndex, msg); + } + + function tolerateError(messageFormat) { + var args, msg, error; + + args = Array.prototype.slice.call(arguments, 1); + /* istanbul ignore next */ + msg = messageFormat.replace(/%(\d)/g, + function (whole, idx) { + assert(idx < args.length, 'Message reference must be in range'); + return args[idx]; + } + ); + + error = createError(lineNumber, lastIndex, msg); + if (extra.errors) { + recordError(error); + } else { + throw error; + } + } + + // Throw an exception because of the token. + + function unexpectedTokenError(token, message) { + var msg = message || Messages.UnexpectedToken; + + if (token && !message) { + msg = (token.type === Token.EOF) ? Messages.UnexpectedEOS : + (token.type === Token.Identifier) ? Messages.UnexpectedIdentifier : + (token.type === Token.NumericLiteral) ? Messages.UnexpectedNumber : + (token.type === Token.StringLiteral) ? Messages.UnexpectedString : + Messages.UnexpectedToken; + + if (token.type === Token.Keyword) { + if (isFutureReservedWord(token.value)) { + msg = Messages.UnexpectedReserved; + } else if (strict && isStrictModeReservedWord(token.value)) { + msg = Messages.StrictReservedWord; + } + } + } + + msg = msg.replace('%0', token ? token.value : 'ILLEGAL'); + + return (token && typeof token.lineNumber === 'number') ? + createError(token.lineNumber, token.start, msg) : + createError(scanning ? lineNumber : lastLineNumber, scanning ? index : lastIndex, msg); + } + + function throwUnexpectedToken(token, message) { + throw unexpectedTokenError(token, message); + } + + function tolerateUnexpectedToken(token, message) { + var error = unexpectedTokenError(token, message); + if (extra.errors) { + recordError(error); + } else { + throw error; + } + } + + // Expect the next token to match the specified punctuator. + // If not, an exception will be thrown. + + function expect(value) { + var token = lex(); + if (token.type !== Token.Punctuator || token.value !== value) { + throwUnexpectedToken(token); + } + } + + /** + * @name expectCommaSeparator + * @description Quietly expect a comma when in tolerant mode, otherwise delegates + * to expect(value) + * @since 2.0 + */ + function expectCommaSeparator() { + var token; + + if (extra.errors) { + token = lookahead; + if (token.type === Token.Punctuator && token.value === ',') { + lex(); + } else if (token.type === Token.Punctuator && token.value === ';') { + lex(); + tolerateUnexpectedToken(token); + } else { + tolerateUnexpectedToken(token, Messages.UnexpectedToken); + } + } else { + expect(','); + } + } + + // Expect the next token to match the specified keyword. + // If not, an exception will be thrown. + + function expectKeyword(keyword) { + var token = lex(); + if (token.type !== Token.Keyword || token.value !== keyword) { + throwUnexpectedToken(token); + } + } + + // Return true if the next token matches the specified punctuator. + + function match(value) { + return lookahead.type === Token.Punctuator && lookahead.value === value; + } + + // Return true if the next token matches the specified keyword + + function matchKeyword(keyword) { + return lookahead.type === Token.Keyword && lookahead.value === keyword; + } + + // Return true if the next token is an assignment operator + + function matchAssign() { + var op; + + if (lookahead.type !== Token.Punctuator) { + return false; + } + op = lookahead.value; + return op === '=' || + op === '*=' || + op === '/=' || + op === '%=' || + op === '+=' || + op === '-=' || + op === '<<=' || + op === '>>=' || + op === '>>>=' || + op === '&=' || + op === '^=' || + op === '|='; + } + + function consumeSemicolon() { + // Catch the very common case first: immediately a semicolon (U+003B). + if (source.charCodeAt(startIndex) === 0x3B || match(';')) { + lex(); + return; + } + + if (hasLineTerminator) { + return; + } + + // FIXME(ikarienator): this is seemingly an issue in the previous location info convention. + lastIndex = startIndex; + lastLineNumber = startLineNumber; + lastLineStart = startLineStart; + + if (lookahead.type !== Token.EOF && !match('}')) { + throwUnexpectedToken(lookahead); + } + } + + // Return true if provided expression is LeftHandSideExpression + + function isLeftHandSide(expr) { + return expr.type === Syntax.Identifier || expr.type === Syntax.MemberExpression; + } + + // 11.1.4 Array Initialiser + + function parseArrayInitialiser() { + var elements = [], node = new Node(); + + expect('['); + + while (!match(']')) { + if (match(',')) { + lex(); + elements.push(null); + } else { + elements.push(parseAssignmentExpression()); + + if (!match(']')) { + expect(','); + } + } + } + + lex(); + + return node.finishArrayExpression(elements); + } + + // 11.1.5 Object Initialiser + + function parsePropertyFunction(node, paramInfo) { + var previousStrict, body; + + previousStrict = strict; + body = parseFunctionSourceElements(); + + if (strict && paramInfo.firstRestricted) { + tolerateUnexpectedToken(paramInfo.firstRestricted, paramInfo.message); + } + if (strict && paramInfo.stricted) { + tolerateUnexpectedToken(paramInfo.stricted, paramInfo.message); + } + + strict = previousStrict; + return node.finishFunctionExpression(null, paramInfo.params, paramInfo.defaults, body); + } + + function parsePropertyMethodFunction() { + var params, method, node = new Node(); + + params = parseParams(); + method = parsePropertyFunction(node, params); + + return method; + } + + // This function returns a tuple `[PropertyName, boolean]` where the PropertyName is the key being consumed and the second + // element indicate whether its a computed PropertyName or a static PropertyName. + function parseObjectPropertyKey() { + var token, node = new Node(), expr; + + token = lex(); + + // Note: This function is called only from parseObjectProperty(), where + // EOF and Punctuator tokens are already filtered out. + + switch (token.type) { + case Token.StringLiteral: + case Token.NumericLiteral: + if (strict && token.octal) { + tolerateUnexpectedToken(token, Messages.StrictOctalLiteral); + } + return node.finishLiteral(token); + case Token.Identifier: + case Token.BooleanLiteral: + case Token.NullLiteral: + case Token.Keyword: + return node.finishIdentifier(token.value); + case Token.Punctuator: + if (token.value === '[') { + expr = parseAssignmentExpression(); + expect(']'); + return expr; + } + break; + } + throwUnexpectedToken(token); + } + + function lookaheadPropertyName() { + switch (lookahead.type) { + case Token.Identifier: + case Token.StringLiteral: + case Token.BooleanLiteral: + case Token.NullLiteral: + case Token.NumericLiteral: + case Token.Keyword: + return true; + case Token.Punctuator: + return lookahead.value === '['; + } + return false; + } + + // This function is to try to parse a MethodDefinition as defined in 14.3. But in the case of object literals, + // it might be called at a position where there is in fact a short hand identifier pattern or a data property. + // This can only be determined after we consumed up to the left parentheses. + // + // In order to avoid back tracking, it returns `null` if the position is not a MethodDefinition and the caller + // is responsible to visit other options. + function tryParseMethodDefinition(token, key, computed, node) { + var value, options, methodNode; + + if (token.type === Token.Identifier) { + // check for `get` and `set`; + + if (token.value === 'get' && lookaheadPropertyName()) { + computed = match('['); + key = parseObjectPropertyKey(); + methodNode = new Node(); + expect('('); + expect(')'); + value = parsePropertyFunction(methodNode, { + params: [], + defaults: [], + stricted: null, + firstRestricted: null, + message: null + }); + return node.finishProperty('get', key, computed, value, false, false); + } else if (token.value === 'set' && lookaheadPropertyName()) { + computed = match('['); + key = parseObjectPropertyKey(); + methodNode = new Node(); + expect('('); + + options = { + params: [], + defaultCount: 0, + defaults: [], + firstRestricted: null, + paramSet: {} + }; + if (match(')')) { + tolerateUnexpectedToken(lookahead); + } else { + parseParam(options); + if (options.defaultCount === 0) { + options.defaults = []; + } + } + expect(')'); + + value = parsePropertyFunction(methodNode, options); + return node.finishProperty('set', key, computed, value, false, false); + } + } + + if (match('(')) { + value = parsePropertyMethodFunction(); + return node.finishProperty('init', key, computed, value, true, false); + } + + // Not a MethodDefinition. + return null; + } + + function checkProto(key, computed, hasProto) { + if (computed === false && (key.type === Syntax.Identifier && key.name === '__proto__' || + key.type === Syntax.Literal && key.value === '__proto__')) { + if (hasProto.value) { + tolerateError(Messages.DuplicateProtoProperty); + } else { + hasProto.value = true; + } + } + } + + function parseObjectProperty(hasProto) { + var token = lookahead, node = new Node(), computed, key, maybeMethod, value; + + computed = match('['); + key = parseObjectPropertyKey(); + maybeMethod = tryParseMethodDefinition(token, key, computed, node); + + if (maybeMethod) { + checkProto(maybeMethod.key, maybeMethod.computed, hasProto); + // finished + return maybeMethod; + } + + // init property or short hand property. + checkProto(key, computed, hasProto); + + if (match(':')) { + lex(); + value = parseAssignmentExpression(); + return node.finishProperty('init', key, computed, value, false, false); + } + + if (token.type === Token.Identifier) { + return node.finishProperty('init', key, computed, key, false, true); + } + + throwUnexpectedToken(lookahead); + } + + function parseObjectInitialiser() { + var properties = [], hasProto = {value: false}, node = new Node(); + + expect('{'); + + while (!match('}')) { + properties.push(parseObjectProperty(hasProto)); + + if (!match('}')) { + expectCommaSeparator(); + } + } + + expect('}'); + + return node.finishObjectExpression(properties); + } + + // 11.1.6 The Grouping Operator + + function parseGroupExpression() { + var expr, expressions, startToken, isValidArrowParameter = true; + + expect('('); + + if (match(')')) { + lex(); + if (!match('=>')) { + expect('=>'); + } + return { + type: PlaceHolders.ArrowParameterPlaceHolder, + params: [] + }; + } + + startToken = lookahead; + if (match('...')) { + expr = parseRestElement(); + expect(')'); + if (!match('=>')) { + expect('=>'); + } + return { + type: PlaceHolders.ArrowParameterPlaceHolder, + params: [expr] + }; + } + + if (match('(')) { + isValidArrowParameter = false; + } + + expr = parseAssignmentExpression(); + + if (match(',')) { + expressions = [expr]; + + while (startIndex < length) { + if (!match(',')) { + break; + } + lex(); + + if (match('...')) { + if (!isValidArrowParameter) { + throwUnexpectedToken(lookahead); + } + expressions.push(parseRestElement()); + expect(')'); + if (!match('=>')) { + expect('=>'); + } + return { + type: PlaceHolders.ArrowParameterPlaceHolder, + params: expressions + }; + } else if (match('(')) { + isValidArrowParameter = false; + } + + expressions.push(parseAssignmentExpression()); + } + + expr = new WrappingNode(startToken).finishSequenceExpression(expressions); + } + + + expect(')'); + + if (match('=>') && !isValidArrowParameter) { + throwUnexpectedToken(lookahead); + } + + return expr; + } + + + // 11.1 Primary Expressions + + function parsePrimaryExpression() { + var type, token, expr, node; + + if (match('(')) { + return parseGroupExpression(); + } + + if (match('[')) { + return parseArrayInitialiser(); + } + + if (match('{')) { + return parseObjectInitialiser(); + } + + type = lookahead.type; + node = new Node(); + + if (type === Token.Identifier) { + expr = node.finishIdentifier(lex().value); + } else if (type === Token.StringLiteral || type === Token.NumericLiteral) { + if (strict && lookahead.octal) { + tolerateUnexpectedToken(lookahead, Messages.StrictOctalLiteral); + } + expr = node.finishLiteral(lex()); + } else if (type === Token.Keyword) { + if (matchKeyword('function')) { + return parseFunctionExpression(); + } + if (matchKeyword('this')) { + lex(); + return node.finishThisExpression(); + } + if (matchKeyword('class')) { + return parseClassExpression(); + } + throwUnexpectedToken(lex()); + } else if (type === Token.BooleanLiteral) { + token = lex(); + token.value = (token.value === 'true'); + expr = node.finishLiteral(token); + } else if (type === Token.NullLiteral) { + token = lex(); + token.value = null; + expr = node.finishLiteral(token); + } else if (match('/') || match('/=')) { + index = startIndex; + + if (typeof extra.tokens !== 'undefined') { + token = collectRegex(); + } else { + token = scanRegExp(); + } + lex(); + expr = node.finishLiteral(token); + } else { + throwUnexpectedToken(lex()); + } + + return expr; + } + + // 11.2 Left-Hand-Side Expressions + + function parseArguments() { + var args = []; + + expect('('); + + if (!match(')')) { + while (startIndex < length) { + args.push(parseAssignmentExpression()); + if (match(')')) { + break; + } + expectCommaSeparator(); + } + } + + expect(')'); + + return args; + } + + function parseNonComputedProperty() { + var token, node = new Node(); + + token = lex(); + + if (!isIdentifierName(token)) { + throwUnexpectedToken(token); + } + + return node.finishIdentifier(token.value); + } + + function parseNonComputedMember() { + expect('.'); + + return parseNonComputedProperty(); + } + + function parseComputedMember() { + var expr; + + expect('['); + + expr = parseExpression(); + + expect(']'); + + return expr; + } + + function parseNewExpression() { + var callee, args, node = new Node(); + + expectKeyword('new'); + callee = parseLeftHandSideExpression(); + args = match('(') ? parseArguments() : []; + + return node.finishNewExpression(callee, args); + } + + function parseLeftHandSideExpressionAllowCall() { + var expr, args, property, startToken, previousAllowIn = state.allowIn; + + startToken = lookahead; + state.allowIn = true; + expr = matchKeyword('new') ? parseNewExpression() : parsePrimaryExpression(); + + for (;;) { + if (match('.')) { + property = parseNonComputedMember(); + expr = new WrappingNode(startToken).finishMemberExpression('.', expr, property); + } else if (match('(')) { + args = parseArguments(); + expr = new WrappingNode(startToken).finishCallExpression(expr, args); + } else if (match('[')) { + property = parseComputedMember(); + expr = new WrappingNode(startToken).finishMemberExpression('[', expr, property); + } else { + break; + } + } + state.allowIn = previousAllowIn; + + return expr; + } + + function parseLeftHandSideExpression() { + var expr, property, startToken; + assert(state.allowIn, 'callee of new expression always allow in keyword.'); + + startToken = lookahead; + + expr = matchKeyword('new') ? parseNewExpression() : parsePrimaryExpression(); + + for (;;) { + if (match('[')) { + property = parseComputedMember(); + expr = new WrappingNode(startToken).finishMemberExpression('[', expr, property); + } else if (match('.')) { + property = parseNonComputedMember(); + expr = new WrappingNode(startToken).finishMemberExpression('.', expr, property); + } else { + break; + } + } + return expr; + } + + // 11.3 Postfix Expressions + + function parsePostfixExpression() { + var expr, token, startToken = lookahead; + + expr = parseLeftHandSideExpressionAllowCall(); + + if (!hasLineTerminator && lookahead.type === Token.Punctuator) { + if (match('++') || match('--')) { + // 11.3.1, 11.3.2 + if (strict && expr.type === Syntax.Identifier && isRestrictedWord(expr.name)) { + tolerateError(Messages.StrictLHSPostfix); + } + + if (!isLeftHandSide(expr)) { + tolerateError(Messages.InvalidLHSInAssignment); + } + + token = lex(); + expr = new WrappingNode(startToken).finishPostfixExpression(token.value, expr); + } + } + + return expr; + } + + // 11.4 Unary Operators + + function parseUnaryExpression() { + var token, expr, startToken; + + if (lookahead.type !== Token.Punctuator && lookahead.type !== Token.Keyword) { + expr = parsePostfixExpression(); + } else if (match('++') || match('--')) { + startToken = lookahead; + token = lex(); + expr = parseUnaryExpression(); + // 11.4.4, 11.4.5 + if (strict && expr.type === Syntax.Identifier && isRestrictedWord(expr.name)) { + tolerateError(Messages.StrictLHSPrefix); + } + + if (!isLeftHandSide(expr)) { + tolerateError(Messages.InvalidLHSInAssignment); + } + + expr = new WrappingNode(startToken).finishUnaryExpression(token.value, expr); + } else if (match('+') || match('-') || match('~') || match('!')) { + startToken = lookahead; + token = lex(); + expr = parseUnaryExpression(); + expr = new WrappingNode(startToken).finishUnaryExpression(token.value, expr); + } else if (matchKeyword('delete') || matchKeyword('void') || matchKeyword('typeof')) { + startToken = lookahead; + token = lex(); + expr = parseUnaryExpression(); + expr = new WrappingNode(startToken).finishUnaryExpression(token.value, expr); + if (strict && expr.operator === 'delete' && expr.argument.type === Syntax.Identifier) { + tolerateError(Messages.StrictDelete); + } + } else { + expr = parsePostfixExpression(); + } + + return expr; + } + + function binaryPrecedence(token, allowIn) { + var prec = 0; + + if (token.type !== Token.Punctuator && token.type !== Token.Keyword) { + return 0; + } + + switch (token.value) { + case '||': + prec = 1; + break; + + case '&&': + prec = 2; + break; + + case '|': + prec = 3; + break; + + case '^': + prec = 4; + break; + + case '&': + prec = 5; + break; + + case '==': + case '!=': + case '===': + case '!==': + prec = 6; + break; + + case '<': + case '>': + case '<=': + case '>=': + case 'instanceof': + prec = 7; + break; + + case 'in': + prec = allowIn ? 7 : 0; + break; + + case '<<': + case '>>': + case '>>>': + prec = 8; + break; + + case '+': + case '-': + prec = 9; + break; + + case '*': + case '/': + case '%': + prec = 11; + break; + + default: + break; + } + + return prec; + } + + // 11.5 Multiplicative Operators + // 11.6 Additive Operators + // 11.7 Bitwise Shift Operators + // 11.8 Relational Operators + // 11.9 Equality Operators + // 11.10 Binary Bitwise Operators + // 11.11 Binary Logical Operators + + function parseBinaryExpression() { + var marker, markers, expr, token, prec, stack, right, operator, left, i; + + marker = lookahead; + left = parseUnaryExpression(); + + token = lookahead; + prec = binaryPrecedence(token, state.allowIn); + if (prec === 0) { + return left; + } + token.prec = prec; + lex(); + + markers = [marker, lookahead]; + right = parseUnaryExpression(); + + stack = [left, token, right]; + + while ((prec = binaryPrecedence(lookahead, state.allowIn)) > 0) { + + // Reduce: make a binary expression from the three topmost entries. + while ((stack.length > 2) && (prec <= stack[stack.length - 2].prec)) { + right = stack.pop(); + operator = stack.pop().value; + left = stack.pop(); + markers.pop(); + expr = new WrappingNode(markers[markers.length - 1]).finishBinaryExpression(operator, left, right); + stack.push(expr); + } + + // Shift. + token = lex(); + token.prec = prec; + stack.push(token); + markers.push(lookahead); + expr = parseUnaryExpression(); + stack.push(expr); + } + + // Final reduce to clean-up the stack. + i = stack.length - 1; + expr = stack[i]; + markers.pop(); + while (i > 1) { + expr = new WrappingNode(markers.pop()).finishBinaryExpression(stack[i - 1].value, stack[i - 2], expr); + i -= 2; + } + + return expr; + } + + + // 11.12 Conditional Operator + + function parseConditionalExpression() { + var expr, previousAllowIn, consequent, alternate, startToken; + + startToken = lookahead; + + expr = parseBinaryExpression(); + if (match('?')) { + lex(); + previousAllowIn = state.allowIn; + state.allowIn = true; + consequent = parseAssignmentExpression(); + state.allowIn = previousAllowIn; + expect(':'); + alternate = parseAssignmentExpression(); + + expr = new WrappingNode(startToken).finishConditionalExpression(expr, consequent, alternate); + } + + return expr; + } + + // [ES6] 14.2 Arrow Function + + function parseConciseBody() { + if (match('{')) { + return parseFunctionSourceElements(); + } + return parseAssignmentExpression(); + } + + function reinterpretAsCoverFormalsList(expr) { + var i, len, param, params, defaults, defaultCount, options, token; + + defaults = []; + defaultCount = 0; + params = [expr]; + + switch (expr.type) { + case Syntax.Identifier: + case Syntax.AssignmentExpression: + break; + case Syntax.SequenceExpression: + params = expr.expressions; + break; + case PlaceHolders.ArrowParameterPlaceHolder: + params = expr.params; + break; + default: + return null; + } + + options = { + paramSet: {} + }; + + for (i = 0, len = params.length; i < len; i += 1) { + param = params[i]; + if (param.type === Syntax.Identifier) { + params[i] = param; + defaults.push(null); + validateParam(options, param, param.name); + } else if (param.type === Syntax.RestElement) { + params[i] = param; + defaults.push(null); + validateParam(options, param.argument, param.argument.name); + } else if (param.type === Syntax.AssignmentExpression) { + params[i] = param.left; + defaults.push(param.right); + ++defaultCount; + validateParam(options, param.left, param.left.name); + } else { + return null; + } + } + + if (options.message === Messages.StrictParamDupe) { + token = strict ? options.stricted : options.firstRestricted; + throwUnexpectedToken(token, options.message); + } + + if (defaultCount === 0) { + defaults = []; + } + + return { + params: params, + defaults: defaults, + stricted: options.stricted, + firstRestricted: options.firstRestricted, + message: options.message + }; + } + + function parseArrowFunctionExpression(options, node) { + var previousStrict, body; + + expect('=>'); + previousStrict = strict; + + body = parseConciseBody(); + + if (strict && options.firstRestricted) { + throwUnexpectedToken(options.firstRestricted, options.message); + } + if (strict && options.stricted) { + tolerateUnexpectedToken(options.stricted, options.message); + } + + strict = previousStrict; + + return node.finishArrowFunctionExpression(options.params, options.defaults, body, body.type !== Syntax.BlockStatement); + } + + // 11.13 Assignment Operators + + function parseAssignmentExpression() { + var token, expr, right, list, startToken; + + startToken = lookahead; + token = lookahead; + + expr = parseConditionalExpression(); + + if (expr.type === PlaceHolders.ArrowParameterPlaceHolder || match('=>')) { + list = reinterpretAsCoverFormalsList(expr); + + if (list) { + return parseArrowFunctionExpression(list, new WrappingNode(startToken)); + } + } + + if (matchAssign()) { + // LeftHandSideExpression + if (!isLeftHandSide(expr)) { + tolerateError(Messages.InvalidLHSInAssignment); + } + + // 11.13.1 + if (strict && expr.type === Syntax.Identifier && isRestrictedWord(expr.name)) { + tolerateUnexpectedToken(token, Messages.StrictLHSAssignment); + } + + token = lex(); + right = parseAssignmentExpression(); + expr = new WrappingNode(startToken).finishAssignmentExpression(token.value, expr, right); + } + + return expr; + } + + // 11.14 Comma Operator + + function parseExpression() { + var expr, startToken = lookahead, expressions; + + expr = parseAssignmentExpression(); + + if (match(',')) { + expressions = [expr]; + + while (startIndex < length) { + if (!match(',')) { + break; + } + lex(); + expressions.push(parseAssignmentExpression()); + } + + expr = new WrappingNode(startToken).finishSequenceExpression(expressions); + } + + return expr; + } + + // 12.1 Block + + function parseStatementListItem() { + if (lookahead.type === Token.Keyword) { + switch (lookahead.value) { + case 'const': + case 'let': + return parseLexicalDeclaration(); + case 'function': + return parseFunctionDeclaration(new Node()); + case 'class': + return parseClassDeclaration(); + } + } + + return parseStatement(); + } + + function parseStatementList() { + var list = []; + while (startIndex < length) { + if (match('}')) { + break; + } + list.push(parseStatementListItem()); + } + + return list; + } + + function parseBlock() { + var block, node = new Node(); + + expect('{'); + + block = parseStatementList(); + + expect('}'); + + return node.finishBlockStatement(block); + } + + // 12.2 Variable Statement + + function parseVariableIdentifier() { + var token, node = new Node(); + + token = lex(); + + if (token.type !== Token.Identifier) { + if (strict && token.type === Token.Keyword && isStrictModeReservedWord(token.value)) { + tolerateUnexpectedToken(token, Messages.StrictReservedWord); + } else { + throwUnexpectedToken(token); + } + } + + return node.finishIdentifier(token.value); + } + + function parseVariableDeclaration() { + var init = null, id, node = new Node(); + + id = parseVariableIdentifier(); + + // 12.2.1 + if (strict && isRestrictedWord(id.name)) { + tolerateError(Messages.StrictVarName); + } + + if (match('=')) { + lex(); + init = parseAssignmentExpression(); + } + + return node.finishVariableDeclarator(id, init); + } + + function parseVariableDeclarationList() { + var list = []; + + do { + list.push(parseVariableDeclaration()); + if (!match(',')) { + break; + } + lex(); + } while (startIndex < length); + + return list; + } + + function parseVariableStatement(node) { + var declarations; + + expectKeyword('var'); + + declarations = parseVariableDeclarationList(); + + consumeSemicolon(); + + return node.finishVariableDeclaration(declarations); + } + + function parseLexicalBinding(kind) { + var init = null, id, node = new Node(); + + id = parseVariableIdentifier(); + + // 12.2.1 + if (strict && isRestrictedWord(id.name)) { + tolerateError(Messages.StrictVarName); + } + + if (kind === 'const') { + if (!matchKeyword('in')) { + expect('='); + init = parseAssignmentExpression(); + } + } else if (match('=')) { + lex(); + init = parseAssignmentExpression(); + } + + return node.finishVariableDeclarator(id, init); + } + + function parseBindingList(kind) { + var list = []; + + do { + list.push(parseLexicalBinding(kind)); + if (!match(',')) { + break; + } + lex(); + } while (startIndex < length); + + return list; + } + + function parseLexicalDeclaration() { + var kind, declarations, node = new Node(); + + kind = lex().value; + assert(kind === 'let' || kind === 'const', 'Lexical declaration must be either let or const'); + + declarations = parseBindingList(kind); + + consumeSemicolon(); + + return node.finishLexicalDeclaration(declarations, kind); + } + + function parseRestElement() { + var param, node = new Node(); + + lex(); + + if (match('{')) { + throwError(Messages.ObjectPatternAsRestParameter); + } + + param = parseVariableIdentifier(); + + if (match('=')) { + throwError(Messages.DefaultRestParameter); + } + + if (!match(')')) { + throwError(Messages.ParameterAfterRestParameter); + } + + return node.finishRestElement(param); + } + + // 12.3 Empty Statement + + function parseEmptyStatement(node) { + expect(';'); + return node.finishEmptyStatement(); + } + + // 12.4 Expression Statement + + function parseExpressionStatement(node) { + var expr = parseExpression(); + consumeSemicolon(); + return node.finishExpressionStatement(expr); + } + + // 12.5 If statement + + function parseIfStatement(node) { + var test, consequent, alternate; + + expectKeyword('if'); + + expect('('); + + test = parseExpression(); + + expect(')'); + + consequent = parseStatement(); + + if (matchKeyword('else')) { + lex(); + alternate = parseStatement(); + } else { + alternate = null; + } + + return node.finishIfStatement(test, consequent, alternate); + } + + // 12.6 Iteration Statements + + function parseDoWhileStatement(node) { + var body, test, oldInIteration; + + expectKeyword('do'); + + oldInIteration = state.inIteration; + state.inIteration = true; + + body = parseStatement(); + + state.inIteration = oldInIteration; + + expectKeyword('while'); + + expect('('); + + test = parseExpression(); + + expect(')'); + + if (match(';')) { + lex(); + } + + return node.finishDoWhileStatement(body, test); + } + + function parseWhileStatement(node) { + var test, body, oldInIteration; + + expectKeyword('while'); + + expect('('); + + test = parseExpression(); + + expect(')'); + + oldInIteration = state.inIteration; + state.inIteration = true; + + body = parseStatement(); + + state.inIteration = oldInIteration; + + return node.finishWhileStatement(test, body); + } + + function parseForStatement(node) { + var init, test, update, left, right, kind, declarations, + body, oldInIteration, previousAllowIn = state.allowIn; + + init = test = update = null; + + expectKeyword('for'); + + expect('('); + + if (match(';')) { + lex(); + } else { + if (matchKeyword('var')) { + init = new Node(); + lex(); + + state.allowIn = false; + init = init.finishVariableDeclaration(parseVariableDeclarationList()); + state.allowIn = previousAllowIn; + + if (init.declarations.length === 1 && matchKeyword('in')) { + lex(); + left = init; + right = parseExpression(); + init = null; + } else { + expect(';'); + } + } else if (matchKeyword('const') || matchKeyword('let')) { + init = new Node(); + kind = lex().value; + + state.allowIn = false; + declarations = parseBindingList(kind); + state.allowIn = previousAllowIn; + + if (declarations.length === 1 && declarations[0].init === null && matchKeyword('in')) { + init = init.finishLexicalDeclaration(declarations, kind); + lex(); + left = init; + right = parseExpression(); + init = null; + } else { + consumeSemicolon(); + init = init.finishLexicalDeclaration(declarations, kind); + } + } else { + state.allowIn = false; + init = parseExpression(); + state.allowIn = previousAllowIn; + + if (matchKeyword('in')) { + // LeftHandSideExpression + if (!isLeftHandSide(init)) { + tolerateError(Messages.InvalidLHSInForIn); + } + + lex(); + left = init; + right = parseExpression(); + init = null; + } else { + expect(';'); + } + } + } + + if (typeof left === 'undefined') { + + if (!match(';')) { + test = parseExpression(); + } + expect(';'); + + if (!match(')')) { + update = parseExpression(); + } + } + + expect(')'); + + oldInIteration = state.inIteration; + state.inIteration = true; + + body = parseStatement(); + + state.inIteration = oldInIteration; + + return (typeof left === 'undefined') ? + node.finishForStatement(init, test, update, body) : + node.finishForInStatement(left, right, body); + } + + // 12.7 The continue statement + + function parseContinueStatement(node) { + var label = null, key; + + expectKeyword('continue'); + + // Optimize the most common form: 'continue;'. + if (source.charCodeAt(startIndex) === 0x3B) { + lex(); + + if (!state.inIteration) { + throwError(Messages.IllegalContinue); + } + + return node.finishContinueStatement(null); + } + + if (hasLineTerminator) { + if (!state.inIteration) { + throwError(Messages.IllegalContinue); + } + + return node.finishContinueStatement(null); + } + + if (lookahead.type === Token.Identifier) { + label = parseVariableIdentifier(); + + key = '$' + label.name; + if (!Object.prototype.hasOwnProperty.call(state.labelSet, key)) { + throwError(Messages.UnknownLabel, label.name); + } + } + + consumeSemicolon(); + + if (label === null && !state.inIteration) { + throwError(Messages.IllegalContinue); + } + + return node.finishContinueStatement(label); + } + + // 12.8 The break statement + + function parseBreakStatement(node) { + var label = null, key; + + expectKeyword('break'); + + // Catch the very common case first: immediately a semicolon (U+003B). + if (source.charCodeAt(lastIndex) === 0x3B) { + lex(); + + if (!(state.inIteration || state.inSwitch)) { + throwError(Messages.IllegalBreak); + } + + return node.finishBreakStatement(null); + } + + if (hasLineTerminator) { + if (!(state.inIteration || state.inSwitch)) { + throwError(Messages.IllegalBreak); + } + + return node.finishBreakStatement(null); + } + + if (lookahead.type === Token.Identifier) { + label = parseVariableIdentifier(); + + key = '$' + label.name; + if (!Object.prototype.hasOwnProperty.call(state.labelSet, key)) { + throwError(Messages.UnknownLabel, label.name); + } + } + + consumeSemicolon(); + + if (label === null && !(state.inIteration || state.inSwitch)) { + throwError(Messages.IllegalBreak); + } + + return node.finishBreakStatement(label); + } + + // 12.9 The return statement + + function parseReturnStatement(node) { + var argument = null; + + expectKeyword('return'); + + if (!state.inFunctionBody) { + tolerateError(Messages.IllegalReturn); + } + + // 'return' followed by a space and an identifier is very common. + if (source.charCodeAt(lastIndex) === 0x20) { + if (isIdentifierStart(source.charCodeAt(lastIndex + 1))) { + argument = parseExpression(); + consumeSemicolon(); + return node.finishReturnStatement(argument); + } + } + + if (hasLineTerminator) { + // HACK + return node.finishReturnStatement(null); + } + + if (!match(';')) { + if (!match('}') && lookahead.type !== Token.EOF) { + argument = parseExpression(); + } + } + + consumeSemicolon(); + + return node.finishReturnStatement(argument); + } + + // 12.10 The with statement + + function parseWithStatement(node) { + var object, body; + + if (strict) { + tolerateError(Messages.StrictModeWith); + } + + expectKeyword('with'); + + expect('('); + + object = parseExpression(); + + expect(')'); + + body = parseStatement(); + + return node.finishWithStatement(object, body); + } + + // 12.10 The swith statement + + function parseSwitchCase() { + var test, consequent = [], statement, node = new Node(); + + if (matchKeyword('default')) { + lex(); + test = null; + } else { + expectKeyword('case'); + test = parseExpression(); + } + expect(':'); + + while (startIndex < length) { + if (match('}') || matchKeyword('default') || matchKeyword('case')) { + break; + } + statement = parseStatementListItem(); + consequent.push(statement); + } + + return node.finishSwitchCase(test, consequent); + } + + function parseSwitchStatement(node) { + var discriminant, cases, clause, oldInSwitch, defaultFound; + + expectKeyword('switch'); + + expect('('); + + discriminant = parseExpression(); + + expect(')'); + + expect('{'); + + cases = []; + + if (match('}')) { + lex(); + return node.finishSwitchStatement(discriminant, cases); + } + + oldInSwitch = state.inSwitch; + state.inSwitch = true; + defaultFound = false; + + while (startIndex < length) { + if (match('}')) { + break; + } + clause = parseSwitchCase(); + if (clause.test === null) { + if (defaultFound) { + throwError(Messages.MultipleDefaultsInSwitch); + } + defaultFound = true; + } + cases.push(clause); + } + + state.inSwitch = oldInSwitch; + + expect('}'); + + return node.finishSwitchStatement(discriminant, cases); + } + + // 12.13 The throw statement + + function parseThrowStatement(node) { + var argument; + + expectKeyword('throw'); + + if (hasLineTerminator) { + throwError(Messages.NewlineAfterThrow); + } + + argument = parseExpression(); + + consumeSemicolon(); + + return node.finishThrowStatement(argument); + } + + // 12.14 The try statement + + function parseCatchClause() { + var param, body, node = new Node(); + + expectKeyword('catch'); + + expect('('); + if (match(')')) { + throwUnexpectedToken(lookahead); + } + + param = parseVariableIdentifier(); + // 12.14.1 + if (strict && isRestrictedWord(param.name)) { + tolerateError(Messages.StrictCatchVariable); + } + + expect(')'); + body = parseBlock(); + return node.finishCatchClause(param, body); + } + + function parseTryStatement(node) { + var block, handler = null, finalizer = null; + + expectKeyword('try'); + + block = parseBlock(); + + if (matchKeyword('catch')) { + handler = parseCatchClause(); + } + + if (matchKeyword('finally')) { + lex(); + finalizer = parseBlock(); + } + + if (!handler && !finalizer) { + throwError(Messages.NoCatchOrFinally); + } + + return node.finishTryStatement(block, handler, finalizer); + } + + // 12.15 The debugger statement + + function parseDebuggerStatement(node) { + expectKeyword('debugger'); + + consumeSemicolon(); + + return node.finishDebuggerStatement(); + } + + // 12 Statements + + function parseStatement() { + var type = lookahead.type, + expr, + labeledBody, + key, + node; + + if (type === Token.EOF) { + throwUnexpectedToken(lookahead); + } + + if (type === Token.Punctuator && lookahead.value === '{') { + return parseBlock(); + } + + node = new Node(); + + if (type === Token.Punctuator) { + switch (lookahead.value) { + case ';': + return parseEmptyStatement(node); + case '(': + return parseExpressionStatement(node); + default: + break; + } + } else if (type === Token.Keyword) { + switch (lookahead.value) { + case 'break': + return parseBreakStatement(node); + case 'continue': + return parseContinueStatement(node); + case 'debugger': + return parseDebuggerStatement(node); + case 'do': + return parseDoWhileStatement(node); + case 'for': + return parseForStatement(node); + case 'function': + return parseFunctionDeclaration(node); + case 'if': + return parseIfStatement(node); + case 'return': + return parseReturnStatement(node); + case 'switch': + return parseSwitchStatement(node); + case 'throw': + return parseThrowStatement(node); + case 'try': + return parseTryStatement(node); + case 'var': + return parseVariableStatement(node); + case 'while': + return parseWhileStatement(node); + case 'with': + return parseWithStatement(node); + default: + break; + } + } + + expr = parseExpression(); + + // 12.12 Labelled Statements + if ((expr.type === Syntax.Identifier) && match(':')) { + lex(); + + key = '$' + expr.name; + if (Object.prototype.hasOwnProperty.call(state.labelSet, key)) { + throwError(Messages.Redeclaration, 'Label', expr.name); + } + + state.labelSet[key] = true; + labeledBody = parseStatement(); + delete state.labelSet[key]; + return node.finishLabeledStatement(expr, labeledBody); + } + + consumeSemicolon(); + + return node.finishExpressionStatement(expr); + } + + // 13 Function Definition + + function parseFunctionSourceElements() { + var statement, body = [], token, directive, firstRestricted, + oldLabelSet, oldInIteration, oldInSwitch, oldInFunctionBody, oldParenthesisCount, + node = new Node(); + + expect('{'); + + while (startIndex < length) { + if (lookahead.type !== Token.StringLiteral) { + break; + } + token = lookahead; + + statement = parseStatementListItem(); + body.push(statement); + if (statement.expression.type !== Syntax.Literal) { + // this is not directive + break; + } + directive = source.slice(token.start + 1, token.end - 1); + if (directive === 'use strict') { + strict = true; + if (firstRestricted) { + tolerateUnexpectedToken(firstRestricted, Messages.StrictOctalLiteral); + } + } else { + if (!firstRestricted && token.octal) { + firstRestricted = token; + } + } + } + + oldLabelSet = state.labelSet; + oldInIteration = state.inIteration; + oldInSwitch = state.inSwitch; + oldInFunctionBody = state.inFunctionBody; + oldParenthesisCount = state.parenthesizedCount; + + state.labelSet = {}; + state.inIteration = false; + state.inSwitch = false; + state.inFunctionBody = true; + state.parenthesizedCount = 0; + + while (startIndex < length) { + if (match('}')) { + break; + } + body.push(parseStatementListItem()); + } + + expect('}'); + + state.labelSet = oldLabelSet; + state.inIteration = oldInIteration; + state.inSwitch = oldInSwitch; + state.inFunctionBody = oldInFunctionBody; + state.parenthesizedCount = oldParenthesisCount; + + return node.finishBlockStatement(body); + } + + function validateParam(options, param, name) { + var key = '$' + name; + if (strict) { + if (isRestrictedWord(name)) { + options.stricted = param; + options.message = Messages.StrictParamName; + } + if (Object.prototype.hasOwnProperty.call(options.paramSet, key)) { + options.stricted = param; + options.message = Messages.StrictParamDupe; + } + } else if (!options.firstRestricted) { + if (isRestrictedWord(name)) { + options.firstRestricted = param; + options.message = Messages.StrictParamName; + } else if (isStrictModeReservedWord(name)) { + options.firstRestricted = param; + options.message = Messages.StrictReservedWord; + } else if (Object.prototype.hasOwnProperty.call(options.paramSet, key)) { + options.firstRestricted = param; + options.message = Messages.StrictParamDupe; + } + } + options.paramSet[key] = true; + } + + function parseParam(options) { + var token, param, def; + + token = lookahead; + if (token.value === '...') { + param = parseRestElement(); + validateParam(options, param.argument, param.argument.name); + options.params.push(param); + options.defaults.push(null); + return false; + } + + param = parseVariableIdentifier(); + validateParam(options, token, token.value); + + if (match('=')) { + lex(); + def = parseAssignmentExpression(); + ++options.defaultCount; + } + + options.params.push(param); + options.defaults.push(def); + + return !match(')'); + } + + function parseParams(firstRestricted) { + var options; + + options = { + params: [], + defaultCount: 0, + defaults: [], + firstRestricted: firstRestricted + }; + + expect('('); + + if (!match(')')) { + options.paramSet = {}; + while (startIndex < length) { + if (!parseParam(options)) { + break; + } + expect(','); + } + } + + expect(')'); + + if (options.defaultCount === 0) { + options.defaults = []; + } + + return { + params: options.params, + defaults: options.defaults, + stricted: options.stricted, + firstRestricted: options.firstRestricted, + message: options.message + }; + } + + function parseFunctionDeclaration(node) { + var id, params = [], defaults = [], body, token, stricted, tmp, firstRestricted, message, previousStrict; + + expectKeyword('function'); + token = lookahead; + id = parseVariableIdentifier(); + if (strict) { + if (isRestrictedWord(token.value)) { + tolerateUnexpectedToken(token, Messages.StrictFunctionName); + } + } else { + if (isRestrictedWord(token.value)) { + firstRestricted = token; + message = Messages.StrictFunctionName; + } else if (isStrictModeReservedWord(token.value)) { + firstRestricted = token; + message = Messages.StrictReservedWord; + } + } + + tmp = parseParams(firstRestricted); + params = tmp.params; + defaults = tmp.defaults; + stricted = tmp.stricted; + firstRestricted = tmp.firstRestricted; + if (tmp.message) { + message = tmp.message; + } + + previousStrict = strict; + body = parseFunctionSourceElements(); + if (strict && firstRestricted) { + throwUnexpectedToken(firstRestricted, message); + } + if (strict && stricted) { + tolerateUnexpectedToken(stricted, message); + } + strict = previousStrict; + + return node.finishFunctionDeclaration(id, params, defaults, body); + } + + function parseFunctionExpression() { + var token, id = null, stricted, firstRestricted, message, tmp, + params = [], defaults = [], body, previousStrict, node = new Node(); + + expectKeyword('function'); + + if (!match('(')) { + token = lookahead; + id = parseVariableIdentifier(); + if (strict) { + if (isRestrictedWord(token.value)) { + tolerateUnexpectedToken(token, Messages.StrictFunctionName); + } + } else { + if (isRestrictedWord(token.value)) { + firstRestricted = token; + message = Messages.StrictFunctionName; + } else if (isStrictModeReservedWord(token.value)) { + firstRestricted = token; + message = Messages.StrictReservedWord; + } + } + } + + tmp = parseParams(firstRestricted); + params = tmp.params; + defaults = tmp.defaults; + stricted = tmp.stricted; + firstRestricted = tmp.firstRestricted; + if (tmp.message) { + message = tmp.message; + } + + previousStrict = strict; + body = parseFunctionSourceElements(); + if (strict && firstRestricted) { + throwUnexpectedToken(firstRestricted, message); + } + if (strict && stricted) { + tolerateUnexpectedToken(stricted, message); + } + strict = previousStrict; + + return node.finishFunctionExpression(id, params, defaults, body); + } + + + function parseClassBody() { + var classBody, token, isStatic, hasConstructor = false, body, method, computed, key; + + classBody = new Node(); + + expect('{'); + body = []; + while (!match('}')) { + if (match(';')) { + lex(); + } else { + method = new Node(); + token = lookahead; + isStatic = false; + computed = match('['); + key = parseObjectPropertyKey(); + if (key.name === 'static' && lookaheadPropertyName()) { + token = lookahead; + isStatic = true; + computed = match('['); + key = parseObjectPropertyKey(); + } + method = tryParseMethodDefinition(token, key, computed, method); + if (method) { + method.static = isStatic; + if (method.kind === 'init') { + method.kind = 'method'; + } + if (!isStatic) { + if (!method.computed && (method.key.name || method.key.value.toString()) === 'constructor') { + if (method.kind !== 'method' || !method.method || method.value.generator) { + throwUnexpectedToken(token, Messages.ConstructorSpecialMethod); + } + if (hasConstructor) { + throwUnexpectedToken(token, Messages.DuplicateConstructor); + } else { + hasConstructor = true; + } + method.kind = 'constructor'; + } + } else { + if (!method.computed && (method.key.name || method.key.value.toString()) === 'prototype') { + throwUnexpectedToken(token, Messages.StaticPrototype); + } + } + method.type = Syntax.MethodDefinition; + delete method.method; + delete method.shorthand; + body.push(method); + } else { + throwUnexpectedToken(lookahead); + } + } + } + lex(); + return classBody.finishClassBody(body); + } + + function parseClassDeclaration() { + var id = null, superClass = null, classNode = new Node(), classBody, previousStrict = strict; + strict = true; + + expectKeyword('class'); + + id = parseVariableIdentifier(); + + if (matchKeyword('extends')) { + lex(); + superClass = parseLeftHandSideExpressionAllowCall(); + } + classBody = parseClassBody(); + strict = previousStrict; + + return classNode.finishClassDeclaration(id, superClass, classBody); + } + + function parseClassExpression() { + var id = null, superClass = null, classNode = new Node(), classBody, previousStrict = strict; + strict = true; + + expectKeyword('class'); + + if (lookahead.type === Token.Identifier) { + id = parseVariableIdentifier(); + } + + if (matchKeyword('extends')) { + lex(); + superClass = parseLeftHandSideExpressionAllowCall(); + } + classBody = parseClassBody(); + strict = previousStrict; + + return classNode.finishClassExpression(id, superClass, classBody); + } + + // 14 Program + + function parseScriptBody() { + var statement, body = [], token, directive, firstRestricted; + + while (startIndex < length) { + token = lookahead; + if (token.type !== Token.StringLiteral) { + break; + } + + statement = parseStatementListItem(); + body.push(statement); + if (statement.expression.type !== Syntax.Literal) { + // this is not directive + break; + } + directive = source.slice(token.start + 1, token.end - 1); + if (directive === 'use strict') { + strict = true; + if (firstRestricted) { + tolerateUnexpectedToken(firstRestricted, Messages.StrictOctalLiteral); + } + } else { + if (!firstRestricted && token.octal) { + firstRestricted = token; + } + } + } + + while (startIndex < length) { + statement = parseStatementListItem(); + /* istanbul ignore if */ + if (typeof statement === 'undefined') { + break; + } + body.push(statement); + } + return body; + } + + function parseProgram() { + var body, node; + + peek(); + node = new Node(); + strict = false; + + body = parseScriptBody(); + return node.finishProgram(body); + } + + function filterTokenLocation() { + var i, entry, token, tokens = []; + + for (i = 0; i < extra.tokens.length; ++i) { + entry = extra.tokens[i]; + token = { + type: entry.type, + value: entry.value + }; + if (entry.regex) { + token.regex = { + pattern: entry.regex.pattern, + flags: entry.regex.flags + }; + } + if (extra.range) { + token.range = entry.range; + } + if (extra.loc) { + token.loc = entry.loc; + } + tokens.push(token); + } + + extra.tokens = tokens; + } + + function tokenize(code, options) { + var toString, + tokens; + + toString = String; + if (typeof code !== 'string' && !(code instanceof String)) { + code = toString(code); + } + + source = code; + index = 0; + lineNumber = (source.length > 0) ? 1 : 0; + lineStart = 0; + startIndex = index; + startLineNumber = lineNumber; + startLineStart = lineStart; + length = source.length; + lookahead = null; + state = { + allowIn: true, + labelSet: {}, + inFunctionBody: false, + inIteration: false, + inSwitch: false, + lastCommentStart: -1 + }; + + extra = {}; + + // Options matching. + options = options || {}; + + // Of course we collect tokens here. + options.tokens = true; + extra.tokens = []; + extra.tokenize = true; + // The following two fields are necessary to compute the Regex tokens. + extra.openParenToken = -1; + extra.openCurlyToken = -1; + + extra.range = (typeof options.range === 'boolean') && options.range; + extra.loc = (typeof options.loc === 'boolean') && options.loc; + + if (typeof options.comment === 'boolean' && options.comment) { + extra.comments = []; + } + if (typeof options.tolerant === 'boolean' && options.tolerant) { + extra.errors = []; + } + + try { + peek(); + if (lookahead.type === Token.EOF) { + return extra.tokens; + } + + lex(); + while (lookahead.type !== Token.EOF) { + try { + lex(); + } catch (lexError) { + if (extra.errors) { + recordError(lexError); + // We have to break on the first error + // to avoid infinite loops. + break; + } else { + throw lexError; + } + } + } + + filterTokenLocation(); + tokens = extra.tokens; + if (typeof extra.comments !== 'undefined') { + tokens.comments = extra.comments; + } + if (typeof extra.errors !== 'undefined') { + tokens.errors = extra.errors; + } + } catch (e) { + throw e; + } finally { + extra = {}; + } + return tokens; + } + + function parse(code, options) { + var program, toString; + + toString = String; + if (typeof code !== 'string' && !(code instanceof String)) { + code = toString(code); + } + + source = code; + index = 0; + lineNumber = (source.length > 0) ? 1 : 0; + lineStart = 0; + startIndex = index; + startLineNumber = lineNumber; + startLineStart = lineStart; + length = source.length; + lookahead = null; + state = { + allowIn: true, + labelSet: {}, + inFunctionBody: false, + inIteration: false, + inSwitch: false, + lastCommentStart: -1 + }; + + extra = {}; + if (typeof options !== 'undefined') { + extra.range = (typeof options.range === 'boolean') && options.range; + extra.loc = (typeof options.loc === 'boolean') && options.loc; + extra.attachComment = (typeof options.attachComment === 'boolean') && options.attachComment; + + if (extra.loc && options.source !== null && options.source !== undefined) { + extra.source = toString(options.source); + } + + if (typeof options.tokens === 'boolean' && options.tokens) { + extra.tokens = []; + } + if (typeof options.comment === 'boolean' && options.comment) { + extra.comments = []; + } + if (typeof options.tolerant === 'boolean' && options.tolerant) { + extra.errors = []; + } + if (extra.attachComment) { + extra.range = true; + extra.comments = []; + extra.bottomRightStack = []; + extra.trailingComments = []; + extra.leadingComments = []; + } + } + + try { + program = parseProgram(); + if (typeof extra.comments !== 'undefined') { + program.comments = extra.comments; + } + if (typeof extra.tokens !== 'undefined') { + filterTokenLocation(); + program.tokens = extra.tokens; + } + if (typeof extra.errors !== 'undefined') { + program.errors = extra.errors; + } + } catch (e) { + throw e; + } finally { + extra = {}; + } + + return program; + } + + // Sync with *.json manifests. + exports.version = '2.1.0'; + + exports.tokenize = tokenize; + + exports.parse = parse; + + // Deep copy. + /* istanbul ignore next */ + exports.Syntax = (function () { + var name, types = {}; + + if (typeof Object.create === 'function') { + types = Object.create(null); + } + + for (name in Syntax) { + if (Syntax.hasOwnProperty(name)) { + types[name] = Syntax[name]; + } + } + + if (typeof Object.freeze === 'function') { + Object.freeze(types); + } + + return types; + }()); + +})); +/* vim: set sw=4 ts=4 et tw=80 : */ +/** + * @license Copyright (c) 2012-2014, The Dojo Foundation All Rights Reserved. + * Available via the MIT or new BSD license. + * see: http://github.com/jrburke/requirejs for details + */ + +/*global define, Reflect */ + +/* + * xpcshell has a smaller stack on linux and windows (1MB vs 9MB on mac), + * and the recursive nature of esprima can cause it to overflow pretty + * quickly. So favor it built in Reflect parser: + * https://developer.mozilla.org/en-US/docs/SpiderMonkey/Parser_API + */ +define('esprimaAdapter', ['./esprima', 'env'], function (esprima, env) { + if (env.get() === 'xpconnect' && typeof Reflect !== 'undefined') { + return Reflect; + } else { + return esprima; + } +}); +define('uglifyjs/consolidator', ["require", "exports", "module", "./parse-js", "./process"], function(require, exports, module) { +/** + * @preserve Copyright 2012 Robert Gust-Bardon . + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above + * copyright notice, this list of conditions and the following + * disclaimer. + * + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials + * provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER "AS IS" AND ANY + * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, + * OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR + * TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF + * THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + * SUCH DAMAGE. + */ + +/** + * @fileoverview Enhances UglifyJS with consolidation of null, Boolean, and String values. + *

Also known as aliasing, this feature has been deprecated in the Closure Compiler since its + * initial release, where it is unavailable from the CLI. The Closure Compiler allows one to log and + * influence this process. In contrast, this implementation does not introduce + * any variable declarations in global code and derives String values from + * identifier names used as property accessors.

+ *

Consolidating literals may worsen the data compression ratio when an encoding + * transformation is applied. For instance, jQuery 1.7.1 takes 248235 bytes. + * Building it with + * UglifyJS v1.2.5 results in 93647 bytes (37.73% of the original) which are + * then compressed to 33154 bytes (13.36% of the original) using gzip(1). Building it with the same + * version of UglifyJS 1.2.5 patched with the implementation of consolidation + * results in 80784 bytes (a decrease of 12863 bytes, i.e. 13.74%, in comparison + * to the aforementioned 93647 bytes) which are then compressed to 34013 bytes + * (an increase of 859 bytes, i.e. 2.59%, in comparison to the aforementioned + * 33154 bytes).

+ *

Written in the strict variant + * of ECMA-262 5.1 Edition. Encoded in UTF-8. Follows Revision 2.28 of the Google JavaScript Style Guide (except for the + * discouraged use of the {@code function} tag and the {@code namespace} tag). + * 100% typed for the Closure Compiler Version 1741.

+ *

Should you find this software useful, please consider a donation.

+ * @author follow.me@RGustBardon (Robert Gust-Bardon) + * @supported Tested with: + * + */ + +/*global console:false, exports:true, module:false, require:false */ +/*jshint sub:true */ +/** + * Consolidates null, Boolean, and String values found inside an AST. + * @param {!TSyntacticCodeUnit} oAbstractSyntaxTree An array-like object + * representing an AST. + * @return {!TSyntacticCodeUnit} An array-like object representing an AST with its null, Boolean, and + * String values consolidated. + */ +// TODO(user) Consolidation of mathematical values found in numeric literals. +// TODO(user) Unconsolidation. +// TODO(user) Consolidation of ECMA-262 6th Edition programs. +// TODO(user) Rewrite in ECMA-262 6th Edition. +exports['ast_consolidate'] = function(oAbstractSyntaxTree) { + 'use strict'; + /*jshint bitwise:true, curly:true, eqeqeq:true, forin:true, immed:true, + latedef:true, newcap:true, noarge:true, noempty:true, nonew:true, + onevar:true, plusplus:true, regexp:true, undef:true, strict:true, + sub:false, trailing:true */ + + var _, + /** + * A record consisting of data about one or more source elements. + * @constructor + * @nosideeffects + */ + TSourceElementsData = function() { + /** + * The category of the elements. + * @type {number} + * @see ESourceElementCategories + */ + this.nCategory = ESourceElementCategories.N_OTHER; + /** + * The number of occurrences (within the elements) of each primitive + * value that could be consolidated. + * @type {!Array.>} + */ + this.aCount = []; + this.aCount[EPrimaryExpressionCategories.N_IDENTIFIER_NAMES] = {}; + this.aCount[EPrimaryExpressionCategories.N_STRING_LITERALS] = {}; + this.aCount[EPrimaryExpressionCategories.N_NULL_AND_BOOLEAN_LITERALS] = + {}; + /** + * Identifier names found within the elements. + * @type {!Array.} + */ + this.aIdentifiers = []; + /** + * Prefixed representation Strings of each primitive value that could be + * consolidated within the elements. + * @type {!Array.} + */ + this.aPrimitiveValues = []; + }, + /** + * A record consisting of data about a primitive value that could be + * consolidated. + * @constructor + * @nosideeffects + */ + TPrimitiveValue = function() { + /** + * The difference in the number of terminal symbols between the original + * source text and the one with the primitive value consolidated. If the + * difference is positive, the primitive value is considered worthwhile. + * @type {number} + */ + this.nSaving = 0; + /** + * An identifier name of the variable that will be declared and assigned + * the primitive value if the primitive value is consolidated. + * @type {string} + */ + this.sName = ''; + }, + /** + * A record consisting of data on what to consolidate within the range of + * source elements that is currently being considered. + * @constructor + * @nosideeffects + */ + TSolution = function() { + /** + * An object whose keys are prefixed representation Strings of each + * primitive value that could be consolidated within the elements and + * whose values are corresponding data about those primitive values. + * @type {!Object.} + * @see TPrimitiveValue + */ + this.oPrimitiveValues = {}; + /** + * The difference in the number of terminal symbols between the original + * source text and the one with all the worthwhile primitive values + * consolidated. + * @type {number} + * @see TPrimitiveValue#nSaving + */ + this.nSavings = 0; + }, + /** + * The processor of ASTs found + * in UglifyJS. + * @namespace + * @type {!TProcessor} + */ + oProcessor = (/** @type {!TProcessor} */ require('./process')), + /** + * A record consisting of a number of constants that represent the + * difference in the number of terminal symbols between a source text with + * a modified syntactic code unit and the original one. + * @namespace + * @type {!Object.} + */ + oWeights = { + /** + * The difference in the number of punctuators required by the bracket + * notation and the dot notation. + *

'[]'.length - '.'.length

+ * @const + * @type {number} + */ + N_PROPERTY_ACCESSOR: 1, + /** + * The number of punctuators required by a variable declaration with an + * initialiser. + *

':'.length + ';'.length

+ * @const + * @type {number} + */ + N_VARIABLE_DECLARATION: 2, + /** + * The number of terminal symbols required to introduce a variable + * statement (excluding its variable declaration list). + *

'var '.length

+ * @const + * @type {number} + */ + N_VARIABLE_STATEMENT_AFFIXATION: 4, + /** + * The number of terminal symbols needed to enclose source elements + * within a function call with no argument values to a function with an + * empty parameter list. + *

'(function(){}());'.length

+ * @const + * @type {number} + */ + N_CLOSURE: 17 + }, + /** + * Categories of primary expressions from which primitive values that + * could be consolidated are derivable. + * @namespace + * @enum {number} + */ + EPrimaryExpressionCategories = { + /** + * Identifier names used as property accessors. + * @type {number} + */ + N_IDENTIFIER_NAMES: 0, + /** + * String literals. + * @type {number} + */ + N_STRING_LITERALS: 1, + /** + * Null and Boolean literals. + * @type {number} + */ + N_NULL_AND_BOOLEAN_LITERALS: 2 + }, + /** + * Prefixes of primitive values that could be consolidated. + * The String values of the prefixes must have same number of characters. + * The prefixes must not be used in any properties defined in any version + * of ECMA-262. + * @namespace + * @enum {string} + */ + EValuePrefixes = { + /** + * Identifies String values. + * @type {string} + */ + S_STRING: '#S', + /** + * Identifies null and Boolean values. + * @type {string} + */ + S_SYMBOLIC: '#O' + }, + /** + * Categories of source elements in terms of their appropriateness of + * having their primitive values consolidated. + * @namespace + * @enum {number} + */ + ESourceElementCategories = { + /** + * Identifies a source element that includes the {@code with} statement. + * @type {number} + */ + N_WITH: 0, + /** + * Identifies a source element that includes the {@code eval} identifier name. + * @type {number} + */ + N_EVAL: 1, + /** + * Identifies a source element that must be excluded from the process + * unless its whole scope is examined. + * @type {number} + */ + N_EXCLUDABLE: 2, + /** + * Identifies source elements not posing any problems. + * @type {number} + */ + N_OTHER: 3 + }, + /** + * The list of literals (other than the String ones) whose primitive + * values can be consolidated. + * @const + * @type {!Array.} + */ + A_OTHER_SUBSTITUTABLE_LITERALS = [ + 'null', // The null literal. + 'false', // The Boolean literal {@code false}. + 'true' // The Boolean literal {@code true}. + ]; + + (/** + * Consolidates all worthwhile primitive values in a syntactic code unit. + * @param {!TSyntacticCodeUnit} oSyntacticCodeUnit An array-like object + * representing the branch of the abstract syntax tree representing the + * syntactic code unit along with its scope. + * @see TPrimitiveValue#nSaving + */ + function fExamineSyntacticCodeUnit(oSyntacticCodeUnit) { + var _, + /** + * Indicates whether the syntactic code unit represents global code. + * @type {boolean} + */ + bIsGlobal = 'toplevel' === oSyntacticCodeUnit[0], + /** + * Indicates whether the whole scope is being examined. + * @type {boolean} + */ + bIsWhollyExaminable = !bIsGlobal, + /** + * An array-like object representing source elements that constitute a + * syntactic code unit. + * @type {!TSyntacticCodeUnit} + */ + oSourceElements, + /** + * A record consisting of data about the source element that is + * currently being examined. + * @type {!TSourceElementsData} + */ + oSourceElementData, + /** + * The scope of the syntactic code unit. + * @type {!TScope} + */ + oScope, + /** + * An instance of an object that allows the traversal of an AST. + * @type {!TWalker} + */ + oWalker, + /** + * An object encompassing collections of functions used during the + * traversal of an AST. + * @namespace + * @type {!Object.>} + */ + oWalkers = { + /** + * A collection of functions used during the surveyance of source + * elements. + * @namespace + * @type {!Object.} + */ + oSurveySourceElement: { + /**#nocode+*/ // JsDoc Toolkit 2.4.0 hides some of the keys. + /** + * Classifies the source element as excludable if it does not + * contain a {@code with} statement or the {@code eval} identifier + * name. Adds the identifier of the function and its formal + * parameters to the list of identifier names found. + * @param {string} sIdentifier The identifier of the function. + * @param {!Array.} aFormalParameterList Formal parameters. + * @param {!TSyntacticCodeUnit} oFunctionBody Function code. + */ + 'defun': function( + sIdentifier, + aFormalParameterList, + oFunctionBody) { + fClassifyAsExcludable(); + fAddIdentifier(sIdentifier); + aFormalParameterList.forEach(fAddIdentifier); + }, + /** + * Increments the count of the number of occurrences of the String + * value that is equivalent to the sequence of terminal symbols + * that constitute the encountered identifier name. + * @param {!TSyntacticCodeUnit} oExpression The nonterminal + * MemberExpression. + * @param {string} sIdentifierName The identifier name used as the + * property accessor. + * @return {!Array} The encountered branch of an AST with its nonterminal + * MemberExpression traversed. + */ + 'dot': function(oExpression, sIdentifierName) { + fCountPrimaryExpression( + EPrimaryExpressionCategories.N_IDENTIFIER_NAMES, + EValuePrefixes.S_STRING + sIdentifierName); + return ['dot', oWalker.walk(oExpression), sIdentifierName]; + }, + /** + * Adds the optional identifier of the function and its formal + * parameters to the list of identifier names found. + * @param {?string} sIdentifier The optional identifier of the + * function. + * @param {!Array.} aFormalParameterList Formal parameters. + * @param {!TSyntacticCodeUnit} oFunctionBody Function code. + */ + 'function': function( + sIdentifier, + aFormalParameterList, + oFunctionBody) { + if ('string' === typeof sIdentifier) { + fAddIdentifier(sIdentifier); + } + aFormalParameterList.forEach(fAddIdentifier); + }, + /** + * Either increments the count of the number of occurrences of the + * encountered null or Boolean value or classifies a source element + * as containing the {@code eval} identifier name. + * @param {string} sIdentifier The identifier encountered. + */ + 'name': function(sIdentifier) { + if (-1 !== A_OTHER_SUBSTITUTABLE_LITERALS.indexOf(sIdentifier)) { + fCountPrimaryExpression( + EPrimaryExpressionCategories.N_NULL_AND_BOOLEAN_LITERALS, + EValuePrefixes.S_SYMBOLIC + sIdentifier); + } else { + if ('eval' === sIdentifier) { + oSourceElementData.nCategory = + ESourceElementCategories.N_EVAL; + } + fAddIdentifier(sIdentifier); + } + }, + /** + * Classifies the source element as excludable if it does not + * contain a {@code with} statement or the {@code eval} identifier + * name. + * @param {TSyntacticCodeUnit} oExpression The expression whose + * value is to be returned. + */ + 'return': function(oExpression) { + fClassifyAsExcludable(); + }, + /** + * Increments the count of the number of occurrences of the + * encountered String value. + * @param {string} sStringValue The String value of the string + * literal encountered. + */ + 'string': function(sStringValue) { + if (sStringValue.length > 0) { + fCountPrimaryExpression( + EPrimaryExpressionCategories.N_STRING_LITERALS, + EValuePrefixes.S_STRING + sStringValue); + } + }, + /** + * Adds the identifier reserved for an exception to the list of + * identifier names found. + * @param {!TSyntacticCodeUnit} oTry A block of code in which an + * exception can occur. + * @param {Array} aCatch The identifier reserved for an exception + * and a block of code to handle the exception. + * @param {TSyntacticCodeUnit} oFinally An optional block of code + * to be evaluated regardless of whether an exception occurs. + */ + 'try': function(oTry, aCatch, oFinally) { + if (Array.isArray(aCatch)) { + fAddIdentifier(aCatch[0]); + } + }, + /** + * Classifies the source element as excludable if it does not + * contain a {@code with} statement or the {@code eval} identifier + * name. Adds the identifier of each declared variable to the list + * of identifier names found. + * @param {!Array.} aVariableDeclarationList Variable + * declarations. + */ + 'var': function(aVariableDeclarationList) { + fClassifyAsExcludable(); + aVariableDeclarationList.forEach(fAddVariable); + }, + /** + * Classifies a source element as containing the {@code with} + * statement. + * @param {!TSyntacticCodeUnit} oExpression An expression whose + * value is to be converted to a value of type Object and + * become the binding object of a new object environment + * record of a new lexical environment in which the statement + * is to be executed. + * @param {!TSyntacticCodeUnit} oStatement The statement to be + * executed in the augmented lexical environment. + * @return {!Array} An empty array to stop the traversal. + */ + 'with': function(oExpression, oStatement) { + oSourceElementData.nCategory = ESourceElementCategories.N_WITH; + return []; + } + /**#nocode-*/ // JsDoc Toolkit 2.4.0 hides some of the keys. + }, + /** + * A collection of functions used while looking for nested functions. + * @namespace + * @type {!Object.} + */ + oExamineFunctions: { + /**#nocode+*/ // JsDoc Toolkit 2.4.0 hides some of the keys. + /** + * Orders an examination of a nested function declaration. + * @this {!TSyntacticCodeUnit} An array-like object representing + * the branch of an AST representing the syntactic code unit along with + * its scope. + * @return {!Array} An empty array to stop the traversal. + */ + 'defun': function() { + fExamineSyntacticCodeUnit(this); + return []; + }, + /** + * Orders an examination of a nested function expression. + * @this {!TSyntacticCodeUnit} An array-like object representing + * the branch of an AST representing the syntactic code unit along with + * its scope. + * @return {!Array} An empty array to stop the traversal. + */ + 'function': function() { + fExamineSyntacticCodeUnit(this); + return []; + } + /**#nocode-*/ // JsDoc Toolkit 2.4.0 hides some of the keys. + } + }, + /** + * Records containing data about source elements. + * @type {Array.} + */ + aSourceElementsData = [], + /** + * The index (in the source text order) of the source element + * immediately following a Directive Prologue. + * @type {number} + */ + nAfterDirectivePrologue = 0, + /** + * The index (in the source text order) of the source element that is + * currently being considered. + * @type {number} + */ + nPosition, + /** + * The index (in the source text order) of the source element that is + * the last element of the range of source elements that is currently + * being considered. + * @type {(undefined|number)} + */ + nTo, + /** + * Initiates the traversal of a source element. + * @param {!TWalker} oWalker An instance of an object that allows the + * traversal of an abstract syntax tree. + * @param {!TSyntacticCodeUnit} oSourceElement A source element from + * which the traversal should commence. + * @return {function(): !TSyntacticCodeUnit} A function that is able to + * initiate the traversal from a given source element. + */ + cContext = function(oWalker, oSourceElement) { + /** + * @return {!TSyntacticCodeUnit} A function that is able to + * initiate the traversal from a given source element. + */ + var fLambda = function() { + return oWalker.walk(oSourceElement); + }; + + return fLambda; + }, + /** + * Classifies the source element as excludable if it does not + * contain a {@code with} statement or the {@code eval} identifier + * name. + */ + fClassifyAsExcludable = function() { + if (oSourceElementData.nCategory === + ESourceElementCategories.N_OTHER) { + oSourceElementData.nCategory = + ESourceElementCategories.N_EXCLUDABLE; + } + }, + /** + * Adds an identifier to the list of identifier names found. + * @param {string} sIdentifier The identifier to be added. + */ + fAddIdentifier = function(sIdentifier) { + if (-1 === oSourceElementData.aIdentifiers.indexOf(sIdentifier)) { + oSourceElementData.aIdentifiers.push(sIdentifier); + } + }, + /** + * Adds the identifier of a variable to the list of identifier names + * found. + * @param {!Array} aVariableDeclaration A variable declaration. + */ + fAddVariable = function(aVariableDeclaration) { + fAddIdentifier(/** @type {string} */ aVariableDeclaration[0]); + }, + /** + * Increments the count of the number of occurrences of the prefixed + * String representation attributed to the primary expression. + * @param {number} nCategory The category of the primary expression. + * @param {string} sName The prefixed String representation attributed + * to the primary expression. + */ + fCountPrimaryExpression = function(nCategory, sName) { + if (!oSourceElementData.aCount[nCategory].hasOwnProperty(sName)) { + oSourceElementData.aCount[nCategory][sName] = 0; + if (-1 === oSourceElementData.aPrimitiveValues.indexOf(sName)) { + oSourceElementData.aPrimitiveValues.push(sName); + } + } + oSourceElementData.aCount[nCategory][sName] += 1; + }, + /** + * Consolidates all worthwhile primitive values in a range of source + * elements. + * @param {number} nFrom The index (in the source text order) of the + * source element that is the first element of the range. + * @param {number} nTo The index (in the source text order) of the + * source element that is the last element of the range. + * @param {boolean} bEnclose Indicates whether the range should be + * enclosed within a function call with no argument values to a + * function with an empty parameter list if any primitive values + * are consolidated. + * @see TPrimitiveValue#nSaving + */ + fExamineSourceElements = function(nFrom, nTo, bEnclose) { + var _, + /** + * The index of the last mangled name. + * @type {number} + */ + nIndex = oScope.cname, + /** + * The index of the source element that is currently being + * considered. + * @type {number} + */ + nPosition, + /** + * A collection of functions used during the consolidation of + * primitive values and identifier names used as property + * accessors. + * @namespace + * @type {!Object.} + */ + oWalkersTransformers = { + /** + * If the String value that is equivalent to the sequence of + * terminal symbols that constitute the encountered identifier + * name is worthwhile, a syntactic conversion from the dot + * notation to the bracket notation ensues with that sequence + * being substituted by an identifier name to which the value + * is assigned. + * Applies to property accessors that use the dot notation. + * @param {!TSyntacticCodeUnit} oExpression The nonterminal + * MemberExpression. + * @param {string} sIdentifierName The identifier name used as + * the property accessor. + * @return {!Array} A syntactic code unit that is equivalent to + * the one encountered. + * @see TPrimitiveValue#nSaving + */ + 'dot': function(oExpression, sIdentifierName) { + /** + * The prefixed String value that is equivalent to the + * sequence of terminal symbols that constitute the + * encountered identifier name. + * @type {string} + */ + var sPrefixed = EValuePrefixes.S_STRING + sIdentifierName; + + return oSolutionBest.oPrimitiveValues.hasOwnProperty( + sPrefixed) && + oSolutionBest.oPrimitiveValues[sPrefixed].nSaving > 0 ? + ['sub', + oWalker.walk(oExpression), + ['name', + oSolutionBest.oPrimitiveValues[sPrefixed].sName]] : + ['dot', oWalker.walk(oExpression), sIdentifierName]; + }, + /** + * If the encountered identifier is a null or Boolean literal + * and its value is worthwhile, the identifier is substituted + * by an identifier name to which that value is assigned. + * Applies to identifier names. + * @param {string} sIdentifier The identifier encountered. + * @return {!Array} A syntactic code unit that is equivalent to + * the one encountered. + * @see TPrimitiveValue#nSaving + */ + 'name': function(sIdentifier) { + /** + * The prefixed representation String of the identifier. + * @type {string} + */ + var sPrefixed = EValuePrefixes.S_SYMBOLIC + sIdentifier; + + return [ + 'name', + oSolutionBest.oPrimitiveValues.hasOwnProperty(sPrefixed) && + oSolutionBest.oPrimitiveValues[sPrefixed].nSaving > 0 ? + oSolutionBest.oPrimitiveValues[sPrefixed].sName : + sIdentifier + ]; + }, + /** + * If the encountered String value is worthwhile, it is + * substituted by an identifier name to which that value is + * assigned. + * Applies to String values. + * @param {string} sStringValue The String value of the string + * literal encountered. + * @return {!Array} A syntactic code unit that is equivalent to + * the one encountered. + * @see TPrimitiveValue#nSaving + */ + 'string': function(sStringValue) { + /** + * The prefixed representation String of the primitive value + * of the literal. + * @type {string} + */ + var sPrefixed = + EValuePrefixes.S_STRING + sStringValue; + + return oSolutionBest.oPrimitiveValues.hasOwnProperty( + sPrefixed) && + oSolutionBest.oPrimitiveValues[sPrefixed].nSaving > 0 ? + ['name', + oSolutionBest.oPrimitiveValues[sPrefixed].sName] : + ['string', sStringValue]; + } + }, + /** + * Such data on what to consolidate within the range of source + * elements that is currently being considered that lead to the + * greatest known reduction of the number of the terminal symbols + * in comparison to the original source text. + * @type {!TSolution} + */ + oSolutionBest = new TSolution(), + /** + * Data representing an ongoing attempt to find a better + * reduction of the number of the terminal symbols in comparison + * to the original source text than the best one that is + * currently known. + * @type {!TSolution} + * @see oSolutionBest + */ + oSolutionCandidate = new TSolution(), + /** + * A record consisting of data about the range of source elements + * that is currently being examined. + * @type {!TSourceElementsData} + */ + oSourceElementsData = new TSourceElementsData(), + /** + * Variable declarations for each primitive value that is to be + * consolidated within the elements. + * @type {!Array.} + */ + aVariableDeclarations = [], + /** + * Augments a list with a prefixed representation String. + * @param {!Array.} aList A list that is to be augmented. + * @return {function(string)} A function that augments a list + * with a prefixed representation String. + */ + cAugmentList = function(aList) { + /** + * @param {string} sPrefixed Prefixed representation String of + * a primitive value that could be consolidated within the + * elements. + */ + var fLambda = function(sPrefixed) { + if (-1 === aList.indexOf(sPrefixed)) { + aList.push(sPrefixed); + } + }; + + return fLambda; + }, + /** + * Adds the number of occurrences of a primitive value of a given + * category that could be consolidated in the source element with + * a given index to the count of occurrences of that primitive + * value within the range of source elements that is currently + * being considered. + * @param {number} nPosition The index (in the source text order) + * of a source element. + * @param {number} nCategory The category of the primary + * expression from which the primitive value is derived. + * @return {function(string)} A function that performs the + * addition. + * @see cAddOccurrencesInCategory + */ + cAddOccurrences = function(nPosition, nCategory) { + /** + * @param {string} sPrefixed The prefixed representation String + * of a primitive value. + */ + var fLambda = function(sPrefixed) { + if (!oSourceElementsData.aCount[nCategory].hasOwnProperty( + sPrefixed)) { + oSourceElementsData.aCount[nCategory][sPrefixed] = 0; + } + oSourceElementsData.aCount[nCategory][sPrefixed] += + aSourceElementsData[nPosition].aCount[nCategory][ + sPrefixed]; + }; + + return fLambda; + }, + /** + * Adds the number of occurrences of each primitive value of a + * given category that could be consolidated in the source + * element with a given index to the count of occurrences of that + * primitive values within the range of source elements that is + * currently being considered. + * @param {number} nPosition The index (in the source text order) + * of a source element. + * @return {function(number)} A function that performs the + * addition. + * @see fAddOccurrences + */ + cAddOccurrencesInCategory = function(nPosition) { + /** + * @param {number} nCategory The category of the primary + * expression from which the primitive value is derived. + */ + var fLambda = function(nCategory) { + Object.keys( + aSourceElementsData[nPosition].aCount[nCategory] + ).forEach(cAddOccurrences(nPosition, nCategory)); + }; + + return fLambda; + }, + /** + * Adds the number of occurrences of each primitive value that + * could be consolidated in the source element with a given index + * to the count of occurrences of that primitive values within + * the range of source elements that is currently being + * considered. + * @param {number} nPosition The index (in the source text order) + * of a source element. + */ + fAddOccurrences = function(nPosition) { + Object.keys(aSourceElementsData[nPosition].aCount).forEach( + cAddOccurrencesInCategory(nPosition)); + }, + /** + * Creates a variable declaration for a primitive value if that + * primitive value is to be consolidated within the elements. + * @param {string} sPrefixed Prefixed representation String of a + * primitive value that could be consolidated within the + * elements. + * @see aVariableDeclarations + */ + cAugmentVariableDeclarations = function(sPrefixed) { + if (oSolutionBest.oPrimitiveValues[sPrefixed].nSaving > 0) { + aVariableDeclarations.push([ + oSolutionBest.oPrimitiveValues[sPrefixed].sName, + [0 === sPrefixed.indexOf(EValuePrefixes.S_SYMBOLIC) ? + 'name' : 'string', + sPrefixed.substring(EValuePrefixes.S_SYMBOLIC.length)] + ]); + } + }, + /** + * Sorts primitive values with regard to the difference in the + * number of terminal symbols between the original source text + * and the one with those primitive values consolidated. + * @param {string} sPrefixed0 The prefixed representation String + * of the first of the two primitive values that are being + * compared. + * @param {string} sPrefixed1 The prefixed representation String + * of the second of the two primitive values that are being + * compared. + * @return {number} + *
+ *
-1
+ *
if the first primitive value must be placed before + * the other one,
+ *
0
+ *
if the first primitive value may be placed before + * the other one,
+ *
1
+ *
if the first primitive value must not be placed + * before the other one.
+ *
+ * @see TSolution.oPrimitiveValues + */ + cSortPrimitiveValues = function(sPrefixed0, sPrefixed1) { + /** + * The difference between: + *
    + *
  1. the difference in the number of terminal symbols + * between the original source text and the one with the + * first primitive value consolidated, and
  2. + *
  3. the difference in the number of terminal symbols + * between the original source text and the one with the + * second primitive value consolidated.
  4. + *
+ * @type {number} + */ + var nDifference = + oSolutionCandidate.oPrimitiveValues[sPrefixed0].nSaving - + oSolutionCandidate.oPrimitiveValues[sPrefixed1].nSaving; + + return nDifference > 0 ? -1 : nDifference < 0 ? 1 : 0; + }, + /** + * Assigns an identifier name to a primitive value and calculates + * whether instances of that primitive value are worth + * consolidating. + * @param {string} sPrefixed The prefixed representation String + * of a primitive value that is being evaluated. + */ + fEvaluatePrimitiveValue = function(sPrefixed) { + var _, + /** + * The index of the last mangled name. + * @type {number} + */ + nIndex, + /** + * The representation String of the primitive value that is + * being evaluated. + * @type {string} + */ + sName = + sPrefixed.substring(EValuePrefixes.S_SYMBOLIC.length), + /** + * The number of source characters taken up by the + * representation String of the primitive value that is + * being evaluated. + * @type {number} + */ + nLengthOriginal = sName.length, + /** + * The number of source characters taken up by the + * identifier name that could substitute the primitive + * value that is being evaluated. + * substituted. + * @type {number} + */ + nLengthSubstitution, + /** + * The number of source characters taken up by by the + * representation String of the primitive value that is + * being evaluated when it is represented by a string + * literal. + * @type {number} + */ + nLengthString = oProcessor.make_string(sName).length; + + oSolutionCandidate.oPrimitiveValues[sPrefixed] = + new TPrimitiveValue(); + do { // Find an identifier unused in this or any nested scope. + nIndex = oScope.cname; + oSolutionCandidate.oPrimitiveValues[sPrefixed].sName = + oScope.next_mangled(); + } while (-1 !== oSourceElementsData.aIdentifiers.indexOf( + oSolutionCandidate.oPrimitiveValues[sPrefixed].sName)); + nLengthSubstitution = oSolutionCandidate.oPrimitiveValues[ + sPrefixed].sName.length; + if (0 === sPrefixed.indexOf(EValuePrefixes.S_SYMBOLIC)) { + // foo:null, or foo:null; + oSolutionCandidate.oPrimitiveValues[sPrefixed].nSaving -= + nLengthSubstitution + nLengthOriginal + + oWeights.N_VARIABLE_DECLARATION; + // null vs foo + oSolutionCandidate.oPrimitiveValues[sPrefixed].nSaving += + oSourceElementsData.aCount[ + EPrimaryExpressionCategories. + N_NULL_AND_BOOLEAN_LITERALS][sPrefixed] * + (nLengthOriginal - nLengthSubstitution); + } else { + // foo:'fromCharCode'; + oSolutionCandidate.oPrimitiveValues[sPrefixed].nSaving -= + nLengthSubstitution + nLengthString + + oWeights.N_VARIABLE_DECLARATION; + // .fromCharCode vs [foo] + if (oSourceElementsData.aCount[ + EPrimaryExpressionCategories.N_IDENTIFIER_NAMES + ].hasOwnProperty(sPrefixed)) { + oSolutionCandidate.oPrimitiveValues[sPrefixed].nSaving += + oSourceElementsData.aCount[ + EPrimaryExpressionCategories.N_IDENTIFIER_NAMES + ][sPrefixed] * + (nLengthOriginal - nLengthSubstitution - + oWeights.N_PROPERTY_ACCESSOR); + } + // 'fromCharCode' vs foo + if (oSourceElementsData.aCount[ + EPrimaryExpressionCategories.N_STRING_LITERALS + ].hasOwnProperty(sPrefixed)) { + oSolutionCandidate.oPrimitiveValues[sPrefixed].nSaving += + oSourceElementsData.aCount[ + EPrimaryExpressionCategories.N_STRING_LITERALS + ][sPrefixed] * + (nLengthString - nLengthSubstitution); + } + } + if (oSolutionCandidate.oPrimitiveValues[sPrefixed].nSaving > + 0) { + oSolutionCandidate.nSavings += + oSolutionCandidate.oPrimitiveValues[sPrefixed].nSaving; + } else { + oScope.cname = nIndex; // Free the identifier name. + } + }, + /** + * Adds a variable declaration to an existing variable statement. + * @param {!Array} aVariableDeclaration A variable declaration + * with an initialiser. + */ + cAddVariableDeclaration = function(aVariableDeclaration) { + (/** @type {!Array} */ oSourceElements[nFrom][1]).unshift( + aVariableDeclaration); + }; + + if (nFrom > nTo) { + return; + } + // If the range is a closure, reuse the closure. + if (nFrom === nTo && + 'stat' === oSourceElements[nFrom][0] && + 'call' === oSourceElements[nFrom][1][0] && + 'function' === oSourceElements[nFrom][1][1][0]) { + fExamineSyntacticCodeUnit(oSourceElements[nFrom][1][1]); + return; + } + // Create a list of all derived primitive values within the range. + for (nPosition = nFrom; nPosition <= nTo; nPosition += 1) { + aSourceElementsData[nPosition].aPrimitiveValues.forEach( + cAugmentList(oSourceElementsData.aPrimitiveValues)); + } + if (0 === oSourceElementsData.aPrimitiveValues.length) { + return; + } + for (nPosition = nFrom; nPosition <= nTo; nPosition += 1) { + // Add the number of occurrences to the total count. + fAddOccurrences(nPosition); + // Add identifiers of this or any nested scope to the list. + aSourceElementsData[nPosition].aIdentifiers.forEach( + cAugmentList(oSourceElementsData.aIdentifiers)); + } + // Distribute identifier names among derived primitive values. + do { // If there was any progress, find a better distribution. + oSolutionBest = oSolutionCandidate; + if (Object.keys(oSolutionCandidate.oPrimitiveValues).length > 0) { + // Sort primitive values descending by their worthwhileness. + oSourceElementsData.aPrimitiveValues.sort(cSortPrimitiveValues); + } + oSolutionCandidate = new TSolution(); + oSourceElementsData.aPrimitiveValues.forEach( + fEvaluatePrimitiveValue); + oScope.cname = nIndex; + } while (oSolutionCandidate.nSavings > oSolutionBest.nSavings); + // Take the necessity of adding a variable statement into account. + if ('var' !== oSourceElements[nFrom][0]) { + oSolutionBest.nSavings -= oWeights.N_VARIABLE_STATEMENT_AFFIXATION; + } + if (bEnclose) { + // Take the necessity of forming a closure into account. + oSolutionBest.nSavings -= oWeights.N_CLOSURE; + } + if (oSolutionBest.nSavings > 0) { + // Create variable declarations suitable for UglifyJS. + Object.keys(oSolutionBest.oPrimitiveValues).forEach( + cAugmentVariableDeclarations); + // Rewrite expressions that contain worthwhile primitive values. + for (nPosition = nFrom; nPosition <= nTo; nPosition += 1) { + oWalker = oProcessor.ast_walker(); + oSourceElements[nPosition] = + oWalker.with_walkers( + oWalkersTransformers, + cContext(oWalker, oSourceElements[nPosition])); + } + if ('var' === oSourceElements[nFrom][0]) { // Reuse the statement. + (/** @type {!Array.} */ aVariableDeclarations.reverse( + )).forEach(cAddVariableDeclaration); + } else { // Add a variable statement. + Array.prototype.splice.call( + oSourceElements, + nFrom, + 0, + ['var', aVariableDeclarations]); + nTo += 1; + } + if (bEnclose) { + // Add a closure. + Array.prototype.splice.call( + oSourceElements, + nFrom, + 0, + ['stat', ['call', ['function', null, [], []], []]]); + // Copy source elements into the closure. + for (nPosition = nTo + 1; nPosition > nFrom; nPosition -= 1) { + Array.prototype.unshift.call( + oSourceElements[nFrom][1][1][3], + oSourceElements[nPosition]); + } + // Remove source elements outside the closure. + Array.prototype.splice.call( + oSourceElements, + nFrom + 1, + nTo - nFrom + 1); + } + } + if (bEnclose) { + // Restore the availability of identifier names. + oScope.cname = nIndex; + } + }; + + oSourceElements = (/** @type {!TSyntacticCodeUnit} */ + oSyntacticCodeUnit[bIsGlobal ? 1 : 3]); + if (0 === oSourceElements.length) { + return; + } + oScope = bIsGlobal ? oSyntacticCodeUnit.scope : oSourceElements.scope; + // Skip a Directive Prologue. + while (nAfterDirectivePrologue < oSourceElements.length && + 'directive' === oSourceElements[nAfterDirectivePrologue][0]) { + nAfterDirectivePrologue += 1; + aSourceElementsData.push(null); + } + if (oSourceElements.length === nAfterDirectivePrologue) { + return; + } + for (nPosition = nAfterDirectivePrologue; + nPosition < oSourceElements.length; + nPosition += 1) { + oSourceElementData = new TSourceElementsData(); + oWalker = oProcessor.ast_walker(); + // Classify a source element. + // Find its derived primitive values and count their occurrences. + // Find all identifiers used (including nested scopes). + oWalker.with_walkers( + oWalkers.oSurveySourceElement, + cContext(oWalker, oSourceElements[nPosition])); + // Establish whether the scope is still wholly examinable. + bIsWhollyExaminable = bIsWhollyExaminable && + ESourceElementCategories.N_WITH !== oSourceElementData.nCategory && + ESourceElementCategories.N_EVAL !== oSourceElementData.nCategory; + aSourceElementsData.push(oSourceElementData); + } + if (bIsWhollyExaminable) { // Examine the whole scope. + fExamineSourceElements( + nAfterDirectivePrologue, + oSourceElements.length - 1, + false); + } else { // Examine unexcluded ranges of source elements. + for (nPosition = oSourceElements.length - 1; + nPosition >= nAfterDirectivePrologue; + nPosition -= 1) { + oSourceElementData = (/** @type {!TSourceElementsData} */ + aSourceElementsData[nPosition]); + if (ESourceElementCategories.N_OTHER === + oSourceElementData.nCategory) { + if ('undefined' === typeof nTo) { + nTo = nPosition; // Indicate the end of a range. + } + // Examine the range if it immediately follows a Directive Prologue. + if (nPosition === nAfterDirectivePrologue) { + fExamineSourceElements(nPosition, nTo, true); + } + } else { + if ('undefined' !== typeof nTo) { + // Examine the range that immediately follows this source element. + fExamineSourceElements(nPosition + 1, nTo, true); + nTo = void 0; // Obliterate the range. + } + // Examine nested functions. + oWalker = oProcessor.ast_walker(); + oWalker.with_walkers( + oWalkers.oExamineFunctions, + cContext(oWalker, oSourceElements[nPosition])); + } + } + } + }(oAbstractSyntaxTree = oProcessor.ast_add_scope(oAbstractSyntaxTree))); + return oAbstractSyntaxTree; +}; +/*jshint sub:false */ + +/* Local Variables: */ +/* mode: js */ +/* coding: utf-8 */ +/* indent-tabs-mode: nil */ +/* tab-width: 2 */ +/* End: */ +/* vim: set ft=javascript fenc=utf-8 et ts=2 sts=2 sw=2: */ +/* :mode=javascript:noTabs=true:tabSize=2:indentSize=2:deepIndent=true: */ +}); +define('uglifyjs/parse-js', ["exports"], function(exports) { +/*********************************************************************** + + A JavaScript tokenizer / parser / beautifier / compressor. + + This version is suitable for Node.js. With minimal changes (the + exports stuff) it should work on any JS platform. + + This file contains the tokenizer/parser. It is a port to JavaScript + of parse-js [1], a JavaScript parser library written in Common Lisp + by Marijn Haverbeke. Thank you Marijn! + + [1] http://marijn.haverbeke.nl/parse-js/ + + Exported functions: + + - tokenizer(code) -- returns a function. Call the returned + function to fetch the next token. + + - parse(code) -- returns an AST of the given JavaScript code. + + -------------------------------- (C) --------------------------------- + + Author: Mihai Bazon + + http://mihai.bazon.net/blog + + Distributed under the BSD license: + + Copyright 2010 (c) Mihai Bazon + Based on parse-js (http://marijn.haverbeke.nl/parse-js/). + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + * Redistributions of source code must retain the above + copyright notice, this list of conditions and the following + disclaimer. + + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials + provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER “AS IS” AND ANY + EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE + LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, + OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR + TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF + THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + SUCH DAMAGE. + + ***********************************************************************/ + +/* -----[ Tokenizer (constants) ]----- */ + +var KEYWORDS = array_to_hash([ + "break", + "case", + "catch", + "const", + "continue", + "debugger", + "default", + "delete", + "do", + "else", + "finally", + "for", + "function", + "if", + "in", + "instanceof", + "new", + "return", + "switch", + "throw", + "try", + "typeof", + "var", + "void", + "while", + "with" +]); + +var RESERVED_WORDS = array_to_hash([ + "abstract", + "boolean", + "byte", + "char", + "class", + "double", + "enum", + "export", + "extends", + "final", + "float", + "goto", + "implements", + "import", + "int", + "interface", + "long", + "native", + "package", + "private", + "protected", + "public", + "short", + "static", + "super", + "synchronized", + "throws", + "transient", + "volatile" +]); + +var KEYWORDS_BEFORE_EXPRESSION = array_to_hash([ + "return", + "new", + "delete", + "throw", + "else", + "case" +]); + +var KEYWORDS_ATOM = array_to_hash([ + "false", + "null", + "true", + "undefined" +]); + +var OPERATOR_CHARS = array_to_hash(characters("+-*&%=<>!?|~^")); + +var RE_HEX_NUMBER = /^0x[0-9a-f]+$/i; +var RE_OCT_NUMBER = /^0[0-7]+$/; +var RE_DEC_NUMBER = /^\d*\.?\d*(?:e[+-]?\d*(?:\d\.?|\.?\d)\d*)?$/i; + +var OPERATORS = array_to_hash([ + "in", + "instanceof", + "typeof", + "new", + "void", + "delete", + "++", + "--", + "+", + "-", + "!", + "~", + "&", + "|", + "^", + "*", + "/", + "%", + ">>", + "<<", + ">>>", + "<", + ">", + "<=", + ">=", + "==", + "===", + "!=", + "!==", + "?", + "=", + "+=", + "-=", + "/=", + "*=", + "%=", + ">>=", + "<<=", + ">>>=", + "|=", + "^=", + "&=", + "&&", + "||" +]); + +var WHITESPACE_CHARS = array_to_hash(characters(" \u00a0\n\r\t\f\u000b\u200b\u180e\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u202f\u205f\u3000\uFEFF")); + +var PUNC_BEFORE_EXPRESSION = array_to_hash(characters("[{(,.;:")); + +var PUNC_CHARS = array_to_hash(characters("[]{}(),;:")); + +var REGEXP_MODIFIERS = array_to_hash(characters("gmsiy")); + +/* -----[ Tokenizer ]----- */ + +var UNICODE = { // Unicode 6.1 + letter: new RegExp("[\\u0041-\\u005A\\u0061-\\u007A\\u00AA\\u00B5\\u00BA\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02C1\\u02C6-\\u02D1\\u02E0-\\u02E4\\u02EC\\u02EE\\u0370-\\u0374\\u0376\\u0377\\u037A-\\u037D\\u0386\\u0388-\\u038A\\u038C\\u038E-\\u03A1\\u03A3-\\u03F5\\u03F7-\\u0481\\u048A-\\u0527\\u0531-\\u0556\\u0559\\u0561-\\u0587\\u05D0-\\u05EA\\u05F0-\\u05F2\\u0620-\\u064A\\u066E\\u066F\\u0671-\\u06D3\\u06D5\\u06E5\\u06E6\\u06EE\\u06EF\\u06FA-\\u06FC\\u06FF\\u0710\\u0712-\\u072F\\u074D-\\u07A5\\u07B1\\u07CA-\\u07EA\\u07F4\\u07F5\\u07FA\\u0800-\\u0815\\u081A\\u0824\\u0828\\u0840-\\u0858\\u08A0\\u08A2-\\u08AC\\u0904-\\u0939\\u093D\\u0950\\u0958-\\u0961\\u0971-\\u0977\\u0979-\\u097F\\u0985-\\u098C\\u098F\\u0990\\u0993-\\u09A8\\u09AA-\\u09B0\\u09B2\\u09B6-\\u09B9\\u09BD\\u09CE\\u09DC\\u09DD\\u09DF-\\u09E1\\u09F0\\u09F1\\u0A05-\\u0A0A\\u0A0F\\u0A10\\u0A13-\\u0A28\\u0A2A-\\u0A30\\u0A32\\u0A33\\u0A35\\u0A36\\u0A38\\u0A39\\u0A59-\\u0A5C\\u0A5E\\u0A72-\\u0A74\\u0A85-\\u0A8D\\u0A8F-\\u0A91\\u0A93-\\u0AA8\\u0AAA-\\u0AB0\\u0AB2\\u0AB3\\u0AB5-\\u0AB9\\u0ABD\\u0AD0\\u0AE0\\u0AE1\\u0B05-\\u0B0C\\u0B0F\\u0B10\\u0B13-\\u0B28\\u0B2A-\\u0B30\\u0B32\\u0B33\\u0B35-\\u0B39\\u0B3D\\u0B5C\\u0B5D\\u0B5F-\\u0B61\\u0B71\\u0B83\\u0B85-\\u0B8A\\u0B8E-\\u0B90\\u0B92-\\u0B95\\u0B99\\u0B9A\\u0B9C\\u0B9E\\u0B9F\\u0BA3\\u0BA4\\u0BA8-\\u0BAA\\u0BAE-\\u0BB9\\u0BD0\\u0C05-\\u0C0C\\u0C0E-\\u0C10\\u0C12-\\u0C28\\u0C2A-\\u0C33\\u0C35-\\u0C39\\u0C3D\\u0C58\\u0C59\\u0C60\\u0C61\\u0C85-\\u0C8C\\u0C8E-\\u0C90\\u0C92-\\u0CA8\\u0CAA-\\u0CB3\\u0CB5-\\u0CB9\\u0CBD\\u0CDE\\u0CE0\\u0CE1\\u0CF1\\u0CF2\\u0D05-\\u0D0C\\u0D0E-\\u0D10\\u0D12-\\u0D3A\\u0D3D\\u0D4E\\u0D60\\u0D61\\u0D7A-\\u0D7F\\u0D85-\\u0D96\\u0D9A-\\u0DB1\\u0DB3-\\u0DBB\\u0DBD\\u0DC0-\\u0DC6\\u0E01-\\u0E30\\u0E32\\u0E33\\u0E40-\\u0E46\\u0E81\\u0E82\\u0E84\\u0E87\\u0E88\\u0E8A\\u0E8D\\u0E94-\\u0E97\\u0E99-\\u0E9F\\u0EA1-\\u0EA3\\u0EA5\\u0EA7\\u0EAA\\u0EAB\\u0EAD-\\u0EB0\\u0EB2\\u0EB3\\u0EBD\\u0EC0-\\u0EC4\\u0EC6\\u0EDC-\\u0EDF\\u0F00\\u0F40-\\u0F47\\u0F49-\\u0F6C\\u0F88-\\u0F8C\\u1000-\\u102A\\u103F\\u1050-\\u1055\\u105A-\\u105D\\u1061\\u1065\\u1066\\u106E-\\u1070\\u1075-\\u1081\\u108E\\u10A0-\\u10C5\\u10C7\\u10CD\\u10D0-\\u10FA\\u10FC-\\u1248\\u124A-\\u124D\\u1250-\\u1256\\u1258\\u125A-\\u125D\\u1260-\\u1288\\u128A-\\u128D\\u1290-\\u12B0\\u12B2-\\u12B5\\u12B8-\\u12BE\\u12C0\\u12C2-\\u12C5\\u12C8-\\u12D6\\u12D8-\\u1310\\u1312-\\u1315\\u1318-\\u135A\\u1380-\\u138F\\u13A0-\\u13F4\\u1401-\\u166C\\u166F-\\u167F\\u1681-\\u169A\\u16A0-\\u16EA\\u16EE-\\u16F0\\u1700-\\u170C\\u170E-\\u1711\\u1720-\\u1731\\u1740-\\u1751\\u1760-\\u176C\\u176E-\\u1770\\u1780-\\u17B3\\u17D7\\u17DC\\u1820-\\u1877\\u1880-\\u18A8\\u18AA\\u18B0-\\u18F5\\u1900-\\u191C\\u1950-\\u196D\\u1970-\\u1974\\u1980-\\u19AB\\u19C1-\\u19C7\\u1A00-\\u1A16\\u1A20-\\u1A54\\u1AA7\\u1B05-\\u1B33\\u1B45-\\u1B4B\\u1B83-\\u1BA0\\u1BAE\\u1BAF\\u1BBA-\\u1BE5\\u1C00-\\u1C23\\u1C4D-\\u1C4F\\u1C5A-\\u1C7D\\u1CE9-\\u1CEC\\u1CEE-\\u1CF1\\u1CF5\\u1CF6\\u1D00-\\u1DBF\\u1E00-\\u1F15\\u1F18-\\u1F1D\\u1F20-\\u1F45\\u1F48-\\u1F4D\\u1F50-\\u1F57\\u1F59\\u1F5B\\u1F5D\\u1F5F-\\u1F7D\\u1F80-\\u1FB4\\u1FB6-\\u1FBC\\u1FBE\\u1FC2-\\u1FC4\\u1FC6-\\u1FCC\\u1FD0-\\u1FD3\\u1FD6-\\u1FDB\\u1FE0-\\u1FEC\\u1FF2-\\u1FF4\\u1FF6-\\u1FFC\\u2071\\u207F\\u2090-\\u209C\\u2102\\u2107\\u210A-\\u2113\\u2115\\u2119-\\u211D\\u2124\\u2126\\u2128\\u212A-\\u212D\\u212F-\\u2139\\u213C-\\u213F\\u2145-\\u2149\\u214E\\u2160-\\u2188\\u2C00-\\u2C2E\\u2C30-\\u2C5E\\u2C60-\\u2CE4\\u2CEB-\\u2CEE\\u2CF2\\u2CF3\\u2D00-\\u2D25\\u2D27\\u2D2D\\u2D30-\\u2D67\\u2D6F\\u2D80-\\u2D96\\u2DA0-\\u2DA6\\u2DA8-\\u2DAE\\u2DB0-\\u2DB6\\u2DB8-\\u2DBE\\u2DC0-\\u2DC6\\u2DC8-\\u2DCE\\u2DD0-\\u2DD6\\u2DD8-\\u2DDE\\u2E2F\\u3005-\\u3007\\u3021-\\u3029\\u3031-\\u3035\\u3038-\\u303C\\u3041-\\u3096\\u309D-\\u309F\\u30A1-\\u30FA\\u30FC-\\u30FF\\u3105-\\u312D\\u3131-\\u318E\\u31A0-\\u31BA\\u31F0-\\u31FF\\u3400-\\u4DB5\\u4E00-\\u9FCC\\uA000-\\uA48C\\uA4D0-\\uA4FD\\uA500-\\uA60C\\uA610-\\uA61F\\uA62A\\uA62B\\uA640-\\uA66E\\uA67F-\\uA697\\uA6A0-\\uA6EF\\uA717-\\uA71F\\uA722-\\uA788\\uA78B-\\uA78E\\uA790-\\uA793\\uA7A0-\\uA7AA\\uA7F8-\\uA801\\uA803-\\uA805\\uA807-\\uA80A\\uA80C-\\uA822\\uA840-\\uA873\\uA882-\\uA8B3\\uA8F2-\\uA8F7\\uA8FB\\uA90A-\\uA925\\uA930-\\uA946\\uA960-\\uA97C\\uA984-\\uA9B2\\uA9CF\\uAA00-\\uAA28\\uAA40-\\uAA42\\uAA44-\\uAA4B\\uAA60-\\uAA76\\uAA7A\\uAA80-\\uAAAF\\uAAB1\\uAAB5\\uAAB6\\uAAB9-\\uAABD\\uAAC0\\uAAC2\\uAADB-\\uAADD\\uAAE0-\\uAAEA\\uAAF2-\\uAAF4\\uAB01-\\uAB06\\uAB09-\\uAB0E\\uAB11-\\uAB16\\uAB20-\\uAB26\\uAB28-\\uAB2E\\uABC0-\\uABE2\\uAC00-\\uD7A3\\uD7B0-\\uD7C6\\uD7CB-\\uD7FB\\uF900-\\uFA6D\\uFA70-\\uFAD9\\uFB00-\\uFB06\\uFB13-\\uFB17\\uFB1D\\uFB1F-\\uFB28\\uFB2A-\\uFB36\\uFB38-\\uFB3C\\uFB3E\\uFB40\\uFB41\\uFB43\\uFB44\\uFB46-\\uFBB1\\uFBD3-\\uFD3D\\uFD50-\\uFD8F\\uFD92-\\uFDC7\\uFDF0-\\uFDFB\\uFE70-\\uFE74\\uFE76-\\uFEFC\\uFF21-\\uFF3A\\uFF41-\\uFF5A\\uFF66-\\uFFBE\\uFFC2-\\uFFC7\\uFFCA-\\uFFCF\\uFFD2-\\uFFD7\\uFFDA-\\uFFDC]"), + combining_mark: new RegExp("[\\u0300-\\u036F\\u0483-\\u0487\\u0591-\\u05BD\\u05BF\\u05C1\\u05C2\\u05C4\\u05C5\\u05C7\\u0610-\\u061A\\u064B-\\u065F\\u0670\\u06D6-\\u06DC\\u06DF-\\u06E4\\u06E7\\u06E8\\u06EA-\\u06ED\\u0711\\u0730-\\u074A\\u07A6-\\u07B0\\u07EB-\\u07F3\\u0816-\\u0819\\u081B-\\u0823\\u0825-\\u0827\\u0829-\\u082D\\u0859-\\u085B\\u08E4-\\u08FE\\u0900-\\u0903\\u093A-\\u093C\\u093E-\\u094F\\u0951-\\u0957\\u0962\\u0963\\u0981-\\u0983\\u09BC\\u09BE-\\u09C4\\u09C7\\u09C8\\u09CB-\\u09CD\\u09D7\\u09E2\\u09E3\\u0A01-\\u0A03\\u0A3C\\u0A3E-\\u0A42\\u0A47\\u0A48\\u0A4B-\\u0A4D\\u0A51\\u0A70\\u0A71\\u0A75\\u0A81-\\u0A83\\u0ABC\\u0ABE-\\u0AC5\\u0AC7-\\u0AC9\\u0ACB-\\u0ACD\\u0AE2\\u0AE3\\u0B01-\\u0B03\\u0B3C\\u0B3E-\\u0B44\\u0B47\\u0B48\\u0B4B-\\u0B4D\\u0B56\\u0B57\\u0B62\\u0B63\\u0B82\\u0BBE-\\u0BC2\\u0BC6-\\u0BC8\\u0BCA-\\u0BCD\\u0BD7\\u0C01-\\u0C03\\u0C3E-\\u0C44\\u0C46-\\u0C48\\u0C4A-\\u0C4D\\u0C55\\u0C56\\u0C62\\u0C63\\u0C82\\u0C83\\u0CBC\\u0CBE-\\u0CC4\\u0CC6-\\u0CC8\\u0CCA-\\u0CCD\\u0CD5\\u0CD6\\u0CE2\\u0CE3\\u0D02\\u0D03\\u0D3E-\\u0D44\\u0D46-\\u0D48\\u0D4A-\\u0D4D\\u0D57\\u0D62\\u0D63\\u0D82\\u0D83\\u0DCA\\u0DCF-\\u0DD4\\u0DD6\\u0DD8-\\u0DDF\\u0DF2\\u0DF3\\u0E31\\u0E34-\\u0E3A\\u0E47-\\u0E4E\\u0EB1\\u0EB4-\\u0EB9\\u0EBB\\u0EBC\\u0EC8-\\u0ECD\\u0F18\\u0F19\\u0F35\\u0F37\\u0F39\\u0F3E\\u0F3F\\u0F71-\\u0F84\\u0F86\\u0F87\\u0F8D-\\u0F97\\u0F99-\\u0FBC\\u0FC6\\u102B-\\u103E\\u1056-\\u1059\\u105E-\\u1060\\u1062-\\u1064\\u1067-\\u106D\\u1071-\\u1074\\u1082-\\u108D\\u108F\\u109A-\\u109D\\u135D-\\u135F\\u1712-\\u1714\\u1732-\\u1734\\u1752\\u1753\\u1772\\u1773\\u17B4-\\u17D3\\u17DD\\u180B-\\u180D\\u18A9\\u1920-\\u192B\\u1930-\\u193B\\u19B0-\\u19C0\\u19C8\\u19C9\\u1A17-\\u1A1B\\u1A55-\\u1A5E\\u1A60-\\u1A7C\\u1A7F\\u1B00-\\u1B04\\u1B34-\\u1B44\\u1B6B-\\u1B73\\u1B80-\\u1B82\\u1BA1-\\u1BAD\\u1BE6-\\u1BF3\\u1C24-\\u1C37\\u1CD0-\\u1CD2\\u1CD4-\\u1CE8\\u1CED\\u1CF2-\\u1CF4\\u1DC0-\\u1DE6\\u1DFC-\\u1DFF\\u20D0-\\u20DC\\u20E1\\u20E5-\\u20F0\\u2CEF-\\u2CF1\\u2D7F\\u2DE0-\\u2DFF\\u302A-\\u302F\\u3099\\u309A\\uA66F\\uA674-\\uA67D\\uA69F\\uA6F0\\uA6F1\\uA802\\uA806\\uA80B\\uA823-\\uA827\\uA880\\uA881\\uA8B4-\\uA8C4\\uA8E0-\\uA8F1\\uA926-\\uA92D\\uA947-\\uA953\\uA980-\\uA983\\uA9B3-\\uA9C0\\uAA29-\\uAA36\\uAA43\\uAA4C\\uAA4D\\uAA7B\\uAAB0\\uAAB2-\\uAAB4\\uAAB7\\uAAB8\\uAABE\\uAABF\\uAAC1\\uAAEB-\\uAAEF\\uAAF5\\uAAF6\\uABE3-\\uABEA\\uABEC\\uABED\\uFB1E\\uFE00-\\uFE0F\\uFE20-\\uFE26]"), + connector_punctuation: new RegExp("[\\u005F\\u203F\\u2040\\u2054\\uFE33\\uFE34\\uFE4D-\\uFE4F\\uFF3F]"), + digit: new RegExp("[\\u0030-\\u0039\\u0660-\\u0669\\u06F0-\\u06F9\\u07C0-\\u07C9\\u0966-\\u096F\\u09E6-\\u09EF\\u0A66-\\u0A6F\\u0AE6-\\u0AEF\\u0B66-\\u0B6F\\u0BE6-\\u0BEF\\u0C66-\\u0C6F\\u0CE6-\\u0CEF\\u0D66-\\u0D6F\\u0E50-\\u0E59\\u0ED0-\\u0ED9\\u0F20-\\u0F29\\u1040-\\u1049\\u1090-\\u1099\\u17E0-\\u17E9\\u1810-\\u1819\\u1946-\\u194F\\u19D0-\\u19D9\\u1A80-\\u1A89\\u1A90-\\u1A99\\u1B50-\\u1B59\\u1BB0-\\u1BB9\\u1C40-\\u1C49\\u1C50-\\u1C59\\uA620-\\uA629\\uA8D0-\\uA8D9\\uA900-\\uA909\\uA9D0-\\uA9D9\\uAA50-\\uAA59\\uABF0-\\uABF9\\uFF10-\\uFF19]") +}; + +function is_letter(ch) { + return UNICODE.letter.test(ch); +}; + +function is_digit(ch) { + ch = ch.charCodeAt(0); + return ch >= 48 && ch <= 57; +}; + +function is_unicode_digit(ch) { + return UNICODE.digit.test(ch); +} + +function is_alphanumeric_char(ch) { + return is_digit(ch) || is_letter(ch); +}; + +function is_unicode_combining_mark(ch) { + return UNICODE.combining_mark.test(ch); +}; + +function is_unicode_connector_punctuation(ch) { + return UNICODE.connector_punctuation.test(ch); +}; + +function is_identifier_start(ch) { + return ch == "$" || ch == "_" || is_letter(ch); +}; + +function is_identifier_char(ch) { + return is_identifier_start(ch) + || is_unicode_combining_mark(ch) + || is_unicode_digit(ch) + || is_unicode_connector_punctuation(ch) + || ch == "\u200c" // zero-width non-joiner + || ch == "\u200d" // zero-width joiner (in my ECMA-262 PDF, this is also 200c) + ; +}; + +function parse_js_number(num) { + if (RE_HEX_NUMBER.test(num)) { + return parseInt(num.substr(2), 16); + } else if (RE_OCT_NUMBER.test(num)) { + return parseInt(num.substr(1), 8); + } else if (RE_DEC_NUMBER.test(num)) { + return parseFloat(num); + } +}; + +function JS_Parse_Error(message, line, col, pos) { + this.message = message; + this.line = line + 1; + this.col = col + 1; + this.pos = pos + 1; + this.stack = new Error().stack; +}; + +JS_Parse_Error.prototype.toString = function() { + return this.message + " (line: " + this.line + ", col: " + this.col + ", pos: " + this.pos + ")" + "\n\n" + this.stack; +}; + +function js_error(message, line, col, pos) { + throw new JS_Parse_Error(message, line, col, pos); +}; + +function is_token(token, type, val) { + return token.type == type && (val == null || token.value == val); +}; + +var EX_EOF = {}; + +function tokenizer($TEXT) { + + var S = { + text : $TEXT.replace(/\r\n?|[\n\u2028\u2029]/g, "\n").replace(/^\uFEFF/, ''), + pos : 0, + tokpos : 0, + line : 0, + tokline : 0, + col : 0, + tokcol : 0, + newline_before : false, + regex_allowed : false, + comments_before : [] + }; + + function peek() { return S.text.charAt(S.pos); }; + + function next(signal_eof, in_string) { + var ch = S.text.charAt(S.pos++); + if (signal_eof && !ch) + throw EX_EOF; + if (ch == "\n") { + S.newline_before = S.newline_before || !in_string; + ++S.line; + S.col = 0; + } else { + ++S.col; + } + return ch; + }; + + function eof() { + return !S.peek(); + }; + + function find(what, signal_eof) { + var pos = S.text.indexOf(what, S.pos); + if (signal_eof && pos == -1) throw EX_EOF; + return pos; + }; + + function start_token() { + S.tokline = S.line; + S.tokcol = S.col; + S.tokpos = S.pos; + }; + + function token(type, value, is_comment) { + S.regex_allowed = ((type == "operator" && !HOP(UNARY_POSTFIX, value)) || + (type == "keyword" && HOP(KEYWORDS_BEFORE_EXPRESSION, value)) || + (type == "punc" && HOP(PUNC_BEFORE_EXPRESSION, value))); + var ret = { + type : type, + value : value, + line : S.tokline, + col : S.tokcol, + pos : S.tokpos, + endpos : S.pos, + nlb : S.newline_before + }; + if (!is_comment) { + ret.comments_before = S.comments_before; + S.comments_before = []; + // make note of any newlines in the comments that came before + for (var i = 0, len = ret.comments_before.length; i < len; i++) { + ret.nlb = ret.nlb || ret.comments_before[i].nlb; + } + } + S.newline_before = false; + return ret; + }; + + function skip_whitespace() { + while (HOP(WHITESPACE_CHARS, peek())) + next(); + }; + + function read_while(pred) { + var ret = "", ch = peek(), i = 0; + while (ch && pred(ch, i++)) { + ret += next(); + ch = peek(); + } + return ret; + }; + + function parse_error(err) { + js_error(err, S.tokline, S.tokcol, S.tokpos); + }; + + function read_num(prefix) { + var has_e = false, after_e = false, has_x = false, has_dot = prefix == "."; + var num = read_while(function(ch, i){ + if (ch == "x" || ch == "X") { + if (has_x) return false; + return has_x = true; + } + if (!has_x && (ch == "E" || ch == "e")) { + if (has_e) return false; + return has_e = after_e = true; + } + if (ch == "-") { + if (after_e || (i == 0 && !prefix)) return true; + return false; + } + if (ch == "+") return after_e; + after_e = false; + if (ch == ".") { + if (!has_dot && !has_x && !has_e) + return has_dot = true; + return false; + } + return is_alphanumeric_char(ch); + }); + if (prefix) + num = prefix + num; + var valid = parse_js_number(num); + if (!isNaN(valid)) { + return token("num", valid); + } else { + parse_error("Invalid syntax: " + num); + } + }; + + function read_escaped_char(in_string) { + var ch = next(true, in_string); + switch (ch) { + case "n" : return "\n"; + case "r" : return "\r"; + case "t" : return "\t"; + case "b" : return "\b"; + case "v" : return "\u000b"; + case "f" : return "\f"; + case "0" : return "\0"; + case "x" : return String.fromCharCode(hex_bytes(2)); + case "u" : return String.fromCharCode(hex_bytes(4)); + case "\n": return ""; + default : return ch; + } + }; + + function hex_bytes(n) { + var num = 0; + for (; n > 0; --n) { + var digit = parseInt(next(true), 16); + if (isNaN(digit)) + parse_error("Invalid hex-character pattern in string"); + num = (num << 4) | digit; + } + return num; + }; + + function read_string() { + return with_eof_error("Unterminated string constant", function(){ + var quote = next(), ret = ""; + for (;;) { + var ch = next(true); + if (ch == "\\") { + // read OctalEscapeSequence (XXX: deprecated if "strict mode") + // https://github.com/mishoo/UglifyJS/issues/178 + var octal_len = 0, first = null; + ch = read_while(function(ch){ + if (ch >= "0" && ch <= "7") { + if (!first) { + first = ch; + return ++octal_len; + } + else if (first <= "3" && octal_len <= 2) return ++octal_len; + else if (first >= "4" && octal_len <= 1) return ++octal_len; + } + return false; + }); + if (octal_len > 0) ch = String.fromCharCode(parseInt(ch, 8)); + else ch = read_escaped_char(true); + } + else if (ch == quote) break; + else if (ch == "\n") throw EX_EOF; + ret += ch; + } + return token("string", ret); + }); + }; + + function read_line_comment() { + next(); + var i = find("\n"), ret; + if (i == -1) { + ret = S.text.substr(S.pos); + S.pos = S.text.length; + } else { + ret = S.text.substring(S.pos, i); + S.pos = i; + } + return token("comment1", ret, true); + }; + + function read_multiline_comment() { + next(); + return with_eof_error("Unterminated multiline comment", function(){ + var i = find("*/", true), + text = S.text.substring(S.pos, i); + S.pos = i + 2; + S.line += text.split("\n").length - 1; + S.newline_before = S.newline_before || text.indexOf("\n") >= 0; + + // https://github.com/mishoo/UglifyJS/issues/#issue/100 + if (/^@cc_on/i.test(text)) { + warn("WARNING: at line " + S.line); + warn("*** Found \"conditional comment\": " + text); + warn("*** UglifyJS DISCARDS ALL COMMENTS. This means your code might no longer work properly in Internet Explorer."); + } + + return token("comment2", text, true); + }); + }; + + function read_name() { + var backslash = false, name = "", ch, escaped = false, hex; + while ((ch = peek()) != null) { + if (!backslash) { + if (ch == "\\") escaped = backslash = true, next(); + else if (is_identifier_char(ch)) name += next(); + else break; + } + else { + if (ch != "u") parse_error("Expecting UnicodeEscapeSequence -- uXXXX"); + ch = read_escaped_char(); + if (!is_identifier_char(ch)) parse_error("Unicode char: " + ch.charCodeAt(0) + " is not valid in identifier"); + name += ch; + backslash = false; + } + } + if (HOP(KEYWORDS, name) && escaped) { + hex = name.charCodeAt(0).toString(16).toUpperCase(); + name = "\\u" + "0000".substr(hex.length) + hex + name.slice(1); + } + return name; + }; + + function read_regexp(regexp) { + return with_eof_error("Unterminated regular expression", function(){ + var prev_backslash = false, ch, in_class = false; + while ((ch = next(true))) if (prev_backslash) { + regexp += "\\" + ch; + prev_backslash = false; + } else if (ch == "[") { + in_class = true; + regexp += ch; + } else if (ch == "]" && in_class) { + in_class = false; + regexp += ch; + } else if (ch == "/" && !in_class) { + break; + } else if (ch == "\\") { + prev_backslash = true; + } else { + regexp += ch; + } + var mods = read_name(); + return token("regexp", [ regexp, mods ]); + }); + }; + + function read_operator(prefix) { + function grow(op) { + if (!peek()) return op; + var bigger = op + peek(); + if (HOP(OPERATORS, bigger)) { + next(); + return grow(bigger); + } else { + return op; + } + }; + return token("operator", grow(prefix || next())); + }; + + function handle_slash() { + next(); + var regex_allowed = S.regex_allowed; + switch (peek()) { + case "/": + S.comments_before.push(read_line_comment()); + S.regex_allowed = regex_allowed; + return next_token(); + case "*": + S.comments_before.push(read_multiline_comment()); + S.regex_allowed = regex_allowed; + return next_token(); + } + return S.regex_allowed ? read_regexp("") : read_operator("/"); + }; + + function handle_dot() { + next(); + return is_digit(peek()) + ? read_num(".") + : token("punc", "."); + }; + + function read_word() { + var word = read_name(); + return !HOP(KEYWORDS, word) + ? token("name", word) + : HOP(OPERATORS, word) + ? token("operator", word) + : HOP(KEYWORDS_ATOM, word) + ? token("atom", word) + : token("keyword", word); + }; + + function with_eof_error(eof_error, cont) { + try { + return cont(); + } catch(ex) { + if (ex === EX_EOF) parse_error(eof_error); + else throw ex; + } + }; + + function next_token(force_regexp) { + if (force_regexp != null) + return read_regexp(force_regexp); + skip_whitespace(); + start_token(); + var ch = peek(); + if (!ch) return token("eof"); + if (is_digit(ch)) return read_num(); + if (ch == '"' || ch == "'") return read_string(); + if (HOP(PUNC_CHARS, ch)) return token("punc", next()); + if (ch == ".") return handle_dot(); + if (ch == "/") return handle_slash(); + if (HOP(OPERATOR_CHARS, ch)) return read_operator(); + if (ch == "\\" || is_identifier_start(ch)) return read_word(); + parse_error("Unexpected character '" + ch + "'"); + }; + + next_token.context = function(nc) { + if (nc) S = nc; + return S; + }; + + return next_token; + +}; + +/* -----[ Parser (constants) ]----- */ + +var UNARY_PREFIX = array_to_hash([ + "typeof", + "void", + "delete", + "--", + "++", + "!", + "~", + "-", + "+" +]); + +var UNARY_POSTFIX = array_to_hash([ "--", "++" ]); + +var ASSIGNMENT = (function(a, ret, i){ + while (i < a.length) { + ret[a[i]] = a[i].substr(0, a[i].length - 1); + i++; + } + return ret; +})( + ["+=", "-=", "/=", "*=", "%=", ">>=", "<<=", ">>>=", "|=", "^=", "&="], + { "=": true }, + 0 +); + +var PRECEDENCE = (function(a, ret){ + for (var i = 0, n = 1; i < a.length; ++i, ++n) { + var b = a[i]; + for (var j = 0; j < b.length; ++j) { + ret[b[j]] = n; + } + } + return ret; +})( + [ + ["||"], + ["&&"], + ["|"], + ["^"], + ["&"], + ["==", "===", "!=", "!=="], + ["<", ">", "<=", ">=", "in", "instanceof"], + [">>", "<<", ">>>"], + ["+", "-"], + ["*", "/", "%"] + ], + {} +); + +var STATEMENTS_WITH_LABELS = array_to_hash([ "for", "do", "while", "switch" ]); + +var ATOMIC_START_TOKEN = array_to_hash([ "atom", "num", "string", "regexp", "name" ]); + +/* -----[ Parser ]----- */ + +function NodeWithToken(str, start, end) { + this.name = str; + this.start = start; + this.end = end; +}; + +NodeWithToken.prototype.toString = function() { return this.name; }; + +function parse($TEXT, exigent_mode, embed_tokens) { + + var S = { + input : typeof $TEXT == "string" ? tokenizer($TEXT, true) : $TEXT, + token : null, + prev : null, + peeked : null, + in_function : 0, + in_directives : true, + in_loop : 0, + labels : [] + }; + + S.token = next(); + + function is(type, value) { + return is_token(S.token, type, value); + }; + + function peek() { return S.peeked || (S.peeked = S.input()); }; + + function next() { + S.prev = S.token; + if (S.peeked) { + S.token = S.peeked; + S.peeked = null; + } else { + S.token = S.input(); + } + S.in_directives = S.in_directives && ( + S.token.type == "string" || is("punc", ";") + ); + return S.token; + }; + + function prev() { + return S.prev; + }; + + function croak(msg, line, col, pos) { + var ctx = S.input.context(); + js_error(msg, + line != null ? line : ctx.tokline, + col != null ? col : ctx.tokcol, + pos != null ? pos : ctx.tokpos); + }; + + function token_error(token, msg) { + croak(msg, token.line, token.col); + }; + + function unexpected(token) { + if (token == null) + token = S.token; + token_error(token, "Unexpected token: " + token.type + " (" + token.value + ")"); + }; + + function expect_token(type, val) { + if (is(type, val)) { + return next(); + } + token_error(S.token, "Unexpected token " + S.token.type + ", expected " + type); + }; + + function expect(punc) { return expect_token("punc", punc); }; + + function can_insert_semicolon() { + return !exigent_mode && ( + S.token.nlb || is("eof") || is("punc", "}") + ); + }; + + function semicolon() { + if (is("punc", ";")) next(); + else if (!can_insert_semicolon()) unexpected(); + }; + + function as() { + return slice(arguments); + }; + + function parenthesised() { + expect("("); + var ex = expression(); + expect(")"); + return ex; + }; + + function add_tokens(str, start, end) { + return str instanceof NodeWithToken ? str : new NodeWithToken(str, start, end); + }; + + function maybe_embed_tokens(parser) { + if (embed_tokens) return function() { + var start = S.token; + var ast = parser.apply(this, arguments); + ast[0] = add_tokens(ast[0], start, prev()); + return ast; + }; + else return parser; + }; + + var statement = maybe_embed_tokens(function() { + if (is("operator", "/") || is("operator", "/=")) { + S.peeked = null; + S.token = S.input(S.token.value.substr(1)); // force regexp + } + switch (S.token.type) { + case "string": + var dir = S.in_directives, stat = simple_statement(); + if (dir && stat[1][0] == "string" && !is("punc", ",")) + return as("directive", stat[1][1]); + return stat; + case "num": + case "regexp": + case "operator": + case "atom": + return simple_statement(); + + case "name": + return is_token(peek(), "punc", ":") + ? labeled_statement(prog1(S.token.value, next, next)) + : simple_statement(); + + case "punc": + switch (S.token.value) { + case "{": + return as("block", block_()); + case "[": + case "(": + return simple_statement(); + case ";": + next(); + return as("block"); + default: + unexpected(); + } + + case "keyword": + switch (prog1(S.token.value, next)) { + case "break": + return break_cont("break"); + + case "continue": + return break_cont("continue"); + + case "debugger": + semicolon(); + return as("debugger"); + + case "do": + return (function(body){ + expect_token("keyword", "while"); + return as("do", prog1(parenthesised, semicolon), body); + })(in_loop(statement)); + + case "for": + return for_(); + + case "function": + return function_(true); + + case "if": + return if_(); + + case "return": + if (S.in_function == 0) + croak("'return' outside of function"); + return as("return", + is("punc", ";") + ? (next(), null) + : can_insert_semicolon() + ? null + : prog1(expression, semicolon)); + + case "switch": + return as("switch", parenthesised(), switch_block_()); + + case "throw": + if (S.token.nlb) + croak("Illegal newline after 'throw'"); + return as("throw", prog1(expression, semicolon)); + + case "try": + return try_(); + + case "var": + return prog1(var_, semicolon); + + case "const": + return prog1(const_, semicolon); + + case "while": + return as("while", parenthesised(), in_loop(statement)); + + case "with": + return as("with", parenthesised(), statement()); + + default: + unexpected(); + } + } + }); + + function labeled_statement(label) { + S.labels.push(label); + var start = S.token, stat = statement(); + if (exigent_mode && !HOP(STATEMENTS_WITH_LABELS, stat[0])) + unexpected(start); + S.labels.pop(); + return as("label", label, stat); + }; + + function simple_statement() { + return as("stat", prog1(expression, semicolon)); + }; + + function break_cont(type) { + var name; + if (!can_insert_semicolon()) { + name = is("name") ? S.token.value : null; + } + if (name != null) { + next(); + if (!member(name, S.labels)) + croak("Label " + name + " without matching loop or statement"); + } + else if (S.in_loop == 0) + croak(type + " not inside a loop or switch"); + semicolon(); + return as(type, name); + }; + + function for_() { + expect("("); + var init = null; + if (!is("punc", ";")) { + init = is("keyword", "var") + ? (next(), var_(true)) + : expression(true, true); + if (is("operator", "in")) { + if (init[0] == "var" && init[1].length > 1) + croak("Only one variable declaration allowed in for..in loop"); + return for_in(init); + } + } + return regular_for(init); + }; + + function regular_for(init) { + expect(";"); + var test = is("punc", ";") ? null : expression(); + expect(";"); + var step = is("punc", ")") ? null : expression(); + expect(")"); + return as("for", init, test, step, in_loop(statement)); + }; + + function for_in(init) { + var lhs = init[0] == "var" ? as("name", init[1][0]) : init; + next(); + var obj = expression(); + expect(")"); + return as("for-in", init, lhs, obj, in_loop(statement)); + }; + + var function_ = function(in_statement) { + var name = is("name") ? prog1(S.token.value, next) : null; + if (in_statement && !name) + unexpected(); + expect("("); + return as(in_statement ? "defun" : "function", + name, + // arguments + (function(first, a){ + while (!is("punc", ")")) { + if (first) first = false; else expect(","); + if (!is("name")) unexpected(); + a.push(S.token.value); + next(); + } + next(); + return a; + })(true, []), + // body + (function(){ + ++S.in_function; + var loop = S.in_loop; + S.in_directives = true; + S.in_loop = 0; + var a = block_(); + --S.in_function; + S.in_loop = loop; + return a; + })()); + }; + + function if_() { + var cond = parenthesised(), body = statement(), belse; + if (is("keyword", "else")) { + next(); + belse = statement(); + } + return as("if", cond, body, belse); + }; + + function block_() { + expect("{"); + var a = []; + while (!is("punc", "}")) { + if (is("eof")) unexpected(); + a.push(statement()); + } + next(); + return a; + }; + + var switch_block_ = curry(in_loop, function(){ + expect("{"); + var a = [], cur = null; + while (!is("punc", "}")) { + if (is("eof")) unexpected(); + if (is("keyword", "case")) { + next(); + cur = []; + a.push([ expression(), cur ]); + expect(":"); + } + else if (is("keyword", "default")) { + next(); + expect(":"); + cur = []; + a.push([ null, cur ]); + } + else { + if (!cur) unexpected(); + cur.push(statement()); + } + } + next(); + return a; + }); + + function try_() { + var body = block_(), bcatch, bfinally; + if (is("keyword", "catch")) { + next(); + expect("("); + if (!is("name")) + croak("Name expected"); + var name = S.token.value; + next(); + expect(")"); + bcatch = [ name, block_() ]; + } + if (is("keyword", "finally")) { + next(); + bfinally = block_(); + } + if (!bcatch && !bfinally) + croak("Missing catch/finally blocks"); + return as("try", body, bcatch, bfinally); + }; + + function vardefs(no_in) { + var a = []; + for (;;) { + if (!is("name")) + unexpected(); + var name = S.token.value; + next(); + if (is("operator", "=")) { + next(); + a.push([ name, expression(false, no_in) ]); + } else { + a.push([ name ]); + } + if (!is("punc", ",")) + break; + next(); + } + return a; + }; + + function var_(no_in) { + return as("var", vardefs(no_in)); + }; + + function const_() { + return as("const", vardefs()); + }; + + function new_() { + var newexp = expr_atom(false), args; + if (is("punc", "(")) { + next(); + args = expr_list(")"); + } else { + args = []; + } + return subscripts(as("new", newexp, args), true); + }; + + var expr_atom = maybe_embed_tokens(function(allow_calls) { + if (is("operator", "new")) { + next(); + return new_(); + } + if (is("punc")) { + switch (S.token.value) { + case "(": + next(); + return subscripts(prog1(expression, curry(expect, ")")), allow_calls); + case "[": + next(); + return subscripts(array_(), allow_calls); + case "{": + next(); + return subscripts(object_(), allow_calls); + } + unexpected(); + } + if (is("keyword", "function")) { + next(); + return subscripts(function_(false), allow_calls); + } + if (HOP(ATOMIC_START_TOKEN, S.token.type)) { + var atom = S.token.type == "regexp" + ? as("regexp", S.token.value[0], S.token.value[1]) + : as(S.token.type, S.token.value); + return subscripts(prog1(atom, next), allow_calls); + } + unexpected(); + }); + + function expr_list(closing, allow_trailing_comma, allow_empty) { + var first = true, a = []; + while (!is("punc", closing)) { + if (first) first = false; else expect(","); + if (allow_trailing_comma && is("punc", closing)) break; + if (is("punc", ",") && allow_empty) { + a.push([ "atom", "undefined" ]); + } else { + a.push(expression(false)); + } + } + next(); + return a; + }; + + function array_() { + return as("array", expr_list("]", !exigent_mode, true)); + }; + + function object_() { + var first = true, a = []; + while (!is("punc", "}")) { + if (first) first = false; else expect(","); + if (!exigent_mode && is("punc", "}")) + // allow trailing comma + break; + var type = S.token.type; + var name = as_property_name(); + if (type == "name" && (name == "get" || name == "set") && !is("punc", ":")) { + a.push([ as_name(), function_(false), name ]); + } else { + expect(":"); + a.push([ name, expression(false) ]); + } + } + next(); + return as("object", a); + }; + + function as_property_name() { + switch (S.token.type) { + case "num": + case "string": + return prog1(S.token.value, next); + } + return as_name(); + }; + + function as_name() { + switch (S.token.type) { + case "name": + case "operator": + case "keyword": + case "atom": + return prog1(S.token.value, next); + default: + unexpected(); + } + }; + + function subscripts(expr, allow_calls) { + if (is("punc", ".")) { + next(); + return subscripts(as("dot", expr, as_name()), allow_calls); + } + if (is("punc", "[")) { + next(); + return subscripts(as("sub", expr, prog1(expression, curry(expect, "]"))), allow_calls); + } + if (allow_calls && is("punc", "(")) { + next(); + return subscripts(as("call", expr, expr_list(")")), true); + } + return expr; + }; + + function maybe_unary(allow_calls) { + if (is("operator") && HOP(UNARY_PREFIX, S.token.value)) { + return make_unary("unary-prefix", + prog1(S.token.value, next), + maybe_unary(allow_calls)); + } + var val = expr_atom(allow_calls); + while (is("operator") && HOP(UNARY_POSTFIX, S.token.value) && !S.token.nlb) { + val = make_unary("unary-postfix", S.token.value, val); + next(); + } + return val; + }; + + function make_unary(tag, op, expr) { + if ((op == "++" || op == "--") && !is_assignable(expr)) + croak("Invalid use of " + op + " operator"); + return as(tag, op, expr); + }; + + function expr_op(left, min_prec, no_in) { + var op = is("operator") ? S.token.value : null; + if (op && op == "in" && no_in) op = null; + var prec = op != null ? PRECEDENCE[op] : null; + if (prec != null && prec > min_prec) { + next(); + var right = expr_op(maybe_unary(true), prec, no_in); + return expr_op(as("binary", op, left, right), min_prec, no_in); + } + return left; + }; + + function expr_ops(no_in) { + return expr_op(maybe_unary(true), 0, no_in); + }; + + function maybe_conditional(no_in) { + var expr = expr_ops(no_in); + if (is("operator", "?")) { + next(); + var yes = expression(false); + expect(":"); + return as("conditional", expr, yes, expression(false, no_in)); + } + return expr; + }; + + function is_assignable(expr) { + if (!exigent_mode) return true; + switch (expr[0]+"") { + case "dot": + case "sub": + case "new": + case "call": + return true; + case "name": + return expr[1] != "this"; + } + }; + + function maybe_assign(no_in) { + var left = maybe_conditional(no_in), val = S.token.value; + if (is("operator") && HOP(ASSIGNMENT, val)) { + if (is_assignable(left)) { + next(); + return as("assign", ASSIGNMENT[val], left, maybe_assign(no_in)); + } + croak("Invalid assignment"); + } + return left; + }; + + var expression = maybe_embed_tokens(function(commas, no_in) { + if (arguments.length == 0) + commas = true; + var expr = maybe_assign(no_in); + if (commas && is("punc", ",")) { + next(); + return as("seq", expr, expression(true, no_in)); + } + return expr; + }); + + function in_loop(cont) { + try { + ++S.in_loop; + return cont(); + } finally { + --S.in_loop; + } + }; + + return as("toplevel", (function(a){ + while (!is("eof")) + a.push(statement()); + return a; + })([])); + +}; + +/* -----[ Utilities ]----- */ + +function curry(f) { + var args = slice(arguments, 1); + return function() { return f.apply(this, args.concat(slice(arguments))); }; +}; + +function prog1(ret) { + if (ret instanceof Function) + ret = ret(); + for (var i = 1, n = arguments.length; --n > 0; ++i) + arguments[i](); + return ret; +}; + +function array_to_hash(a) { + var ret = {}; + for (var i = 0; i < a.length; ++i) + ret[a[i]] = true; + return ret; +}; + +function slice(a, start) { + return Array.prototype.slice.call(a, start || 0); +}; + +function characters(str) { + return str.split(""); +}; + +function member(name, array) { + for (var i = array.length; --i >= 0;) + if (array[i] == name) + return true; + return false; +}; + +function HOP(obj, prop) { + return Object.prototype.hasOwnProperty.call(obj, prop); +}; + +var warn = function() {}; + +/* -----[ Exports ]----- */ + +exports.tokenizer = tokenizer; +exports.parse = parse; +exports.slice = slice; +exports.curry = curry; +exports.member = member; +exports.array_to_hash = array_to_hash; +exports.PRECEDENCE = PRECEDENCE; +exports.KEYWORDS_ATOM = KEYWORDS_ATOM; +exports.RESERVED_WORDS = RESERVED_WORDS; +exports.KEYWORDS = KEYWORDS; +exports.ATOMIC_START_TOKEN = ATOMIC_START_TOKEN; +exports.OPERATORS = OPERATORS; +exports.is_alphanumeric_char = is_alphanumeric_char; +exports.is_identifier_start = is_identifier_start; +exports.is_identifier_char = is_identifier_char; +exports.set_logger = function(logger) { + warn = logger; +}; + +// Local variables: +// js-indent-level: 4 +// End: +});define('uglifyjs/squeeze-more', ["require", "exports", "module", "./parse-js", "./squeeze-more"], function(require, exports, module) { +var jsp = require("./parse-js"), + pro = require("./process"), + slice = jsp.slice, + member = jsp.member, + curry = jsp.curry, + MAP = pro.MAP, + PRECEDENCE = jsp.PRECEDENCE, + OPERATORS = jsp.OPERATORS; + +function ast_squeeze_more(ast) { + var w = pro.ast_walker(), walk = w.walk, scope; + function with_scope(s, cont) { + var save = scope, ret; + scope = s; + ret = cont(); + scope = save; + return ret; + }; + function _lambda(name, args, body) { + return [ this[0], name, args, with_scope(body.scope, curry(MAP, body, walk)) ]; + }; + return w.with_walkers({ + "toplevel": function(body) { + return [ this[0], with_scope(this.scope, curry(MAP, body, walk)) ]; + }, + "function": _lambda, + "defun": _lambda, + "new": function(ctor, args) { + if (ctor[0] == "name") { + if (ctor[1] == "Array" && !scope.has("Array")) { + if (args.length != 1) { + return [ "array", args ]; + } else { + return walk([ "call", [ "name", "Array" ], args ]); + } + } else if (ctor[1] == "Object" && !scope.has("Object")) { + if (!args.length) { + return [ "object", [] ]; + } else { + return walk([ "call", [ "name", "Object" ], args ]); + } + } else if ((ctor[1] == "RegExp" || ctor[1] == "Function" || ctor[1] == "Error") && !scope.has(ctor[1])) { + return walk([ "call", [ "name", ctor[1] ], args]); + } + } + }, + "call": function(expr, args) { + if (expr[0] == "dot" && expr[1][0] == "string" && args.length == 1 + && (args[0][1] > 0 && expr[2] == "substring" || expr[2] == "substr")) { + return [ "call", [ "dot", expr[1], "slice"], args]; + } + if (expr[0] == "dot" && expr[2] == "toString" && args.length == 0) { + // foo.toString() ==> foo+"" + if (expr[1][0] == "string") return expr[1]; + return [ "binary", "+", expr[1], [ "string", "" ]]; + } + if (expr[0] == "name") { + if (expr[1] == "Array" && args.length != 1 && !scope.has("Array")) { + return [ "array", args ]; + } + if (expr[1] == "Object" && !args.length && !scope.has("Object")) { + return [ "object", [] ]; + } + if (expr[1] == "String" && !scope.has("String")) { + return [ "binary", "+", args[0], [ "string", "" ]]; + } + } + } + }, function() { + return walk(pro.ast_add_scope(ast)); + }); +}; + +exports.ast_squeeze_more = ast_squeeze_more; + +// Local variables: +// js-indent-level: 4 +// End: +}); +define('uglifyjs/process', ["require", "exports", "module", "./parse-js", "./squeeze-more"], function(require, exports, module) { +/*********************************************************************** + + A JavaScript tokenizer / parser / beautifier / compressor. + + This version is suitable for Node.js. With minimal changes (the + exports stuff) it should work on any JS platform. + + This file implements some AST processors. They work on data built + by parse-js. + + Exported functions: + + - ast_mangle(ast, options) -- mangles the variable/function names + in the AST. Returns an AST. + + - ast_squeeze(ast) -- employs various optimizations to make the + final generated code even smaller. Returns an AST. + + - gen_code(ast, options) -- generates JS code from the AST. Pass + true (or an object, see the code for some options) as second + argument to get "pretty" (indented) code. + + -------------------------------- (C) --------------------------------- + + Author: Mihai Bazon + + http://mihai.bazon.net/blog + + Distributed under the BSD license: + + Copyright 2010 (c) Mihai Bazon + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + * Redistributions of source code must retain the above + copyright notice, this list of conditions and the following + disclaimer. + + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials + provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER “AS IS” AND ANY + EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE + LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, + OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR + TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF + THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + SUCH DAMAGE. + + ***********************************************************************/ + +var jsp = require("./parse-js"), + curry = jsp.curry, + slice = jsp.slice, + member = jsp.member, + is_identifier_char = jsp.is_identifier_char, + PRECEDENCE = jsp.PRECEDENCE, + OPERATORS = jsp.OPERATORS; + +/* -----[ helper for AST traversal ]----- */ + +function ast_walker() { + function _vardefs(defs) { + return [ this[0], MAP(defs, function(def){ + var a = [ def[0] ]; + if (def.length > 1) + a[1] = walk(def[1]); + return a; + }) ]; + }; + function _block(statements) { + var out = [ this[0] ]; + if (statements != null) + out.push(MAP(statements, walk)); + return out; + }; + var walkers = { + "string": function(str) { + return [ this[0], str ]; + }, + "num": function(num) { + return [ this[0], num ]; + }, + "name": function(name) { + return [ this[0], name ]; + }, + "toplevel": function(statements) { + return [ this[0], MAP(statements, walk) ]; + }, + "block": _block, + "splice": _block, + "var": _vardefs, + "const": _vardefs, + "try": function(t, c, f) { + return [ + this[0], + MAP(t, walk), + c != null ? [ c[0], MAP(c[1], walk) ] : null, + f != null ? MAP(f, walk) : null + ]; + }, + "throw": function(expr) { + return [ this[0], walk(expr) ]; + }, + "new": function(ctor, args) { + return [ this[0], walk(ctor), MAP(args, walk) ]; + }, + "switch": function(expr, body) { + return [ this[0], walk(expr), MAP(body, function(branch){ + return [ branch[0] ? walk(branch[0]) : null, + MAP(branch[1], walk) ]; + }) ]; + }, + "break": function(label) { + return [ this[0], label ]; + }, + "continue": function(label) { + return [ this[0], label ]; + }, + "conditional": function(cond, t, e) { + return [ this[0], walk(cond), walk(t), walk(e) ]; + }, + "assign": function(op, lvalue, rvalue) { + return [ this[0], op, walk(lvalue), walk(rvalue) ]; + }, + "dot": function(expr) { + return [ this[0], walk(expr) ].concat(slice(arguments, 1)); + }, + "call": function(expr, args) { + return [ this[0], walk(expr), MAP(args, walk) ]; + }, + "function": function(name, args, body) { + return [ this[0], name, args.slice(), MAP(body, walk) ]; + }, + "debugger": function() { + return [ this[0] ]; + }, + "defun": function(name, args, body) { + return [ this[0], name, args.slice(), MAP(body, walk) ]; + }, + "if": function(conditional, t, e) { + return [ this[0], walk(conditional), walk(t), walk(e) ]; + }, + "for": function(init, cond, step, block) { + return [ this[0], walk(init), walk(cond), walk(step), walk(block) ]; + }, + "for-in": function(vvar, key, hash, block) { + return [ this[0], walk(vvar), walk(key), walk(hash), walk(block) ]; + }, + "while": function(cond, block) { + return [ this[0], walk(cond), walk(block) ]; + }, + "do": function(cond, block) { + return [ this[0], walk(cond), walk(block) ]; + }, + "return": function(expr) { + return [ this[0], walk(expr) ]; + }, + "binary": function(op, left, right) { + return [ this[0], op, walk(left), walk(right) ]; + }, + "unary-prefix": function(op, expr) { + return [ this[0], op, walk(expr) ]; + }, + "unary-postfix": function(op, expr) { + return [ this[0], op, walk(expr) ]; + }, + "sub": function(expr, subscript) { + return [ this[0], walk(expr), walk(subscript) ]; + }, + "object": function(props) { + return [ this[0], MAP(props, function(p){ + return p.length == 2 + ? [ p[0], walk(p[1]) ] + : [ p[0], walk(p[1]), p[2] ]; // get/set-ter + }) ]; + }, + "regexp": function(rx, mods) { + return [ this[0], rx, mods ]; + }, + "array": function(elements) { + return [ this[0], MAP(elements, walk) ]; + }, + "stat": function(stat) { + return [ this[0], walk(stat) ]; + }, + "seq": function() { + return [ this[0] ].concat(MAP(slice(arguments), walk)); + }, + "label": function(name, block) { + return [ this[0], name, walk(block) ]; + }, + "with": function(expr, block) { + return [ this[0], walk(expr), walk(block) ]; + }, + "atom": function(name) { + return [ this[0], name ]; + }, + "directive": function(dir) { + return [ this[0], dir ]; + } + }; + + var user = {}; + var stack = []; + function walk(ast) { + if (ast == null) + return null; + try { + stack.push(ast); + var type = ast[0]; + var gen = user[type]; + if (gen) { + var ret = gen.apply(ast, ast.slice(1)); + if (ret != null) + return ret; + } + gen = walkers[type]; + return gen.apply(ast, ast.slice(1)); + } finally { + stack.pop(); + } + }; + + function dive(ast) { + if (ast == null) + return null; + try { + stack.push(ast); + return walkers[ast[0]].apply(ast, ast.slice(1)); + } finally { + stack.pop(); + } + }; + + function with_walkers(walkers, cont){ + var save = {}, i; + for (i in walkers) if (HOP(walkers, i)) { + save[i] = user[i]; + user[i] = walkers[i]; + } + var ret = cont(); + for (i in save) if (HOP(save, i)) { + if (!save[i]) delete user[i]; + else user[i] = save[i]; + } + return ret; + }; + + return { + walk: walk, + dive: dive, + with_walkers: with_walkers, + parent: function() { + return stack[stack.length - 2]; // last one is current node + }, + stack: function() { + return stack; + } + }; +}; + +/* -----[ Scope and mangling ]----- */ + +function Scope(parent) { + this.names = {}; // names defined in this scope + this.mangled = {}; // mangled names (orig.name => mangled) + this.rev_mangled = {}; // reverse lookup (mangled => orig.name) + this.cname = -1; // current mangled name + this.refs = {}; // names referenced from this scope + this.uses_with = false; // will become TRUE if with() is detected in this or any subscopes + this.uses_eval = false; // will become TRUE if eval() is detected in this or any subscopes + this.directives = []; // directives activated from this scope + this.parent = parent; // parent scope + this.children = []; // sub-scopes + if (parent) { + this.level = parent.level + 1; + parent.children.push(this); + } else { + this.level = 0; + } +}; + +function base54_digits() { + if (typeof DIGITS_OVERRIDE_FOR_TESTING != "undefined") + return DIGITS_OVERRIDE_FOR_TESTING; + else + return "etnrisouaflchpdvmgybwESxTNCkLAOM_DPHBjFIqRUzWXV$JKQGYZ0516372984"; +} + +var base54 = (function(){ + var DIGITS = base54_digits(); + return function(num) { + var ret = "", base = 54; + do { + ret += DIGITS.charAt(num % base); + num = Math.floor(num / base); + base = 64; + } while (num > 0); + return ret; + }; +})(); + +Scope.prototype = { + has: function(name) { + for (var s = this; s; s = s.parent) + if (HOP(s.names, name)) + return s; + }, + has_mangled: function(mname) { + for (var s = this; s; s = s.parent) + if (HOP(s.rev_mangled, mname)) + return s; + }, + toJSON: function() { + return { + names: this.names, + uses_eval: this.uses_eval, + uses_with: this.uses_with + }; + }, + + next_mangled: function() { + // we must be careful that the new mangled name: + // + // 1. doesn't shadow a mangled name from a parent + // scope, unless we don't reference the original + // name from this scope OR from any sub-scopes! + // This will get slow. + // + // 2. doesn't shadow an original name from a parent + // scope, in the event that the name is not mangled + // in the parent scope and we reference that name + // here OR IN ANY SUBSCOPES! + // + // 3. doesn't shadow a name that is referenced but not + // defined (possibly global defined elsewhere). + for (;;) { + var m = base54(++this.cname), prior; + + // case 1. + prior = this.has_mangled(m); + if (prior && this.refs[prior.rev_mangled[m]] === prior) + continue; + + // case 2. + prior = this.has(m); + if (prior && prior !== this && this.refs[m] === prior && !prior.has_mangled(m)) + continue; + + // case 3. + if (HOP(this.refs, m) && this.refs[m] == null) + continue; + + // I got "do" once. :-/ + if (!is_identifier(m)) + continue; + + return m; + } + }, + set_mangle: function(name, m) { + this.rev_mangled[m] = name; + return this.mangled[name] = m; + }, + get_mangled: function(name, newMangle) { + if (this.uses_eval || this.uses_with) return name; // no mangle if eval or with is in use + var s = this.has(name); + if (!s) return name; // not in visible scope, no mangle + if (HOP(s.mangled, name)) return s.mangled[name]; // already mangled in this scope + if (!newMangle) return name; // not found and no mangling requested + return s.set_mangle(name, s.next_mangled()); + }, + references: function(name) { + return name && !this.parent || this.uses_with || this.uses_eval || this.refs[name]; + }, + define: function(name, type) { + if (name != null) { + if (type == "var" || !HOP(this.names, name)) + this.names[name] = type || "var"; + return name; + } + }, + active_directive: function(dir) { + return member(dir, this.directives) || this.parent && this.parent.active_directive(dir); + } +}; + +function ast_add_scope(ast) { + + var current_scope = null; + var w = ast_walker(), walk = w.walk; + var having_eval = []; + + function with_new_scope(cont) { + current_scope = new Scope(current_scope); + current_scope.labels = new Scope(); + var ret = current_scope.body = cont(); + ret.scope = current_scope; + current_scope = current_scope.parent; + return ret; + }; + + function define(name, type) { + return current_scope.define(name, type); + }; + + function reference(name) { + current_scope.refs[name] = true; + }; + + function _lambda(name, args, body) { + var is_defun = this[0] == "defun"; + return [ this[0], is_defun ? define(name, "defun") : name, args, with_new_scope(function(){ + if (!is_defun) define(name, "lambda"); + MAP(args, function(name){ define(name, "arg") }); + return MAP(body, walk); + })]; + }; + + function _vardefs(type) { + return function(defs) { + MAP(defs, function(d){ + define(d[0], type); + if (d[1]) reference(d[0]); + }); + }; + }; + + function _breacont(label) { + if (label) + current_scope.labels.refs[label] = true; + }; + + return with_new_scope(function(){ + // process AST + var ret = w.with_walkers({ + "function": _lambda, + "defun": _lambda, + "label": function(name, stat) { current_scope.labels.define(name) }, + "break": _breacont, + "continue": _breacont, + "with": function(expr, block) { + for (var s = current_scope; s; s = s.parent) + s.uses_with = true; + }, + "var": _vardefs("var"), + "const": _vardefs("const"), + "try": function(t, c, f) { + if (c != null) return [ + this[0], + MAP(t, walk), + [ define(c[0], "catch"), MAP(c[1], walk) ], + f != null ? MAP(f, walk) : null + ]; + }, + "name": function(name) { + if (name == "eval") + having_eval.push(current_scope); + reference(name); + } + }, function(){ + return walk(ast); + }); + + // the reason why we need an additional pass here is + // that names can be used prior to their definition. + + // scopes where eval was detected and their parents + // are marked with uses_eval, unless they define the + // "eval" name. + MAP(having_eval, function(scope){ + if (!scope.has("eval")) while (scope) { + scope.uses_eval = true; + scope = scope.parent; + } + }); + + // for referenced names it might be useful to know + // their origin scope. current_scope here is the + // toplevel one. + function fixrefs(scope, i) { + // do children first; order shouldn't matter + for (i = scope.children.length; --i >= 0;) + fixrefs(scope.children[i]); + for (i in scope.refs) if (HOP(scope.refs, i)) { + // find origin scope and propagate the reference to origin + for (var origin = scope.has(i), s = scope; s; s = s.parent) { + s.refs[i] = origin; + if (s === origin) break; + } + } + }; + fixrefs(current_scope); + + return ret; + }); + +}; + +/* -----[ mangle names ]----- */ + +function ast_mangle(ast, options) { + var w = ast_walker(), walk = w.walk, scope; + options = defaults(options, { + mangle : true, + toplevel : false, + defines : null, + except : null, + no_functions : false + }); + + function get_mangled(name, newMangle) { + if (!options.mangle) return name; + if (!options.toplevel && !scope.parent) return name; // don't mangle toplevel + if (options.except && member(name, options.except)) + return name; + if (options.no_functions && HOP(scope.names, name) && + (scope.names[name] == 'defun' || scope.names[name] == 'lambda')) + return name; + return scope.get_mangled(name, newMangle); + }; + + function get_define(name) { + if (options.defines) { + // we always lookup a defined symbol for the current scope FIRST, so declared + // vars trump a DEFINE symbol, but if no such var is found, then match a DEFINE value + if (!scope.has(name)) { + if (HOP(options.defines, name)) { + return options.defines[name]; + } + } + return null; + } + }; + + function _lambda(name, args, body) { + if (!options.no_functions && options.mangle) { + var is_defun = this[0] == "defun", extra; + if (name) { + if (is_defun) name = get_mangled(name); + else if (body.scope.references(name)) { + extra = {}; + if (!(scope.uses_eval || scope.uses_with)) + name = extra[name] = scope.next_mangled(); + else + extra[name] = name; + } + else name = null; + } + } + body = with_scope(body.scope, function(){ + args = MAP(args, function(name){ return get_mangled(name) }); + return MAP(body, walk); + }, extra); + return [ this[0], name, args, body ]; + }; + + function with_scope(s, cont, extra) { + var _scope = scope; + scope = s; + if (extra) for (var i in extra) if (HOP(extra, i)) { + s.set_mangle(i, extra[i]); + } + for (var i in s.names) if (HOP(s.names, i)) { + get_mangled(i, true); + } + var ret = cont(); + ret.scope = s; + scope = _scope; + return ret; + }; + + function _vardefs(defs) { + return [ this[0], MAP(defs, function(d){ + return [ get_mangled(d[0]), walk(d[1]) ]; + }) ]; + }; + + function _breacont(label) { + if (label) return [ this[0], scope.labels.get_mangled(label) ]; + }; + + return w.with_walkers({ + "function": _lambda, + "defun": function() { + // move function declarations to the top when + // they are not in some block. + var ast = _lambda.apply(this, arguments); + switch (w.parent()[0]) { + case "toplevel": + case "function": + case "defun": + return MAP.at_top(ast); + } + return ast; + }, + "label": function(label, stat) { + if (scope.labels.refs[label]) return [ + this[0], + scope.labels.get_mangled(label, true), + walk(stat) + ]; + return walk(stat); + }, + "break": _breacont, + "continue": _breacont, + "var": _vardefs, + "const": _vardefs, + "name": function(name) { + return get_define(name) || [ this[0], get_mangled(name) ]; + }, + "try": function(t, c, f) { + return [ this[0], + MAP(t, walk), + c != null ? [ get_mangled(c[0]), MAP(c[1], walk) ] : null, + f != null ? MAP(f, walk) : null ]; + }, + "toplevel": function(body) { + var self = this; + return with_scope(self.scope, function(){ + return [ self[0], MAP(body, walk) ]; + }); + }, + "directive": function() { + return MAP.at_top(this); + } + }, function() { + return walk(ast_add_scope(ast)); + }); +}; + +/* -----[ + - compress foo["bar"] into foo.bar, + - remove block brackets {} where possible + - join consecutive var declarations + - various optimizations for IFs: + - if (cond) foo(); else bar(); ==> cond?foo():bar(); + - if (cond) foo(); ==> cond&&foo(); + - if (foo) return bar(); else return baz(); ==> return foo?bar():baz(); // also for throw + - if (foo) return bar(); else something(); ==> {if(foo)return bar();something()} + ]----- */ + +var warn = function(){}; + +function best_of(ast1, ast2) { + return gen_code(ast1).length > gen_code(ast2[0] == "stat" ? ast2[1] : ast2).length ? ast2 : ast1; +}; + +function last_stat(b) { + if (b[0] == "block" && b[1] && b[1].length > 0) + return b[1][b[1].length - 1]; + return b; +} + +function aborts(t) { + if (t) switch (last_stat(t)[0]) { + case "return": + case "break": + case "continue": + case "throw": + return true; + } +}; + +function boolean_expr(expr) { + return ( (expr[0] == "unary-prefix" + && member(expr[1], [ "!", "delete" ])) || + + (expr[0] == "binary" + && member(expr[1], [ "in", "instanceof", "==", "!=", "===", "!==", "<", "<=", ">=", ">" ])) || + + (expr[0] == "binary" + && member(expr[1], [ "&&", "||" ]) + && boolean_expr(expr[2]) + && boolean_expr(expr[3])) || + + (expr[0] == "conditional" + && boolean_expr(expr[2]) + && boolean_expr(expr[3])) || + + (expr[0] == "assign" + && expr[1] === true + && boolean_expr(expr[3])) || + + (expr[0] == "seq" + && boolean_expr(expr[expr.length - 1])) + ); +}; + +function empty(b) { + return !b || (b[0] == "block" && (!b[1] || b[1].length == 0)); +}; + +function is_string(node) { + return (node[0] == "string" || + node[0] == "unary-prefix" && node[1] == "typeof" || + node[0] == "binary" && node[1] == "+" && + (is_string(node[2]) || is_string(node[3]))); +}; + +var when_constant = (function(){ + + var $NOT_CONSTANT = {}; + + // this can only evaluate constant expressions. If it finds anything + // not constant, it throws $NOT_CONSTANT. + function evaluate(expr) { + switch (expr[0]) { + case "string": + case "num": + return expr[1]; + case "name": + case "atom": + switch (expr[1]) { + case "true": return true; + case "false": return false; + case "null": return null; + } + break; + case "unary-prefix": + switch (expr[1]) { + case "!": return !evaluate(expr[2]); + case "typeof": return typeof evaluate(expr[2]); + case "~": return ~evaluate(expr[2]); + case "-": return -evaluate(expr[2]); + case "+": return +evaluate(expr[2]); + } + break; + case "binary": + var left = expr[2], right = expr[3]; + switch (expr[1]) { + case "&&" : return evaluate(left) && evaluate(right); + case "||" : return evaluate(left) || evaluate(right); + case "|" : return evaluate(left) | evaluate(right); + case "&" : return evaluate(left) & evaluate(right); + case "^" : return evaluate(left) ^ evaluate(right); + case "+" : return evaluate(left) + evaluate(right); + case "*" : return evaluate(left) * evaluate(right); + case "/" : return evaluate(left) / evaluate(right); + case "%" : return evaluate(left) % evaluate(right); + case "-" : return evaluate(left) - evaluate(right); + case "<<" : return evaluate(left) << evaluate(right); + case ">>" : return evaluate(left) >> evaluate(right); + case ">>>" : return evaluate(left) >>> evaluate(right); + case "==" : return evaluate(left) == evaluate(right); + case "===" : return evaluate(left) === evaluate(right); + case "!=" : return evaluate(left) != evaluate(right); + case "!==" : return evaluate(left) !== evaluate(right); + case "<" : return evaluate(left) < evaluate(right); + case "<=" : return evaluate(left) <= evaluate(right); + case ">" : return evaluate(left) > evaluate(right); + case ">=" : return evaluate(left) >= evaluate(right); + case "in" : return evaluate(left) in evaluate(right); + case "instanceof" : return evaluate(left) instanceof evaluate(right); + } + } + throw $NOT_CONSTANT; + }; + + return function(expr, yes, no) { + try { + var val = evaluate(expr), ast; + switch (typeof val) { + case "string": ast = [ "string", val ]; break; + case "number": ast = [ "num", val ]; break; + case "boolean": ast = [ "name", String(val) ]; break; + default: + if (val === null) { ast = [ "atom", "null" ]; break; } + throw new Error("Can't handle constant of type: " + (typeof val)); + } + return yes.call(expr, ast, val); + } catch(ex) { + if (ex === $NOT_CONSTANT) { + if (expr[0] == "binary" + && (expr[1] == "===" || expr[1] == "!==") + && ((is_string(expr[2]) && is_string(expr[3])) + || (boolean_expr(expr[2]) && boolean_expr(expr[3])))) { + expr[1] = expr[1].substr(0, 2); + } + else if (no && expr[0] == "binary" + && (expr[1] == "||" || expr[1] == "&&")) { + // the whole expression is not constant but the lval may be... + try { + var lval = evaluate(expr[2]); + expr = ((expr[1] == "&&" && (lval ? expr[3] : lval)) || + (expr[1] == "||" && (lval ? lval : expr[3])) || + expr); + } catch(ex2) { + // IGNORE... lval is not constant + } + } + return no ? no.call(expr, expr) : null; + } + else throw ex; + } + }; + +})(); + +function warn_unreachable(ast) { + if (!empty(ast)) + warn("Dropping unreachable code: " + gen_code(ast, true)); +}; + +function prepare_ifs(ast) { + var w = ast_walker(), walk = w.walk; + // In this first pass, we rewrite ifs which abort with no else with an + // if-else. For example: + // + // if (x) { + // blah(); + // return y; + // } + // foobar(); + // + // is rewritten into: + // + // if (x) { + // blah(); + // return y; + // } else { + // foobar(); + // } + function redo_if(statements) { + statements = MAP(statements, walk); + + for (var i = 0; i < statements.length; ++i) { + var fi = statements[i]; + if (fi[0] != "if") continue; + + if (fi[3]) continue; + + var t = fi[2]; + if (!aborts(t)) continue; + + var conditional = walk(fi[1]); + + var e_body = redo_if(statements.slice(i + 1)); + var e = e_body.length == 1 ? e_body[0] : [ "block", e_body ]; + + return statements.slice(0, i).concat([ [ + fi[0], // "if" + conditional, // conditional + t, // then + e // else + ] ]); + } + + return statements; + }; + + function redo_if_lambda(name, args, body) { + body = redo_if(body); + return [ this[0], name, args, body ]; + }; + + function redo_if_block(statements) { + return [ this[0], statements != null ? redo_if(statements) : null ]; + }; + + return w.with_walkers({ + "defun": redo_if_lambda, + "function": redo_if_lambda, + "block": redo_if_block, + "splice": redo_if_block, + "toplevel": function(statements) { + return [ this[0], redo_if(statements) ]; + }, + "try": function(t, c, f) { + return [ + this[0], + redo_if(t), + c != null ? [ c[0], redo_if(c[1]) ] : null, + f != null ? redo_if(f) : null + ]; + } + }, function() { + return walk(ast); + }); +}; + +function for_side_effects(ast, handler) { + var w = ast_walker(), walk = w.walk; + var $stop = {}, $restart = {}; + function stop() { throw $stop }; + function restart() { throw $restart }; + function found(){ return handler.call(this, this, w, stop, restart) }; + function unary(op) { + if (op == "++" || op == "--") + return found.apply(this, arguments); + }; + function binary(op) { + if (op == "&&" || op == "||") + return found.apply(this, arguments); + }; + return w.with_walkers({ + "try": found, + "throw": found, + "return": found, + "new": found, + "switch": found, + "break": found, + "continue": found, + "assign": found, + "call": found, + "if": found, + "for": found, + "for-in": found, + "while": found, + "do": found, + "return": found, + "unary-prefix": unary, + "unary-postfix": unary, + "conditional": found, + "binary": binary, + "defun": found + }, function(){ + while (true) try { + walk(ast); + break; + } catch(ex) { + if (ex === $stop) break; + if (ex === $restart) continue; + throw ex; + } + }); +}; + +function ast_lift_variables(ast) { + var w = ast_walker(), walk = w.walk, scope; + function do_body(body, env) { + var _scope = scope; + scope = env; + body = MAP(body, walk); + var hash = {}, names = MAP(env.names, function(type, name){ + if (type != "var") return MAP.skip; + if (!env.references(name)) return MAP.skip; + hash[name] = true; + return [ name ]; + }); + if (names.length > 0) { + // looking for assignments to any of these variables. + // we can save considerable space by moving the definitions + // in the var declaration. + for_side_effects([ "block", body ], function(ast, walker, stop, restart) { + if (ast[0] == "assign" + && ast[1] === true + && ast[2][0] == "name" + && HOP(hash, ast[2][1])) { + // insert the definition into the var declaration + for (var i = names.length; --i >= 0;) { + if (names[i][0] == ast[2][1]) { + if (names[i][1]) // this name already defined, we must stop + stop(); + names[i][1] = ast[3]; // definition + names.push(names.splice(i, 1)[0]); + break; + } + } + // remove this assignment from the AST. + var p = walker.parent(); + if (p[0] == "seq") { + var a = p[2]; + a.unshift(0, p.length); + p.splice.apply(p, a); + } + else if (p[0] == "stat") { + p.splice(0, p.length, "block"); // empty statement + } + else { + stop(); + } + restart(); + } + stop(); + }); + body.unshift([ "var", names ]); + } + scope = _scope; + return body; + }; + function _vardefs(defs) { + var ret = null; + for (var i = defs.length; --i >= 0;) { + var d = defs[i]; + if (!d[1]) continue; + d = [ "assign", true, [ "name", d[0] ], d[1] ]; + if (ret == null) ret = d; + else ret = [ "seq", d, ret ]; + } + if (ret == null && w.parent()[0] != "for") { + if (w.parent()[0] == "for-in") + return [ "name", defs[0][0] ]; + return MAP.skip; + } + return [ "stat", ret ]; + }; + function _toplevel(body) { + return [ this[0], do_body(body, this.scope) ]; + }; + return w.with_walkers({ + "function": function(name, args, body){ + for (var i = args.length; --i >= 0 && !body.scope.references(args[i]);) + args.pop(); + if (!body.scope.references(name)) name = null; + return [ this[0], name, args, do_body(body, body.scope) ]; + }, + "defun": function(name, args, body){ + if (!scope.references(name)) return MAP.skip; + for (var i = args.length; --i >= 0 && !body.scope.references(args[i]);) + args.pop(); + return [ this[0], name, args, do_body(body, body.scope) ]; + }, + "var": _vardefs, + "toplevel": _toplevel + }, function(){ + return walk(ast_add_scope(ast)); + }); +}; + +function ast_squeeze(ast, options) { + ast = squeeze_1(ast, options); + ast = squeeze_2(ast, options); + return ast; +}; + +function squeeze_1(ast, options) { + options = defaults(options, { + make_seqs : true, + dead_code : true, + no_warnings : false, + keep_comps : true, + unsafe : false + }); + + var w = ast_walker(), walk = w.walk, scope; + + function negate(c) { + var not_c = [ "unary-prefix", "!", c ]; + switch (c[0]) { + case "unary-prefix": + return c[1] == "!" && boolean_expr(c[2]) ? c[2] : not_c; + case "seq": + c = slice(c); + c[c.length - 1] = negate(c[c.length - 1]); + return c; + case "conditional": + return best_of(not_c, [ "conditional", c[1], negate(c[2]), negate(c[3]) ]); + case "binary": + var op = c[1], left = c[2], right = c[3]; + if (!options.keep_comps) switch (op) { + case "<=" : return [ "binary", ">", left, right ]; + case "<" : return [ "binary", ">=", left, right ]; + case ">=" : return [ "binary", "<", left, right ]; + case ">" : return [ "binary", "<=", left, right ]; + } + switch (op) { + case "==" : return [ "binary", "!=", left, right ]; + case "!=" : return [ "binary", "==", left, right ]; + case "===" : return [ "binary", "!==", left, right ]; + case "!==" : return [ "binary", "===", left, right ]; + case "&&" : return best_of(not_c, [ "binary", "||", negate(left), negate(right) ]); + case "||" : return best_of(not_c, [ "binary", "&&", negate(left), negate(right) ]); + } + break; + } + return not_c; + }; + + function make_conditional(c, t, e) { + var make_real_conditional = function() { + if (c[0] == "unary-prefix" && c[1] == "!") { + return e ? [ "conditional", c[2], e, t ] : [ "binary", "||", c[2], t ]; + } else { + return e ? best_of( + [ "conditional", c, t, e ], + [ "conditional", negate(c), e, t ] + ) : [ "binary", "&&", c, t ]; + } + }; + // shortcut the conditional if the expression has a constant value + return when_constant(c, function(ast, val){ + warn_unreachable(val ? e : t); + return (val ? t : e); + }, make_real_conditional); + }; + + function rmblock(block) { + if (block != null && block[0] == "block" && block[1]) { + if (block[1].length == 1) + block = block[1][0]; + else if (block[1].length == 0) + block = [ "block" ]; + } + return block; + }; + + function _lambda(name, args, body) { + return [ this[0], name, args, tighten(body, "lambda") ]; + }; + + // this function does a few things: + // 1. discard useless blocks + // 2. join consecutive var declarations + // 3. remove obviously dead code + // 4. transform consecutive statements using the comma operator + // 5. if block_type == "lambda" and it detects constructs like if(foo) return ... - rewrite like if (!foo) { ... } + function tighten(statements, block_type) { + statements = MAP(statements, walk); + + statements = statements.reduce(function(a, stat){ + if (stat[0] == "block") { + if (stat[1]) { + a.push.apply(a, stat[1]); + } + } else { + a.push(stat); + } + return a; + }, []); + + statements = (function(a, prev){ + statements.forEach(function(cur){ + if (prev && ((cur[0] == "var" && prev[0] == "var") || + (cur[0] == "const" && prev[0] == "const"))) { + prev[1] = prev[1].concat(cur[1]); + } else { + a.push(cur); + prev = cur; + } + }); + return a; + })([]); + + if (options.dead_code) statements = (function(a, has_quit){ + statements.forEach(function(st){ + if (has_quit) { + if (st[0] == "function" || st[0] == "defun") { + a.push(st); + } + else if (st[0] == "var" || st[0] == "const") { + if (!options.no_warnings) + warn("Variables declared in unreachable code"); + st[1] = MAP(st[1], function(def){ + if (def[1] && !options.no_warnings) + warn_unreachable([ "assign", true, [ "name", def[0] ], def[1] ]); + return [ def[0] ]; + }); + a.push(st); + } + else if (!options.no_warnings) + warn_unreachable(st); + } + else { + a.push(st); + if (member(st[0], [ "return", "throw", "break", "continue" ])) + has_quit = true; + } + }); + return a; + })([]); + + if (options.make_seqs) statements = (function(a, prev) { + statements.forEach(function(cur){ + if (prev && prev[0] == "stat" && cur[0] == "stat") { + prev[1] = [ "seq", prev[1], cur[1] ]; + } else { + a.push(cur); + prev = cur; + } + }); + if (a.length >= 2 + && a[a.length-2][0] == "stat" + && (a[a.length-1][0] == "return" || a[a.length-1][0] == "throw") + && a[a.length-1][1]) + { + a.splice(a.length - 2, 2, + [ a[a.length-1][0], + [ "seq", a[a.length-2][1], a[a.length-1][1] ]]); + } + return a; + })([]); + + // this increases jQuery by 1K. Probably not such a good idea after all.. + // part of this is done in prepare_ifs anyway. + // if (block_type == "lambda") statements = (function(i, a, stat){ + // while (i < statements.length) { + // stat = statements[i++]; + // if (stat[0] == "if" && !stat[3]) { + // if (stat[2][0] == "return" && stat[2][1] == null) { + // a.push(make_if(negate(stat[1]), [ "block", statements.slice(i) ])); + // break; + // } + // var last = last_stat(stat[2]); + // if (last[0] == "return" && last[1] == null) { + // a.push(make_if(stat[1], [ "block", stat[2][1].slice(0, -1) ], [ "block", statements.slice(i) ])); + // break; + // } + // } + // a.push(stat); + // } + // return a; + // })(0, []); + + return statements; + }; + + function make_if(c, t, e) { + return when_constant(c, function(ast, val){ + if (val) { + t = walk(t); + warn_unreachable(e); + return t || [ "block" ]; + } else { + e = walk(e); + warn_unreachable(t); + return e || [ "block" ]; + } + }, function() { + return make_real_if(c, t, e); + }); + }; + + function abort_else(c, t, e) { + var ret = [ [ "if", negate(c), e ] ]; + if (t[0] == "block") { + if (t[1]) ret = ret.concat(t[1]); + } else { + ret.push(t); + } + return walk([ "block", ret ]); + }; + + function make_real_if(c, t, e) { + c = walk(c); + t = walk(t); + e = walk(e); + + if (empty(e) && empty(t)) + return [ "stat", c ]; + + if (empty(t)) { + c = negate(c); + t = e; + e = null; + } else if (empty(e)) { + e = null; + } else { + // if we have both else and then, maybe it makes sense to switch them? + (function(){ + var a = gen_code(c); + var n = negate(c); + var b = gen_code(n); + if (b.length < a.length) { + var tmp = t; + t = e; + e = tmp; + c = n; + } + })(); + } + var ret = [ "if", c, t, e ]; + if (t[0] == "if" && empty(t[3]) && empty(e)) { + ret = best_of(ret, walk([ "if", [ "binary", "&&", c, t[1] ], t[2] ])); + } + else if (t[0] == "stat") { + if (e) { + if (e[0] == "stat") + ret = best_of(ret, [ "stat", make_conditional(c, t[1], e[1]) ]); + else if (aborts(e)) + ret = abort_else(c, t, e); + } + else { + ret = best_of(ret, [ "stat", make_conditional(c, t[1]) ]); + } + } + else if (e && t[0] == e[0] && (t[0] == "return" || t[0] == "throw") && t[1] && e[1]) { + ret = best_of(ret, [ t[0], make_conditional(c, t[1], e[1] ) ]); + } + else if (e && aborts(t)) { + ret = [ [ "if", c, t ] ]; + if (e[0] == "block") { + if (e[1]) ret = ret.concat(e[1]); + } + else { + ret.push(e); + } + ret = walk([ "block", ret ]); + } + else if (t && aborts(e)) { + ret = abort_else(c, t, e); + } + return ret; + }; + + function _do_while(cond, body) { + return when_constant(cond, function(cond, val){ + if (!val) { + warn_unreachable(body); + return [ "block" ]; + } else { + return [ "for", null, null, null, walk(body) ]; + } + }); + }; + + return w.with_walkers({ + "sub": function(expr, subscript) { + if (subscript[0] == "string") { + var name = subscript[1]; + if (is_identifier(name)) + return [ "dot", walk(expr), name ]; + else if (/^[1-9][0-9]*$/.test(name) || name === "0") + return [ "sub", walk(expr), [ "num", parseInt(name, 10) ] ]; + } + }, + "if": make_if, + "toplevel": function(body) { + return [ "toplevel", tighten(body) ]; + }, + "switch": function(expr, body) { + var last = body.length - 1; + return [ "switch", walk(expr), MAP(body, function(branch, i){ + var block = tighten(branch[1]); + if (i == last && block.length > 0) { + var node = block[block.length - 1]; + if (node[0] == "break" && !node[1]) + block.pop(); + } + return [ branch[0] ? walk(branch[0]) : null, block ]; + }) ]; + }, + "function": _lambda, + "defun": _lambda, + "block": function(body) { + if (body) return rmblock([ "block", tighten(body) ]); + }, + "binary": function(op, left, right) { + return when_constant([ "binary", op, walk(left), walk(right) ], function yes(c){ + return best_of(walk(c), this); + }, function no() { + return function(){ + if(op != "==" && op != "!=") return; + var l = walk(left), r = walk(right); + if(l && l[0] == "unary-prefix" && l[1] == "!" && l[2][0] == "num") + left = ['num', +!l[2][1]]; + else if (r && r[0] == "unary-prefix" && r[1] == "!" && r[2][0] == "num") + right = ['num', +!r[2][1]]; + return ["binary", op, left, right]; + }() || this; + }); + }, + "conditional": function(c, t, e) { + return make_conditional(walk(c), walk(t), walk(e)); + }, + "try": function(t, c, f) { + return [ + "try", + tighten(t), + c != null ? [ c[0], tighten(c[1]) ] : null, + f != null ? tighten(f) : null + ]; + }, + "unary-prefix": function(op, expr) { + expr = walk(expr); + var ret = [ "unary-prefix", op, expr ]; + if (op == "!") + ret = best_of(ret, negate(expr)); + return when_constant(ret, function(ast, val){ + return walk(ast); // it's either true or false, so minifies to !0 or !1 + }, function() { return ret }); + }, + "name": function(name) { + switch (name) { + case "true": return [ "unary-prefix", "!", [ "num", 0 ]]; + case "false": return [ "unary-prefix", "!", [ "num", 1 ]]; + } + }, + "while": _do_while, + "assign": function(op, lvalue, rvalue) { + lvalue = walk(lvalue); + rvalue = walk(rvalue); + var okOps = [ '+', '-', '/', '*', '%', '>>', '<<', '>>>', '|', '^', '&' ]; + if (op === true && lvalue[0] === "name" && rvalue[0] === "binary" && + ~okOps.indexOf(rvalue[1]) && rvalue[2][0] === "name" && + rvalue[2][1] === lvalue[1]) { + return [ this[0], rvalue[1], lvalue, rvalue[3] ] + } + return [ this[0], op, lvalue, rvalue ]; + }, + "call": function(expr, args) { + expr = walk(expr); + if (options.unsafe && expr[0] == "dot" && expr[1][0] == "string" && expr[2] == "toString") { + return expr[1]; + } + return [ this[0], expr, MAP(args, walk) ]; + }, + "num": function (num) { + if (!isFinite(num)) + return [ "binary", "/", num === 1 / 0 + ? [ "num", 1 ] : num === -1 / 0 + ? [ "unary-prefix", "-", [ "num", 1 ] ] + : [ "num", 0 ], [ "num", 0 ] ]; + + return [ this[0], num ]; + } + }, function() { + return walk(prepare_ifs(walk(prepare_ifs(ast)))); + }); +}; + +function squeeze_2(ast, options) { + var w = ast_walker(), walk = w.walk, scope; + function with_scope(s, cont) { + var save = scope, ret; + scope = s; + ret = cont(); + scope = save; + return ret; + }; + function lambda(name, args, body) { + return [ this[0], name, args, with_scope(body.scope, curry(MAP, body, walk)) ]; + }; + return w.with_walkers({ + "directive": function(dir) { + if (scope.active_directive(dir)) + return [ "block" ]; + scope.directives.push(dir); + }, + "toplevel": function(body) { + return [ this[0], with_scope(this.scope, curry(MAP, body, walk)) ]; + }, + "function": lambda, + "defun": lambda + }, function(){ + return walk(ast_add_scope(ast)); + }); +}; + +/* -----[ re-generate code from the AST ]----- */ + +var DOT_CALL_NO_PARENS = jsp.array_to_hash([ + "name", + "array", + "object", + "string", + "dot", + "sub", + "call", + "regexp", + "defun" +]); + +function make_string(str, ascii_only) { + var dq = 0, sq = 0; + str = str.replace(/[\\\b\f\n\r\t\x22\x27\u2028\u2029\0]/g, function(s){ + switch (s) { + case "\\": return "\\\\"; + case "\b": return "\\b"; + case "\f": return "\\f"; + case "\n": return "\\n"; + case "\r": return "\\r"; + case "\u2028": return "\\u2028"; + case "\u2029": return "\\u2029"; + case '"': ++dq; return '"'; + case "'": ++sq; return "'"; + case "\0": return "\\0"; + } + return s; + }); + if (ascii_only) str = to_ascii(str); + if (dq > sq) return "'" + str.replace(/\x27/g, "\\'") + "'"; + else return '"' + str.replace(/\x22/g, '\\"') + '"'; +}; + +function to_ascii(str) { + return str.replace(/[\u0080-\uffff]/g, function(ch) { + var code = ch.charCodeAt(0).toString(16); + while (code.length < 4) code = "0" + code; + return "\\u" + code; + }); +}; + +var SPLICE_NEEDS_BRACKETS = jsp.array_to_hash([ "if", "while", "do", "for", "for-in", "with" ]); + +function gen_code(ast, options) { + options = defaults(options, { + indent_start : 0, + indent_level : 4, + quote_keys : false, + space_colon : false, + beautify : false, + ascii_only : false, + inline_script: false + }); + var beautify = !!options.beautify; + var indentation = 0, + newline = beautify ? "\n" : "", + space = beautify ? " " : ""; + + function encode_string(str) { + var ret = make_string(str, options.ascii_only); + if (options.inline_script) + ret = ret.replace(/<\x2fscript([>\/\t\n\f\r ])/gi, "<\\/script$1"); + return ret; + }; + + function make_name(name) { + name = name.toString(); + if (options.ascii_only) + name = to_ascii(name); + return name; + }; + + function indent(line) { + if (line == null) + line = ""; + if (beautify) + line = repeat_string(" ", options.indent_start + indentation * options.indent_level) + line; + return line; + }; + + function with_indent(cont, incr) { + if (incr == null) incr = 1; + indentation += incr; + try { return cont.apply(null, slice(arguments, 1)); } + finally { indentation -= incr; } + }; + + function last_char(str) { + str = str.toString(); + return str.charAt(str.length - 1); + }; + + function first_char(str) { + return str.toString().charAt(0); + }; + + function add_spaces(a) { + if (beautify) + return a.join(" "); + var b = []; + for (var i = 0; i < a.length; ++i) { + var next = a[i + 1]; + b.push(a[i]); + if (next && + ((is_identifier_char(last_char(a[i])) && (is_identifier_char(first_char(next)) + || first_char(next) == "\\")) || + (/[\+\-]$/.test(a[i].toString()) && /^[\+\-]/.test(next.toString()) || + last_char(a[i]) == "/" && first_char(next) == "/"))) { + b.push(" "); + } + } + return b.join(""); + }; + + function add_commas(a) { + return a.join("," + space); + }; + + function parenthesize(expr) { + var gen = make(expr); + for (var i = 1; i < arguments.length; ++i) { + var el = arguments[i]; + if ((el instanceof Function && el(expr)) || expr[0] == el) + return "(" + gen + ")"; + } + return gen; + }; + + function best_of(a) { + if (a.length == 1) { + return a[0]; + } + if (a.length == 2) { + var b = a[1]; + a = a[0]; + return a.length <= b.length ? a : b; + } + return best_of([ a[0], best_of(a.slice(1)) ]); + }; + + function needs_parens(expr) { + if (expr[0] == "function" || expr[0] == "object") { + // dot/call on a literal function requires the + // function literal itself to be parenthesized + // only if it's the first "thing" in a + // statement. This means that the parent is + // "stat", but it could also be a "seq" and + // we're the first in this "seq" and the + // parent is "stat", and so on. Messy stuff, + // but it worths the trouble. + var a = slice(w.stack()), self = a.pop(), p = a.pop(); + while (p) { + if (p[0] == "stat") return true; + if (((p[0] == "seq" || p[0] == "call" || p[0] == "dot" || p[0] == "sub" || p[0] == "conditional") && p[1] === self) || + ((p[0] == "binary" || p[0] == "assign" || p[0] == "unary-postfix") && p[2] === self)) { + self = p; + p = a.pop(); + } else { + return false; + } + } + } + return !HOP(DOT_CALL_NO_PARENS, expr[0]); + }; + + function make_num(num) { + var str = num.toString(10), a = [ str.replace(/^0\./, ".").replace('e+', 'e') ], m; + if (Math.floor(num) === num) { + if (num >= 0) { + a.push("0x" + num.toString(16).toLowerCase(), // probably pointless + "0" + num.toString(8)); // same. + } else { + a.push("-0x" + (-num).toString(16).toLowerCase(), // probably pointless + "-0" + (-num).toString(8)); // same. + } + if ((m = /^(.*?)(0+)$/.exec(num))) { + a.push(m[1] + "e" + m[2].length); + } + } else if ((m = /^0?\.(0+)(.*)$/.exec(num))) { + a.push(m[2] + "e-" + (m[1].length + m[2].length), + str.substr(str.indexOf("."))); + } + return best_of(a); + }; + + var w = ast_walker(); + var make = w.walk; + return w.with_walkers({ + "string": encode_string, + "num": make_num, + "name": make_name, + "debugger": function(){ return "debugger;" }, + "toplevel": function(statements) { + return make_block_statements(statements) + .join(newline + newline); + }, + "splice": function(statements) { + var parent = w.parent(); + if (HOP(SPLICE_NEEDS_BRACKETS, parent)) { + // we need block brackets in this case + return make_block.apply(this, arguments); + } else { + return MAP(make_block_statements(statements, true), + function(line, i) { + // the first line is already indented + return i > 0 ? indent(line) : line; + }).join(newline); + } + }, + "block": make_block, + "var": function(defs) { + return "var " + add_commas(MAP(defs, make_1vardef)) + ";"; + }, + "const": function(defs) { + return "const " + add_commas(MAP(defs, make_1vardef)) + ";"; + }, + "try": function(tr, ca, fi) { + var out = [ "try", make_block(tr) ]; + if (ca) out.push("catch", "(" + ca[0] + ")", make_block(ca[1])); + if (fi) out.push("finally", make_block(fi)); + return add_spaces(out); + }, + "throw": function(expr) { + return add_spaces([ "throw", make(expr) ]) + ";"; + }, + "new": function(ctor, args) { + args = args.length > 0 ? "(" + add_commas(MAP(args, function(expr){ + return parenthesize(expr, "seq"); + })) + ")" : ""; + return add_spaces([ "new", parenthesize(ctor, "seq", "binary", "conditional", "assign", function(expr){ + var w = ast_walker(), has_call = {}; + try { + w.with_walkers({ + "call": function() { throw has_call }, + "function": function() { return this } + }, function(){ + w.walk(expr); + }); + } catch(ex) { + if (ex === has_call) + return true; + throw ex; + } + }) + args ]); + }, + "switch": function(expr, body) { + return add_spaces([ "switch", "(" + make(expr) + ")", make_switch_block(body) ]); + }, + "break": function(label) { + var out = "break"; + if (label != null) + out += " " + make_name(label); + return out + ";"; + }, + "continue": function(label) { + var out = "continue"; + if (label != null) + out += " " + make_name(label); + return out + ";"; + }, + "conditional": function(co, th, el) { + return add_spaces([ parenthesize(co, "assign", "seq", "conditional"), "?", + parenthesize(th, "seq"), ":", + parenthesize(el, "seq") ]); + }, + "assign": function(op, lvalue, rvalue) { + if (op && op !== true) op += "="; + else op = "="; + return add_spaces([ make(lvalue), op, parenthesize(rvalue, "seq") ]); + }, + "dot": function(expr) { + var out = make(expr), i = 1; + if (expr[0] == "num") { + if (!/[a-f.]/i.test(out)) + out += "."; + } else if (expr[0] != "function" && needs_parens(expr)) + out = "(" + out + ")"; + while (i < arguments.length) + out += "." + make_name(arguments[i++]); + return out; + }, + "call": function(func, args) { + var f = make(func); + if (f.charAt(0) != "(" && needs_parens(func)) + f = "(" + f + ")"; + return f + "(" + add_commas(MAP(args, function(expr){ + return parenthesize(expr, "seq"); + })) + ")"; + }, + "function": make_function, + "defun": make_function, + "if": function(co, th, el) { + var out = [ "if", "(" + make(co) + ")", el ? make_then(th) : make(th) ]; + if (el) { + out.push("else", make(el)); + } + return add_spaces(out); + }, + "for": function(init, cond, step, block) { + var out = [ "for" ]; + init = (init != null ? make(init) : "").replace(/;*\s*$/, ";" + space); + cond = (cond != null ? make(cond) : "").replace(/;*\s*$/, ";" + space); + step = (step != null ? make(step) : "").replace(/;*\s*$/, ""); + var args = init + cond + step; + if (args == "; ; ") args = ";;"; + out.push("(" + args + ")", make(block)); + return add_spaces(out); + }, + "for-in": function(vvar, key, hash, block) { + return add_spaces([ "for", "(" + + (vvar ? make(vvar).replace(/;+$/, "") : make(key)), + "in", + make(hash) + ")", make(block) ]); + }, + "while": function(condition, block) { + return add_spaces([ "while", "(" + make(condition) + ")", make(block) ]); + }, + "do": function(condition, block) { + return add_spaces([ "do", make(block), "while", "(" + make(condition) + ")" ]) + ";"; + }, + "return": function(expr) { + var out = [ "return" ]; + if (expr != null) out.push(make(expr)); + return add_spaces(out) + ";"; + }, + "binary": function(operator, lvalue, rvalue) { + var left = make(lvalue), right = make(rvalue); + // XXX: I'm pretty sure other cases will bite here. + // we need to be smarter. + // adding parens all the time is the safest bet. + if (member(lvalue[0], [ "assign", "conditional", "seq" ]) || + lvalue[0] == "binary" && PRECEDENCE[operator] > PRECEDENCE[lvalue[1]] || + lvalue[0] == "function" && needs_parens(this)) { + left = "(" + left + ")"; + } + if (member(rvalue[0], [ "assign", "conditional", "seq" ]) || + rvalue[0] == "binary" && PRECEDENCE[operator] >= PRECEDENCE[rvalue[1]] && + !(rvalue[1] == operator && member(operator, [ "&&", "||", "*" ]))) { + right = "(" + right + ")"; + } + else if (!beautify && options.inline_script && (operator == "<" || operator == "<<") + && rvalue[0] == "regexp" && /^script/i.test(rvalue[1])) { + right = " " + right; + } + return add_spaces([ left, operator, right ]); + }, + "unary-prefix": function(operator, expr) { + var val = make(expr); + if (!(expr[0] == "num" || (expr[0] == "unary-prefix" && !HOP(OPERATORS, operator + expr[1])) || !needs_parens(expr))) + val = "(" + val + ")"; + return operator + (jsp.is_alphanumeric_char(operator.charAt(0)) ? " " : "") + val; + }, + "unary-postfix": function(operator, expr) { + var val = make(expr); + if (!(expr[0] == "num" || (expr[0] == "unary-postfix" && !HOP(OPERATORS, operator + expr[1])) || !needs_parens(expr))) + val = "(" + val + ")"; + return val + operator; + }, + "sub": function(expr, subscript) { + var hash = make(expr); + if (needs_parens(expr)) + hash = "(" + hash + ")"; + return hash + "[" + make(subscript) + "]"; + }, + "object": function(props) { + var obj_needs_parens = needs_parens(this); + if (props.length == 0) + return obj_needs_parens ? "({})" : "{}"; + var out = "{" + newline + with_indent(function(){ + return MAP(props, function(p){ + if (p.length == 3) { + // getter/setter. The name is in p[0], the arg.list in p[1][2], the + // body in p[1][3] and type ("get" / "set") in p[2]. + return indent(make_function(p[0], p[1][2], p[1][3], p[2], true)); + } + var key = p[0], val = parenthesize(p[1], "seq"); + if (options.quote_keys) { + key = encode_string(key); + } else if ((typeof key == "number" || !beautify && +key + "" == key) + && parseFloat(key) >= 0) { + key = make_num(+key); + } else if (!is_identifier(key)) { + key = encode_string(key); + } + return indent(add_spaces(beautify && options.space_colon + ? [ key, ":", val ] + : [ key + ":", val ])); + }).join("," + newline); + }) + newline + indent("}"); + return obj_needs_parens ? "(" + out + ")" : out; + }, + "regexp": function(rx, mods) { + if (options.ascii_only) rx = to_ascii(rx); + return "/" + rx + "/" + mods; + }, + "array": function(elements) { + if (elements.length == 0) return "[]"; + return add_spaces([ "[", add_commas(MAP(elements, function(el, i){ + if (!beautify && el[0] == "atom" && el[1] == "undefined") return i === elements.length - 1 ? "," : ""; + return parenthesize(el, "seq"); + })), "]" ]); + }, + "stat": function(stmt) { + return stmt != null + ? make(stmt).replace(/;*\s*$/, ";") + : ";"; + }, + "seq": function() { + return add_commas(MAP(slice(arguments), make)); + }, + "label": function(name, block) { + return add_spaces([ make_name(name), ":", make(block) ]); + }, + "with": function(expr, block) { + return add_spaces([ "with", "(" + make(expr) + ")", make(block) ]); + }, + "atom": function(name) { + return make_name(name); + }, + "directive": function(dir) { + return make_string(dir) + ";"; + } + }, function(){ return make(ast) }); + + // The squeezer replaces "block"-s that contain only a single + // statement with the statement itself; technically, the AST + // is correct, but this can create problems when we output an + // IF having an ELSE clause where the THEN clause ends in an + // IF *without* an ELSE block (then the outer ELSE would refer + // to the inner IF). This function checks for this case and + // adds the block brackets if needed. + function make_then(th) { + if (th == null) return ";"; + if (th[0] == "do") { + // https://github.com/mishoo/UglifyJS/issues/#issue/57 + // IE croaks with "syntax error" on code like this: + // if (foo) do ... while(cond); else ... + // we need block brackets around do/while + return make_block([ th ]); + } + var b = th; + while (true) { + var type = b[0]; + if (type == "if") { + if (!b[3]) + // no else, we must add the block + return make([ "block", [ th ]]); + b = b[3]; + } + else if (type == "while" || type == "do") b = b[2]; + else if (type == "for" || type == "for-in") b = b[4]; + else break; + } + return make(th); + }; + + function make_function(name, args, body, keyword, no_parens) { + var out = keyword || "function"; + if (name) { + out += " " + make_name(name); + } + out += "(" + add_commas(MAP(args, make_name)) + ")"; + out = add_spaces([ out, make_block(body) ]); + return (!no_parens && needs_parens(this)) ? "(" + out + ")" : out; + }; + + function must_has_semicolon(node) { + switch (node[0]) { + case "with": + case "while": + return empty(node[2]) || must_has_semicolon(node[2]); + case "for": + case "for-in": + return empty(node[4]) || must_has_semicolon(node[4]); + case "if": + if (empty(node[2]) && !node[3]) return true; // `if' with empty `then' and no `else' + if (node[3]) { + if (empty(node[3])) return true; // `else' present but empty + return must_has_semicolon(node[3]); // dive into the `else' branch + } + return must_has_semicolon(node[2]); // dive into the `then' branch + case "directive": + return true; + } + }; + + function make_block_statements(statements, noindent) { + for (var a = [], last = statements.length - 1, i = 0; i <= last; ++i) { + var stat = statements[i]; + var code = make(stat); + if (code != ";") { + if (!beautify && i == last && !must_has_semicolon(stat)) { + code = code.replace(/;+\s*$/, ""); + } + a.push(code); + } + } + return noindent ? a : MAP(a, indent); + }; + + function make_switch_block(body) { + var n = body.length; + if (n == 0) return "{}"; + return "{" + newline + MAP(body, function(branch, i){ + var has_body = branch[1].length > 0, code = with_indent(function(){ + return indent(branch[0] + ? add_spaces([ "case", make(branch[0]) + ":" ]) + : "default:"); + }, 0.5) + (has_body ? newline + with_indent(function(){ + return make_block_statements(branch[1]).join(newline); + }) : ""); + if (!beautify && has_body && i < n - 1) + code += ";"; + return code; + }).join(newline) + newline + indent("}"); + }; + + function make_block(statements) { + if (!statements) return ";"; + if (statements.length == 0) return "{}"; + return "{" + newline + with_indent(function(){ + return make_block_statements(statements).join(newline); + }) + newline + indent("}"); + }; + + function make_1vardef(def) { + var name = def[0], val = def[1]; + if (val != null) + name = add_spaces([ make_name(name), "=", parenthesize(val, "seq") ]); + return name; + }; + +}; + +function split_lines(code, max_line_length) { + var splits = [ 0 ]; + jsp.parse(function(){ + var next_token = jsp.tokenizer(code); + var last_split = 0; + var prev_token; + function current_length(tok) { + return tok.pos - last_split; + }; + function split_here(tok) { + last_split = tok.pos; + splits.push(last_split); + }; + function custom(){ + var tok = next_token.apply(this, arguments); + out: { + if (prev_token) { + if (prev_token.type == "keyword") break out; + } + if (current_length(tok) > max_line_length) { + switch (tok.type) { + case "keyword": + case "atom": + case "name": + case "punc": + split_here(tok); + break out; + } + } + } + prev_token = tok; + return tok; + }; + custom.context = function() { + return next_token.context.apply(this, arguments); + }; + return custom; + }()); + return splits.map(function(pos, i){ + return code.substring(pos, splits[i + 1] || code.length); + }).join("\n"); +}; + +/* -----[ Utilities ]----- */ + +function repeat_string(str, i) { + if (i <= 0) return ""; + if (i == 1) return str; + var d = repeat_string(str, i >> 1); + d += d; + if (i & 1) d += str; + return d; +}; + +function defaults(args, defs) { + var ret = {}; + if (args === true) + args = {}; + for (var i in defs) if (HOP(defs, i)) { + ret[i] = (args && HOP(args, i)) ? args[i] : defs[i]; + } + return ret; +}; + +function is_identifier(name) { + return /^[a-z_$][a-z0-9_$]*$/i.test(name) + && name != "this" + && !HOP(jsp.KEYWORDS_ATOM, name) + && !HOP(jsp.RESERVED_WORDS, name) + && !HOP(jsp.KEYWORDS, name); +}; + +function HOP(obj, prop) { + return Object.prototype.hasOwnProperty.call(obj, prop); +}; + +// some utilities + +var MAP; + +(function(){ + MAP = function(a, f, o) { + var ret = [], top = [], i; + function doit() { + var val = f.call(o, a[i], i); + if (val instanceof AtTop) { + val = val.v; + if (val instanceof Splice) { + top.push.apply(top, val.v); + } else { + top.push(val); + } + } + else if (val != skip) { + if (val instanceof Splice) { + ret.push.apply(ret, val.v); + } else { + ret.push(val); + } + } + }; + if (a instanceof Array) for (i = 0; i < a.length; ++i) doit(); + else for (i in a) if (HOP(a, i)) doit(); + return top.concat(ret); + }; + MAP.at_top = function(val) { return new AtTop(val) }; + MAP.splice = function(val) { return new Splice(val) }; + var skip = MAP.skip = {}; + function AtTop(val) { this.v = val }; + function Splice(val) { this.v = val }; +})(); + +/* -----[ Exports ]----- */ + +exports.ast_walker = ast_walker; +exports.ast_mangle = ast_mangle; +exports.ast_squeeze = ast_squeeze; +exports.ast_lift_variables = ast_lift_variables; +exports.gen_code = gen_code; +exports.ast_add_scope = ast_add_scope; +exports.set_logger = function(logger) { warn = logger }; +exports.make_string = make_string; +exports.split_lines = split_lines; +exports.MAP = MAP; + +// keep this last! +exports.ast_squeeze_more = require("./squeeze-more").ast_squeeze_more; + +// Local variables: +// js-indent-level: 4 +// End: +}); +define('uglifyjs/index', ["require", "exports", "module", "./parse-js", "./process", "./consolidator"], function(require, exports, module) { +//convienence function(src, [options]); +function uglify(orig_code, options){ + options || (options = {}); + var jsp = uglify.parser; + var pro = uglify.uglify; + + var ast = jsp.parse(orig_code, options.strict_semicolons); // parse code and get the initial AST + ast = pro.ast_mangle(ast, options.mangle_options); // get a new AST with mangled names + ast = pro.ast_squeeze(ast, options.squeeze_options); // get an AST with compression optimizations + var final_code = pro.gen_code(ast, options.gen_options); // compressed code here + return final_code; +}; + +uglify.parser = require("./parse-js"); +uglify.uglify = require("./process"); +uglify.consolidator = require("./consolidator"); + +module.exports = uglify +});/* -*- Mode: js; js-indent-level: 2; -*- */ +/* + * Copyright 2011 Mozilla Foundation and contributors + * Licensed under the New BSD license. See LICENSE or: + * http://opensource.org/licenses/BSD-3-Clause + */ + +define('source-map/array-set', function (require, exports, module) { + + var util = require('./util'); + + /** + * A data structure which is a combination of an array and a set. Adding a new + * member is O(1), testing for membership is O(1), and finding the index of an + * element is O(1). Removing elements from the set is not supported. Only + * strings are supported for membership. + */ + function ArraySet() { + this._array = []; + this._set = {}; + } + + /** + * Static method for creating ArraySet instances from an existing array. + */ + ArraySet.fromArray = function ArraySet_fromArray(aArray, aAllowDuplicates) { + var set = new ArraySet(); + for (var i = 0, len = aArray.length; i < len; i++) { + set.add(aArray[i], aAllowDuplicates); + } + return set; + }; + + /** + * Add the given string to this set. + * + * @param String aStr + */ + ArraySet.prototype.add = function ArraySet_add(aStr, aAllowDuplicates) { + var isDuplicate = this.has(aStr); + var idx = this._array.length; + if (!isDuplicate || aAllowDuplicates) { + this._array.push(aStr); + } + if (!isDuplicate) { + this._set[util.toSetString(aStr)] = idx; + } + }; + + /** + * Is the given string a member of this set? + * + * @param String aStr + */ + ArraySet.prototype.has = function ArraySet_has(aStr) { + return Object.prototype.hasOwnProperty.call(this._set, + util.toSetString(aStr)); + }; + + /** + * What is the index of the given string in the array? + * + * @param String aStr + */ + ArraySet.prototype.indexOf = function ArraySet_indexOf(aStr) { + if (this.has(aStr)) { + return this._set[util.toSetString(aStr)]; + } + throw new Error('"' + aStr + '" is not in the set.'); + }; + + /** + * What is the element at the given index? + * + * @param Number aIdx + */ + ArraySet.prototype.at = function ArraySet_at(aIdx) { + if (aIdx >= 0 && aIdx < this._array.length) { + return this._array[aIdx]; + } + throw new Error('No element indexed by ' + aIdx); + }; + + /** + * Returns the array representation of this set (which has the proper indices + * indicated by indexOf). Note that this is a copy of the internal array used + * for storing the members so that no one can mess with internal state. + */ + ArraySet.prototype.toArray = function ArraySet_toArray() { + return this._array.slice(); + }; + + exports.ArraySet = ArraySet; + +}); +/* -*- Mode: js; js-indent-level: 2; -*- */ +/* + * Copyright 2011 Mozilla Foundation and contributors + * Licensed under the New BSD license. See LICENSE or: + * http://opensource.org/licenses/BSD-3-Clause + * + * Based on the Base 64 VLQ implementation in Closure Compiler: + * https://code.google.com/p/closure-compiler/source/browse/trunk/src/com/google/debugging/sourcemap/Base64VLQ.java + * + * Copyright 2011 The Closure Compiler Authors. All rights reserved. + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are + * met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials provided + * with the distribution. + * * Neither the name of Google Inc. nor the names of its + * contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ + +define('source-map/base64-vlq', function (require, exports, module) { + + var base64 = require('./base64'); + + // A single base 64 digit can contain 6 bits of data. For the base 64 variable + // length quantities we use in the source map spec, the first bit is the sign, + // the next four bits are the actual value, and the 6th bit is the + // continuation bit. The continuation bit tells us whether there are more + // digits in this value following this digit. + // + // Continuation + // | Sign + // | | + // V V + // 101011 + + var VLQ_BASE_SHIFT = 5; + + // binary: 100000 + var VLQ_BASE = 1 << VLQ_BASE_SHIFT; + + // binary: 011111 + var VLQ_BASE_MASK = VLQ_BASE - 1; + + // binary: 100000 + var VLQ_CONTINUATION_BIT = VLQ_BASE; + + /** + * Converts from a two-complement value to a value where the sign bit is + * is placed in the least significant bit. For example, as decimals: + * 1 becomes 2 (10 binary), -1 becomes 3 (11 binary) + * 2 becomes 4 (100 binary), -2 becomes 5 (101 binary) + */ + function toVLQSigned(aValue) { + return aValue < 0 + ? ((-aValue) << 1) + 1 + : (aValue << 1) + 0; + } + + /** + * Converts to a two-complement value from a value where the sign bit is + * is placed in the least significant bit. For example, as decimals: + * 2 (10 binary) becomes 1, 3 (11 binary) becomes -1 + * 4 (100 binary) becomes 2, 5 (101 binary) becomes -2 + */ + function fromVLQSigned(aValue) { + var isNegative = (aValue & 1) === 1; + var shifted = aValue >> 1; + return isNegative + ? -shifted + : shifted; + } + + /** + * Returns the base 64 VLQ encoded value. + */ + exports.encode = function base64VLQ_encode(aValue) { + var encoded = ""; + var digit; + + var vlq = toVLQSigned(aValue); + + do { + digit = vlq & VLQ_BASE_MASK; + vlq >>>= VLQ_BASE_SHIFT; + if (vlq > 0) { + // There are still more digits in this value, so we must make sure the + // continuation bit is marked. + digit |= VLQ_CONTINUATION_BIT; + } + encoded += base64.encode(digit); + } while (vlq > 0); + + return encoded; + }; + + /** + * Decodes the next base 64 VLQ value from the given string and returns the + * value and the rest of the string. + */ + exports.decode = function base64VLQ_decode(aStr) { + var i = 0; + var strLen = aStr.length; + var result = 0; + var shift = 0; + var continuation, digit; + + do { + if (i >= strLen) { + throw new Error("Expected more digits in base 64 VLQ value."); + } + digit = base64.decode(aStr.charAt(i++)); + continuation = !!(digit & VLQ_CONTINUATION_BIT); + digit &= VLQ_BASE_MASK; + result = result + (digit << shift); + shift += VLQ_BASE_SHIFT; + } while (continuation); + + return { + value: fromVLQSigned(result), + rest: aStr.slice(i) + }; + }; + +}); +/* -*- Mode: js; js-indent-level: 2; -*- */ +/* + * Copyright 2011 Mozilla Foundation and contributors + * Licensed under the New BSD license. See LICENSE or: + * http://opensource.org/licenses/BSD-3-Clause + */ + +define('source-map/base64', function (require, exports, module) { + + var charToIntMap = {}; + var intToCharMap = {}; + + 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/' + .split('') + .forEach(function (ch, index) { + charToIntMap[ch] = index; + intToCharMap[index] = ch; + }); + + /** + * Encode an integer in the range of 0 to 63 to a single base 64 digit. + */ + exports.encode = function base64_encode(aNumber) { + if (aNumber in intToCharMap) { + return intToCharMap[aNumber]; + } + throw new TypeError("Must be between 0 and 63: " + aNumber); + }; + + /** + * Decode a single base 64 digit to an integer. + */ + exports.decode = function base64_decode(aChar) { + if (aChar in charToIntMap) { + return charToIntMap[aChar]; + } + throw new TypeError("Not a valid base 64 digit: " + aChar); + }; + +}); +/* -*- Mode: js; js-indent-level: 2; -*- */ +/* + * Copyright 2011 Mozilla Foundation and contributors + * Licensed under the New BSD license. See LICENSE or: + * http://opensource.org/licenses/BSD-3-Clause + */ + +define('source-map/binary-search', function (require, exports, module) { + + /** + * Recursive implementation of binary search. + * + * @param aLow Indices here and lower do not contain the needle. + * @param aHigh Indices here and higher do not contain the needle. + * @param aNeedle The element being searched for. + * @param aHaystack The non-empty array being searched. + * @param aCompare Function which takes two elements and returns -1, 0, or 1. + */ + function recursiveSearch(aLow, aHigh, aNeedle, aHaystack, aCompare) { + // This function terminates when one of the following is true: + // + // 1. We find the exact element we are looking for. + // + // 2. We did not find the exact element, but we can return the next + // closest element that is less than that element. + // + // 3. We did not find the exact element, and there is no next-closest + // element which is less than the one we are searching for, so we + // return null. + var mid = Math.floor((aHigh - aLow) / 2) + aLow; + var cmp = aCompare(aNeedle, aHaystack[mid], true); + if (cmp === 0) { + // Found the element we are looking for. + return aHaystack[mid]; + } + else if (cmp > 0) { + // aHaystack[mid] is greater than our needle. + if (aHigh - mid > 1) { + // The element is in the upper half. + return recursiveSearch(mid, aHigh, aNeedle, aHaystack, aCompare); + } + // We did not find an exact match, return the next closest one + // (termination case 2). + return aHaystack[mid]; + } + else { + // aHaystack[mid] is less than our needle. + if (mid - aLow > 1) { + // The element is in the lower half. + return recursiveSearch(aLow, mid, aNeedle, aHaystack, aCompare); + } + // The exact needle element was not found in this haystack. Determine if + // we are in termination case (2) or (3) and return the appropriate thing. + return aLow < 0 + ? null + : aHaystack[aLow]; + } + } + + /** + * This is an implementation of binary search which will always try and return + * the next lowest value checked if there is no exact hit. This is because + * mappings between original and generated line/col pairs are single points, + * and there is an implicit region between each of them, so a miss just means + * that you aren't on the very start of a region. + * + * @param aNeedle The element you are looking for. + * @param aHaystack The array that is being searched. + * @param aCompare A function which takes the needle and an element in the + * array and returns -1, 0, or 1 depending on whether the needle is less + * than, equal to, or greater than the element, respectively. + */ + exports.search = function search(aNeedle, aHaystack, aCompare) { + return aHaystack.length > 0 + ? recursiveSearch(-1, aHaystack.length, aNeedle, aHaystack, aCompare) + : null; + }; + +}); +/* -*- Mode: js; js-indent-level: 2; -*- */ +/* + * Copyright 2011 Mozilla Foundation and contributors + * Licensed under the New BSD license. See LICENSE or: + * http://opensource.org/licenses/BSD-3-Clause + */ + +define('source-map/source-map-consumer', function (require, exports, module) { + + var util = require('./util'); + var binarySearch = require('./binary-search'); + var ArraySet = require('./array-set').ArraySet; + var base64VLQ = require('./base64-vlq'); + + /** + * A SourceMapConsumer instance represents a parsed source map which we can + * query for information about the original file positions by giving it a file + * position in the generated source. + * + * The only parameter is the raw source map (either as a JSON string, or + * already parsed to an object). According to the spec, source maps have the + * following attributes: + * + * - version: Which version of the source map spec this map is following. + * - sources: An array of URLs to the original source files. + * - names: An array of identifiers which can be referrenced by individual mappings. + * - sourceRoot: Optional. The URL root from which all sources are relative. + * - sourcesContent: Optional. An array of contents of the original source files. + * - mappings: A string of base64 VLQs which contain the actual mappings. + * - file: Optional. The generated file this source map is associated with. + * + * Here is an example source map, taken from the source map spec[0]: + * + * { + * version : 3, + * file: "out.js", + * sourceRoot : "", + * sources: ["foo.js", "bar.js"], + * names: ["src", "maps", "are", "fun"], + * mappings: "AA,AB;;ABCDE;" + * } + * + * [0]: https://docs.google.com/document/d/1U1RGAehQwRypUTovF1KRlpiOFze0b-_2gc6fAH0KY0k/edit?pli=1# + */ + function SourceMapConsumer(aSourceMap) { + var sourceMap = aSourceMap; + if (typeof aSourceMap === 'string') { + sourceMap = JSON.parse(aSourceMap.replace(/^\)\]\}'/, '')); + } + + var version = util.getArg(sourceMap, 'version'); + var sources = util.getArg(sourceMap, 'sources'); + // Sass 3.3 leaves out the 'names' array, so we deviate from the spec (which + // requires the array) to play nice here. + var names = util.getArg(sourceMap, 'names', []); + var sourceRoot = util.getArg(sourceMap, 'sourceRoot', null); + var sourcesContent = util.getArg(sourceMap, 'sourcesContent', null); + var mappings = util.getArg(sourceMap, 'mappings'); + var file = util.getArg(sourceMap, 'file', null); + + // Once again, Sass deviates from the spec and supplies the version as a + // string rather than a number, so we use loose equality checking here. + if (version != this._version) { + throw new Error('Unsupported version: ' + version); + } + + // Pass `true` below to allow duplicate names and sources. While source maps + // are intended to be compressed and deduplicated, the TypeScript compiler + // sometimes generates source maps with duplicates in them. See Github issue + // #72 and bugzil.la/889492. + this._names = ArraySet.fromArray(names, true); + this._sources = ArraySet.fromArray(sources, true); + + this.sourceRoot = sourceRoot; + this.sourcesContent = sourcesContent; + this._mappings = mappings; + this.file = file; + } + + /** + * Create a SourceMapConsumer from a SourceMapGenerator. + * + * @param SourceMapGenerator aSourceMap + * The source map that will be consumed. + * @returns SourceMapConsumer + */ + SourceMapConsumer.fromSourceMap = + function SourceMapConsumer_fromSourceMap(aSourceMap) { + var smc = Object.create(SourceMapConsumer.prototype); + + smc._names = ArraySet.fromArray(aSourceMap._names.toArray(), true); + smc._sources = ArraySet.fromArray(aSourceMap._sources.toArray(), true); + smc.sourceRoot = aSourceMap._sourceRoot; + smc.sourcesContent = aSourceMap._generateSourcesContent(smc._sources.toArray(), + smc.sourceRoot); + smc.file = aSourceMap._file; + + smc.__generatedMappings = aSourceMap._mappings.slice() + .sort(util.compareByGeneratedPositions); + smc.__originalMappings = aSourceMap._mappings.slice() + .sort(util.compareByOriginalPositions); + + return smc; + }; + + /** + * The version of the source mapping spec that we are consuming. + */ + SourceMapConsumer.prototype._version = 3; + + /** + * The list of original sources. + */ + Object.defineProperty(SourceMapConsumer.prototype, 'sources', { + get: function () { + return this._sources.toArray().map(function (s) { + return this.sourceRoot ? util.join(this.sourceRoot, s) : s; + }, this); + } + }); + + // `__generatedMappings` and `__originalMappings` are arrays that hold the + // parsed mapping coordinates from the source map's "mappings" attribute. They + // are lazily instantiated, accessed via the `_generatedMappings` and + // `_originalMappings` getters respectively, and we only parse the mappings + // and create these arrays once queried for a source location. We jump through + // these hoops because there can be many thousands of mappings, and parsing + // them is expensive, so we only want to do it if we must. + // + // Each object in the arrays is of the form: + // + // { + // generatedLine: The line number in the generated code, + // generatedColumn: The column number in the generated code, + // source: The path to the original source file that generated this + // chunk of code, + // originalLine: The line number in the original source that + // corresponds to this chunk of generated code, + // originalColumn: The column number in the original source that + // corresponds to this chunk of generated code, + // name: The name of the original symbol which generated this chunk of + // code. + // } + // + // All properties except for `generatedLine` and `generatedColumn` can be + // `null`. + // + // `_generatedMappings` is ordered by the generated positions. + // + // `_originalMappings` is ordered by the original positions. + + SourceMapConsumer.prototype.__generatedMappings = null; + Object.defineProperty(SourceMapConsumer.prototype, '_generatedMappings', { + get: function () { + if (!this.__generatedMappings) { + this.__generatedMappings = []; + this.__originalMappings = []; + this._parseMappings(this._mappings, this.sourceRoot); + } + + return this.__generatedMappings; + } + }); + + SourceMapConsumer.prototype.__originalMappings = null; + Object.defineProperty(SourceMapConsumer.prototype, '_originalMappings', { + get: function () { + if (!this.__originalMappings) { + this.__generatedMappings = []; + this.__originalMappings = []; + this._parseMappings(this._mappings, this.sourceRoot); + } + + return this.__originalMappings; + } + }); + + /** + * Parse the mappings in a string in to a data structure which we can easily + * query (the ordered arrays in the `this.__generatedMappings` and + * `this.__originalMappings` properties). + */ + SourceMapConsumer.prototype._parseMappings = + function SourceMapConsumer_parseMappings(aStr, aSourceRoot) { + var generatedLine = 1; + var previousGeneratedColumn = 0; + var previousOriginalLine = 0; + var previousOriginalColumn = 0; + var previousSource = 0; + var previousName = 0; + var mappingSeparator = /^[,;]/; + var str = aStr; + var mapping; + var temp; + + while (str.length > 0) { + if (str.charAt(0) === ';') { + generatedLine++; + str = str.slice(1); + previousGeneratedColumn = 0; + } + else if (str.charAt(0) === ',') { + str = str.slice(1); + } + else { + mapping = {}; + mapping.generatedLine = generatedLine; + + // Generated column. + temp = base64VLQ.decode(str); + mapping.generatedColumn = previousGeneratedColumn + temp.value; + previousGeneratedColumn = mapping.generatedColumn; + str = temp.rest; + + if (str.length > 0 && !mappingSeparator.test(str.charAt(0))) { + // Original source. + temp = base64VLQ.decode(str); + mapping.source = this._sources.at(previousSource + temp.value); + previousSource += temp.value; + str = temp.rest; + if (str.length === 0 || mappingSeparator.test(str.charAt(0))) { + throw new Error('Found a source, but no line and column'); + } + + // Original line. + temp = base64VLQ.decode(str); + mapping.originalLine = previousOriginalLine + temp.value; + previousOriginalLine = mapping.originalLine; + // Lines are stored 0-based + mapping.originalLine += 1; + str = temp.rest; + if (str.length === 0 || mappingSeparator.test(str.charAt(0))) { + throw new Error('Found a source and line, but no column'); + } + + // Original column. + temp = base64VLQ.decode(str); + mapping.originalColumn = previousOriginalColumn + temp.value; + previousOriginalColumn = mapping.originalColumn; + str = temp.rest; + + if (str.length > 0 && !mappingSeparator.test(str.charAt(0))) { + // Original name. + temp = base64VLQ.decode(str); + mapping.name = this._names.at(previousName + temp.value); + previousName += temp.value; + str = temp.rest; + } + } + + this.__generatedMappings.push(mapping); + if (typeof mapping.originalLine === 'number') { + this.__originalMappings.push(mapping); + } + } + } + + this.__generatedMappings.sort(util.compareByGeneratedPositions); + this.__originalMappings.sort(util.compareByOriginalPositions); + }; + + /** + * Find the mapping that best matches the hypothetical "needle" mapping that + * we are searching for in the given "haystack" of mappings. + */ + SourceMapConsumer.prototype._findMapping = + function SourceMapConsumer_findMapping(aNeedle, aMappings, aLineName, + aColumnName, aComparator) { + // To return the position we are searching for, we must first find the + // mapping for the given position and then return the opposite position it + // points to. Because the mappings are sorted, we can use binary search to + // find the best mapping. + + if (aNeedle[aLineName] <= 0) { + throw new TypeError('Line must be greater than or equal to 1, got ' + + aNeedle[aLineName]); + } + if (aNeedle[aColumnName] < 0) { + throw new TypeError('Column must be greater than or equal to 0, got ' + + aNeedle[aColumnName]); + } + + return binarySearch.search(aNeedle, aMappings, aComparator); + }; + + /** + * Returns the original source, line, and column information for the generated + * source's line and column positions provided. The only argument is an object + * with the following properties: + * + * - line: The line number in the generated source. + * - column: The column number in the generated source. + * + * and an object is returned with the following properties: + * + * - source: The original source file, or null. + * - line: The line number in the original source, or null. + * - column: The column number in the original source, or null. + * - name: The original identifier, or null. + */ + SourceMapConsumer.prototype.originalPositionFor = + function SourceMapConsumer_originalPositionFor(aArgs) { + var needle = { + generatedLine: util.getArg(aArgs, 'line'), + generatedColumn: util.getArg(aArgs, 'column') + }; + + var mapping = this._findMapping(needle, + this._generatedMappings, + "generatedLine", + "generatedColumn", + util.compareByGeneratedPositions); + + if (mapping && mapping.generatedLine === needle.generatedLine) { + var source = util.getArg(mapping, 'source', null); + if (source && this.sourceRoot) { + source = util.join(this.sourceRoot, source); + } + return { + source: source, + line: util.getArg(mapping, 'originalLine', null), + column: util.getArg(mapping, 'originalColumn', null), + name: util.getArg(mapping, 'name', null) + }; + } + + return { + source: null, + line: null, + column: null, + name: null + }; + }; + + /** + * Returns the original source content. The only argument is the url of the + * original source file. Returns null if no original source content is + * availible. + */ + SourceMapConsumer.prototype.sourceContentFor = + function SourceMapConsumer_sourceContentFor(aSource) { + if (!this.sourcesContent) { + return null; + } + + if (this.sourceRoot) { + aSource = util.relative(this.sourceRoot, aSource); + } + + if (this._sources.has(aSource)) { + return this.sourcesContent[this._sources.indexOf(aSource)]; + } + + var url; + if (this.sourceRoot + && (url = util.urlParse(this.sourceRoot))) { + // XXX: file:// URIs and absolute paths lead to unexpected behavior for + // many users. We can help them out when they expect file:// URIs to + // behave like it would if they were running a local HTTP server. See + // https://bugzilla.mozilla.org/show_bug.cgi?id=885597. + var fileUriAbsPath = aSource.replace(/^file:\/\//, ""); + if (url.scheme == "file" + && this._sources.has(fileUriAbsPath)) { + return this.sourcesContent[this._sources.indexOf(fileUriAbsPath)] + } + + if ((!url.path || url.path == "/") + && this._sources.has("/" + aSource)) { + return this.sourcesContent[this._sources.indexOf("/" + aSource)]; + } + } + + throw new Error('"' + aSource + '" is not in the SourceMap.'); + }; + + /** + * Returns the generated line and column information for the original source, + * line, and column positions provided. The only argument is an object with + * the following properties: + * + * - source: The filename of the original source. + * - line: The line number in the original source. + * - column: The column number in the original source. + * + * and an object is returned with the following properties: + * + * - line: The line number in the generated source, or null. + * - column: The column number in the generated source, or null. + */ + SourceMapConsumer.prototype.generatedPositionFor = + function SourceMapConsumer_generatedPositionFor(aArgs) { + var needle = { + source: util.getArg(aArgs, 'source'), + originalLine: util.getArg(aArgs, 'line'), + originalColumn: util.getArg(aArgs, 'column') + }; + + if (this.sourceRoot) { + needle.source = util.relative(this.sourceRoot, needle.source); + } + + var mapping = this._findMapping(needle, + this._originalMappings, + "originalLine", + "originalColumn", + util.compareByOriginalPositions); + + if (mapping) { + return { + line: util.getArg(mapping, 'generatedLine', null), + column: util.getArg(mapping, 'generatedColumn', null) + }; + } + + return { + line: null, + column: null + }; + }; + + SourceMapConsumer.GENERATED_ORDER = 1; + SourceMapConsumer.ORIGINAL_ORDER = 2; + + /** + * Iterate over each mapping between an original source/line/column and a + * generated line/column in this source map. + * + * @param Function aCallback + * The function that is called with each mapping. + * @param Object aContext + * Optional. If specified, this object will be the value of `this` every + * time that `aCallback` is called. + * @param aOrder + * Either `SourceMapConsumer.GENERATED_ORDER` or + * `SourceMapConsumer.ORIGINAL_ORDER`. Specifies whether you want to + * iterate over the mappings sorted by the generated file's line/column + * order or the original's source/line/column order, respectively. Defaults to + * `SourceMapConsumer.GENERATED_ORDER`. + */ + SourceMapConsumer.prototype.eachMapping = + function SourceMapConsumer_eachMapping(aCallback, aContext, aOrder) { + var context = aContext || null; + var order = aOrder || SourceMapConsumer.GENERATED_ORDER; + + var mappings; + switch (order) { + case SourceMapConsumer.GENERATED_ORDER: + mappings = this._generatedMappings; + break; + case SourceMapConsumer.ORIGINAL_ORDER: + mappings = this._originalMappings; + break; + default: + throw new Error("Unknown order of iteration."); + } + + var sourceRoot = this.sourceRoot; + mappings.map(function (mapping) { + var source = mapping.source; + if (source && sourceRoot) { + source = util.join(sourceRoot, source); + } + return { + source: source, + generatedLine: mapping.generatedLine, + generatedColumn: mapping.generatedColumn, + originalLine: mapping.originalLine, + originalColumn: mapping.originalColumn, + name: mapping.name + }; + }).forEach(aCallback, context); + }; + + exports.SourceMapConsumer = SourceMapConsumer; + +}); +/* -*- Mode: js; js-indent-level: 2; -*- */ +/* + * Copyright 2011 Mozilla Foundation and contributors + * Licensed under the New BSD license. See LICENSE or: + * http://opensource.org/licenses/BSD-3-Clause + */ + +define('source-map/source-map-generator', function (require, exports, module) { + + var base64VLQ = require('./base64-vlq'); + var util = require('./util'); + var ArraySet = require('./array-set').ArraySet; + + /** + * An instance of the SourceMapGenerator represents a source map which is + * being built incrementally. You may pass an object with the following + * properties: + * + * - file: The filename of the generated source. + * - sourceRoot: A root for all relative URLs in this source map. + */ + function SourceMapGenerator(aArgs) { + if (!aArgs) { + aArgs = {}; + } + this._file = util.getArg(aArgs, 'file', null); + this._sourceRoot = util.getArg(aArgs, 'sourceRoot', null); + this._sources = new ArraySet(); + this._names = new ArraySet(); + this._mappings = []; + this._sourcesContents = null; + } + + SourceMapGenerator.prototype._version = 3; + + /** + * Creates a new SourceMapGenerator based on a SourceMapConsumer + * + * @param aSourceMapConsumer The SourceMap. + */ + SourceMapGenerator.fromSourceMap = + function SourceMapGenerator_fromSourceMap(aSourceMapConsumer) { + var sourceRoot = aSourceMapConsumer.sourceRoot; + var generator = new SourceMapGenerator({ + file: aSourceMapConsumer.file, + sourceRoot: sourceRoot + }); + aSourceMapConsumer.eachMapping(function (mapping) { + var newMapping = { + generated: { + line: mapping.generatedLine, + column: mapping.generatedColumn + } + }; + + if (mapping.source) { + newMapping.source = mapping.source; + if (sourceRoot) { + newMapping.source = util.relative(sourceRoot, newMapping.source); + } + + newMapping.original = { + line: mapping.originalLine, + column: mapping.originalColumn + }; + + if (mapping.name) { + newMapping.name = mapping.name; + } + } + + generator.addMapping(newMapping); + }); + aSourceMapConsumer.sources.forEach(function (sourceFile) { + var content = aSourceMapConsumer.sourceContentFor(sourceFile); + if (content) { + generator.setSourceContent(sourceFile, content); + } + }); + return generator; + }; + + /** + * Add a single mapping from original source line and column to the generated + * source's line and column for this source map being created. The mapping + * object should have the following properties: + * + * - generated: An object with the generated line and column positions. + * - original: An object with the original line and column positions. + * - source: The original source file (relative to the sourceRoot). + * - name: An optional original token name for this mapping. + */ + SourceMapGenerator.prototype.addMapping = + function SourceMapGenerator_addMapping(aArgs) { + var generated = util.getArg(aArgs, 'generated'); + var original = util.getArg(aArgs, 'original', null); + var source = util.getArg(aArgs, 'source', null); + var name = util.getArg(aArgs, 'name', null); + + this._validateMapping(generated, original, source, name); + + if (source && !this._sources.has(source)) { + this._sources.add(source); + } + + if (name && !this._names.has(name)) { + this._names.add(name); + } + + this._mappings.push({ + generatedLine: generated.line, + generatedColumn: generated.column, + originalLine: original != null && original.line, + originalColumn: original != null && original.column, + source: source, + name: name + }); + }; + + /** + * Set the source content for a source file. + */ + SourceMapGenerator.prototype.setSourceContent = + function SourceMapGenerator_setSourceContent(aSourceFile, aSourceContent) { + var source = aSourceFile; + if (this._sourceRoot) { + source = util.relative(this._sourceRoot, source); + } + + if (aSourceContent !== null) { + // Add the source content to the _sourcesContents map. + // Create a new _sourcesContents map if the property is null. + if (!this._sourcesContents) { + this._sourcesContents = {}; + } + this._sourcesContents[util.toSetString(source)] = aSourceContent; + } else { + // Remove the source file from the _sourcesContents map. + // If the _sourcesContents map is empty, set the property to null. + delete this._sourcesContents[util.toSetString(source)]; + if (Object.keys(this._sourcesContents).length === 0) { + this._sourcesContents = null; + } + } + }; + + /** + * Applies the mappings of a sub-source-map for a specific source file to the + * source map being generated. Each mapping to the supplied source file is + * rewritten using the supplied source map. Note: The resolution for the + * resulting mappings is the minimium of this map and the supplied map. + * + * @param aSourceMapConsumer The source map to be applied. + * @param aSourceFile Optional. The filename of the source file. + * If omitted, SourceMapConsumer's file property will be used. + * @param aSourceMapPath Optional. The dirname of the path to the source map + * to be applied. If relative, it is relative to the SourceMapConsumer. + * This parameter is needed when the two source maps aren't in the same + * directory, and the source map to be applied contains relative source + * paths. If so, those relative source paths need to be rewritten + * relative to the SourceMapGenerator. + */ + SourceMapGenerator.prototype.applySourceMap = + function SourceMapGenerator_applySourceMap(aSourceMapConsumer, aSourceFile, aSourceMapPath) { + // If aSourceFile is omitted, we will use the file property of the SourceMap + if (!aSourceFile) { + if (!aSourceMapConsumer.file) { + throw new Error( + 'SourceMapGenerator.prototype.applySourceMap requires either an explicit source file, ' + + 'or the source map\'s "file" property. Both were omitted.' + ); + } + aSourceFile = aSourceMapConsumer.file; + } + var sourceRoot = this._sourceRoot; + // Make "aSourceFile" relative if an absolute Url is passed. + if (sourceRoot) { + aSourceFile = util.relative(sourceRoot, aSourceFile); + } + // Applying the SourceMap can add and remove items from the sources and + // the names array. + var newSources = new ArraySet(); + var newNames = new ArraySet(); + + // Find mappings for the "aSourceFile" + this._mappings.forEach(function (mapping) { + if (mapping.source === aSourceFile && mapping.originalLine) { + // Check if it can be mapped by the source map, then update the mapping. + var original = aSourceMapConsumer.originalPositionFor({ + line: mapping.originalLine, + column: mapping.originalColumn + }); + if (original.source !== null) { + // Copy mapping + mapping.source = original.source; + if (aSourceMapPath) { + mapping.source = util.join(aSourceMapPath, mapping.source) + } + if (sourceRoot) { + mapping.source = util.relative(sourceRoot, mapping.source); + } + mapping.originalLine = original.line; + mapping.originalColumn = original.column; + if (original.name !== null && mapping.name !== null) { + // Only use the identifier name if it's an identifier + // in both SourceMaps + mapping.name = original.name; + } + } + } + + var source = mapping.source; + if (source && !newSources.has(source)) { + newSources.add(source); + } + + var name = mapping.name; + if (name && !newNames.has(name)) { + newNames.add(name); + } + + }, this); + this._sources = newSources; + this._names = newNames; + + // Copy sourcesContents of applied map. + aSourceMapConsumer.sources.forEach(function (sourceFile) { + var content = aSourceMapConsumer.sourceContentFor(sourceFile); + if (content) { + if (aSourceMapPath) { + sourceFile = util.join(aSourceMapPath, sourceFile); + } + if (sourceRoot) { + sourceFile = util.relative(sourceRoot, sourceFile); + } + this.setSourceContent(sourceFile, content); + } + }, this); + }; + + /** + * A mapping can have one of the three levels of data: + * + * 1. Just the generated position. + * 2. The Generated position, original position, and original source. + * 3. Generated and original position, original source, as well as a name + * token. + * + * To maintain consistency, we validate that any new mapping being added falls + * in to one of these categories. + */ + SourceMapGenerator.prototype._validateMapping = + function SourceMapGenerator_validateMapping(aGenerated, aOriginal, aSource, + aName) { + if (aGenerated && 'line' in aGenerated && 'column' in aGenerated + && aGenerated.line > 0 && aGenerated.column >= 0 + && !aOriginal && !aSource && !aName) { + // Case 1. + return; + } + else if (aGenerated && 'line' in aGenerated && 'column' in aGenerated + && aOriginal && 'line' in aOriginal && 'column' in aOriginal + && aGenerated.line > 0 && aGenerated.column >= 0 + && aOriginal.line > 0 && aOriginal.column >= 0 + && aSource) { + // Cases 2 and 3. + return; + } + else { + throw new Error('Invalid mapping: ' + JSON.stringify({ + generated: aGenerated, + source: aSource, + original: aOriginal, + name: aName + })); + } + }; + + /** + * Serialize the accumulated mappings in to the stream of base 64 VLQs + * specified by the source map format. + */ + SourceMapGenerator.prototype._serializeMappings = + function SourceMapGenerator_serializeMappings() { + var previousGeneratedColumn = 0; + var previousGeneratedLine = 1; + var previousOriginalColumn = 0; + var previousOriginalLine = 0; + var previousName = 0; + var previousSource = 0; + var result = ''; + var mapping; + + // The mappings must be guaranteed to be in sorted order before we start + // serializing them or else the generated line numbers (which are defined + // via the ';' separators) will be all messed up. Note: it might be more + // performant to maintain the sorting as we insert them, rather than as we + // serialize them, but the big O is the same either way. + this._mappings.sort(util.compareByGeneratedPositions); + + for (var i = 0, len = this._mappings.length; i < len; i++) { + mapping = this._mappings[i]; + + if (mapping.generatedLine !== previousGeneratedLine) { + previousGeneratedColumn = 0; + while (mapping.generatedLine !== previousGeneratedLine) { + result += ';'; + previousGeneratedLine++; + } + } + else { + if (i > 0) { + if (!util.compareByGeneratedPositions(mapping, this._mappings[i - 1])) { + continue; + } + result += ','; + } + } + + result += base64VLQ.encode(mapping.generatedColumn + - previousGeneratedColumn); + previousGeneratedColumn = mapping.generatedColumn; + + if (mapping.source) { + result += base64VLQ.encode(this._sources.indexOf(mapping.source) + - previousSource); + previousSource = this._sources.indexOf(mapping.source); + + // lines are stored 0-based in SourceMap spec version 3 + result += base64VLQ.encode(mapping.originalLine - 1 + - previousOriginalLine); + previousOriginalLine = mapping.originalLine - 1; + + result += base64VLQ.encode(mapping.originalColumn + - previousOriginalColumn); + previousOriginalColumn = mapping.originalColumn; + + if (mapping.name) { + result += base64VLQ.encode(this._names.indexOf(mapping.name) + - previousName); + previousName = this._names.indexOf(mapping.name); + } + } + } + + return result; + }; + + SourceMapGenerator.prototype._generateSourcesContent = + function SourceMapGenerator_generateSourcesContent(aSources, aSourceRoot) { + return aSources.map(function (source) { + if (!this._sourcesContents) { + return null; + } + if (aSourceRoot) { + source = util.relative(aSourceRoot, source); + } + var key = util.toSetString(source); + return Object.prototype.hasOwnProperty.call(this._sourcesContents, + key) + ? this._sourcesContents[key] + : null; + }, this); + }; + + /** + * Externalize the source map. + */ + SourceMapGenerator.prototype.toJSON = + function SourceMapGenerator_toJSON() { + var map = { + version: this._version, + file: this._file, + sources: this._sources.toArray(), + names: this._names.toArray(), + mappings: this._serializeMappings() + }; + if (this._sourceRoot) { + map.sourceRoot = this._sourceRoot; + } + if (this._sourcesContents) { + map.sourcesContent = this._generateSourcesContent(map.sources, map.sourceRoot); + } + + return map; + }; + + /** + * Render the source map being generated to a string. + */ + SourceMapGenerator.prototype.toString = + function SourceMapGenerator_toString() { + return JSON.stringify(this); + }; + + exports.SourceMapGenerator = SourceMapGenerator; + +}); +/* -*- Mode: js; js-indent-level: 2; -*- */ +/* + * Copyright 2011 Mozilla Foundation and contributors + * Licensed under the New BSD license. See LICENSE or: + * http://opensource.org/licenses/BSD-3-Clause + */ + +define('source-map/source-node', function (require, exports, module) { + + var SourceMapGenerator = require('./source-map-generator').SourceMapGenerator; + var util = require('./util'); + + // Matches a Windows-style `\r\n` newline or a `\n` newline used by all other + // operating systems these days (capturing the result). + var REGEX_NEWLINE = /(\r?\n)/g; + + // Matches a Windows-style newline, or any character. + var REGEX_CHARACTER = /\r\n|[\s\S]/g; + + /** + * SourceNodes provide a way to abstract over interpolating/concatenating + * snippets of generated JavaScript source code while maintaining the line and + * column information associated with the original source code. + * + * @param aLine The original line number. + * @param aColumn The original column number. + * @param aSource The original source's filename. + * @param aChunks Optional. An array of strings which are snippets of + * generated JS, or other SourceNodes. + * @param aName The original identifier. + */ + function SourceNode(aLine, aColumn, aSource, aChunks, aName) { + this.children = []; + this.sourceContents = {}; + this.line = aLine === undefined ? null : aLine; + this.column = aColumn === undefined ? null : aColumn; + this.source = aSource === undefined ? null : aSource; + this.name = aName === undefined ? null : aName; + if (aChunks != null) this.add(aChunks); + } + + /** + * Creates a SourceNode from generated code and a SourceMapConsumer. + * + * @param aGeneratedCode The generated code + * @param aSourceMapConsumer The SourceMap for the generated code + */ + SourceNode.fromStringWithSourceMap = + function SourceNode_fromStringWithSourceMap(aGeneratedCode, aSourceMapConsumer) { + // The SourceNode we want to fill with the generated code + // and the SourceMap + var node = new SourceNode(); + + // All even indices of this array are one line of the generated code, + // while all odd indices are the newlines between two adjacent lines + // (since `REGEX_NEWLINE` captures its match). + // Processed fragments are removed from this array, by calling `shiftNextLine`. + var remainingLines = aGeneratedCode.split(REGEX_NEWLINE); + var shiftNextLine = function() { + var lineContents = remainingLines.shift(); + // The last line of a file might not have a newline. + var newLine = remainingLines.shift() || ""; + return lineContents + newLine; + }; + + // We need to remember the position of "remainingLines" + var lastGeneratedLine = 1, lastGeneratedColumn = 0; + + // The generate SourceNodes we need a code range. + // To extract it current and last mapping is used. + // Here we store the last mapping. + var lastMapping = null; + + aSourceMapConsumer.eachMapping(function (mapping) { + if (lastMapping !== null) { + // We add the code from "lastMapping" to "mapping": + // First check if there is a new line in between. + if (lastGeneratedLine < mapping.generatedLine) { + var code = ""; + // Associate first line with "lastMapping" + addMappingWithCode(lastMapping, shiftNextLine()); + lastGeneratedLine++; + lastGeneratedColumn = 0; + // The remaining code is added without mapping + } else { + // There is no new line in between. + // Associate the code between "lastGeneratedColumn" and + // "mapping.generatedColumn" with "lastMapping" + var nextLine = remainingLines[0]; + var code = nextLine.substr(0, mapping.generatedColumn - + lastGeneratedColumn); + remainingLines[0] = nextLine.substr(mapping.generatedColumn - + lastGeneratedColumn); + lastGeneratedColumn = mapping.generatedColumn; + addMappingWithCode(lastMapping, code); + // No more remaining code, continue + lastMapping = mapping; + return; + } + } + // We add the generated code until the first mapping + // to the SourceNode without any mapping. + // Each line is added as separate string. + while (lastGeneratedLine < mapping.generatedLine) { + node.add(shiftNextLine()); + lastGeneratedLine++; + } + if (lastGeneratedColumn < mapping.generatedColumn) { + var nextLine = remainingLines[0]; + node.add(nextLine.substr(0, mapping.generatedColumn)); + remainingLines[0] = nextLine.substr(mapping.generatedColumn); + lastGeneratedColumn = mapping.generatedColumn; + } + lastMapping = mapping; + }, this); + // We have processed all mappings. + if (remainingLines.length > 0) { + if (lastMapping) { + // Associate the remaining code in the current line with "lastMapping" + addMappingWithCode(lastMapping, shiftNextLine()); + } + // and add the remaining lines without any mapping + node.add(remainingLines.join("")); + } + + // Copy sourcesContent into SourceNode + aSourceMapConsumer.sources.forEach(function (sourceFile) { + var content = aSourceMapConsumer.sourceContentFor(sourceFile); + if (content) { + node.setSourceContent(sourceFile, content); + } + }); + + return node; + + function addMappingWithCode(mapping, code) { + if (mapping === null || mapping.source === undefined) { + node.add(code); + } else { + node.add(new SourceNode(mapping.originalLine, + mapping.originalColumn, + mapping.source, + code, + mapping.name)); + } + } + }; + + /** + * Add a chunk of generated JS to this source node. + * + * @param aChunk A string snippet of generated JS code, another instance of + * SourceNode, or an array where each member is one of those things. + */ + SourceNode.prototype.add = function SourceNode_add(aChunk) { + if (Array.isArray(aChunk)) { + aChunk.forEach(function (chunk) { + this.add(chunk); + }, this); + } + else if (aChunk instanceof SourceNode || typeof aChunk === "string") { + if (aChunk) { + this.children.push(aChunk); + } + } + else { + throw new TypeError( + "Expected a SourceNode, string, or an array of SourceNodes and strings. Got " + aChunk + ); + } + return this; + }; + + /** + * Add a chunk of generated JS to the beginning of this source node. + * + * @param aChunk A string snippet of generated JS code, another instance of + * SourceNode, or an array where each member is one of those things. + */ + SourceNode.prototype.prepend = function SourceNode_prepend(aChunk) { + if (Array.isArray(aChunk)) { + for (var i = aChunk.length-1; i >= 0; i--) { + this.prepend(aChunk[i]); + } + } + else if (aChunk instanceof SourceNode || typeof aChunk === "string") { + this.children.unshift(aChunk); + } + else { + throw new TypeError( + "Expected a SourceNode, string, or an array of SourceNodes and strings. Got " + aChunk + ); + } + return this; + }; + + /** + * Walk over the tree of JS snippets in this node and its children. The + * walking function is called once for each snippet of JS and is passed that + * snippet and the its original associated source's line/column location. + * + * @param aFn The traversal function. + */ + SourceNode.prototype.walk = function SourceNode_walk(aFn) { + var chunk; + for (var i = 0, len = this.children.length; i < len; i++) { + chunk = this.children[i]; + if (chunk instanceof SourceNode) { + chunk.walk(aFn); + } + else { + if (chunk !== '') { + aFn(chunk, { source: this.source, + line: this.line, + column: this.column, + name: this.name }); + } + } + } + }; + + /** + * Like `String.prototype.join` except for SourceNodes. Inserts `aStr` between + * each of `this.children`. + * + * @param aSep The separator. + */ + SourceNode.prototype.join = function SourceNode_join(aSep) { + var newChildren; + var i; + var len = this.children.length; + if (len > 0) { + newChildren = []; + for (i = 0; i < len-1; i++) { + newChildren.push(this.children[i]); + newChildren.push(aSep); + } + newChildren.push(this.children[i]); + this.children = newChildren; + } + return this; + }; + + /** + * Call String.prototype.replace on the very right-most source snippet. Useful + * for trimming whitespace from the end of a source node, etc. + * + * @param aPattern The pattern to replace. + * @param aReplacement The thing to replace the pattern with. + */ + SourceNode.prototype.replaceRight = function SourceNode_replaceRight(aPattern, aReplacement) { + var lastChild = this.children[this.children.length - 1]; + if (lastChild instanceof SourceNode) { + lastChild.replaceRight(aPattern, aReplacement); + } + else if (typeof lastChild === 'string') { + this.children[this.children.length - 1] = lastChild.replace(aPattern, aReplacement); + } + else { + this.children.push(''.replace(aPattern, aReplacement)); + } + return this; + }; + + /** + * Set the source content for a source file. This will be added to the SourceMapGenerator + * in the sourcesContent field. + * + * @param aSourceFile The filename of the source file + * @param aSourceContent The content of the source file + */ + SourceNode.prototype.setSourceContent = + function SourceNode_setSourceContent(aSourceFile, aSourceContent) { + this.sourceContents[util.toSetString(aSourceFile)] = aSourceContent; + }; + + /** + * Walk over the tree of SourceNodes. The walking function is called for each + * source file content and is passed the filename and source content. + * + * @param aFn The traversal function. + */ + SourceNode.prototype.walkSourceContents = + function SourceNode_walkSourceContents(aFn) { + for (var i = 0, len = this.children.length; i < len; i++) { + if (this.children[i] instanceof SourceNode) { + this.children[i].walkSourceContents(aFn); + } + } + + var sources = Object.keys(this.sourceContents); + for (var i = 0, len = sources.length; i < len; i++) { + aFn(util.fromSetString(sources[i]), this.sourceContents[sources[i]]); + } + }; + + /** + * Return the string representation of this source node. Walks over the tree + * and concatenates all the various snippets together to one string. + */ + SourceNode.prototype.toString = function SourceNode_toString() { + var str = ""; + this.walk(function (chunk) { + str += chunk; + }); + return str; + }; + + /** + * Returns the string representation of this source node along with a source + * map. + */ + SourceNode.prototype.toStringWithSourceMap = function SourceNode_toStringWithSourceMap(aArgs) { + var generated = { + code: "", + line: 1, + column: 0 + }; + var map = new SourceMapGenerator(aArgs); + var sourceMappingActive = false; + var lastOriginalSource = null; + var lastOriginalLine = null; + var lastOriginalColumn = null; + var lastOriginalName = null; + this.walk(function (chunk, original) { + generated.code += chunk; + if (original.source !== null + && original.line !== null + && original.column !== null) { + if(lastOriginalSource !== original.source + || lastOriginalLine !== original.line + || lastOriginalColumn !== original.column + || lastOriginalName !== original.name) { + map.addMapping({ + source: original.source, + original: { + line: original.line, + column: original.column + }, + generated: { + line: generated.line, + column: generated.column + }, + name: original.name + }); + } + lastOriginalSource = original.source; + lastOriginalLine = original.line; + lastOriginalColumn = original.column; + lastOriginalName = original.name; + sourceMappingActive = true; + } else if (sourceMappingActive) { + map.addMapping({ + generated: { + line: generated.line, + column: generated.column + } + }); + lastOriginalSource = null; + sourceMappingActive = false; + } + chunk.match(REGEX_CHARACTER).forEach(function (ch, idx, array) { + if (REGEX_NEWLINE.test(ch)) { + generated.line++; + generated.column = 0; + // Mappings end at eol + if (idx + 1 === array.length) { + lastOriginalSource = null; + sourceMappingActive = false; + } else if (sourceMappingActive) { + map.addMapping({ + source: original.source, + original: { + line: original.line, + column: original.column + }, + generated: { + line: generated.line, + column: generated.column + }, + name: original.name + }); + } + } else { + generated.column += ch.length; + } + }); + }); + this.walkSourceContents(function (sourceFile, sourceContent) { + map.setSourceContent(sourceFile, sourceContent); + }); + + return { code: generated.code, map: map }; + }; + + exports.SourceNode = SourceNode; + +}); +/* -*- Mode: js; js-indent-level: 2; -*- */ +/* + * Copyright 2011 Mozilla Foundation and contributors + * Licensed under the New BSD license. See LICENSE or: + * http://opensource.org/licenses/BSD-3-Clause + */ + +define('source-map/util', function (require, exports, module) { + + /** + * This is a helper function for getting values from parameter/options + * objects. + * + * @param args The object we are extracting values from + * @param name The name of the property we are getting. + * @param defaultValue An optional value to return if the property is missing + * from the object. If this is not specified and the property is missing, an + * error will be thrown. + */ + function getArg(aArgs, aName, aDefaultValue) { + if (aName in aArgs) { + return aArgs[aName]; + } else if (arguments.length === 3) { + return aDefaultValue; + } else { + throw new Error('"' + aName + '" is a required argument.'); + } + } + exports.getArg = getArg; + + var urlRegexp = /^(?:([\w+\-.]+):)?\/\/(?:(\w+:\w+)@)?([\w.]*)(?::(\d+))?(\S*)$/; + var dataUrlRegexp = /^data:.+\,.+$/; + + function urlParse(aUrl) { + var match = aUrl.match(urlRegexp); + if (!match) { + return null; + } + return { + scheme: match[1], + auth: match[2], + host: match[3], + port: match[4], + path: match[5] + }; + } + exports.urlParse = urlParse; + + function urlGenerate(aParsedUrl) { + var url = ''; + if (aParsedUrl.scheme) { + url += aParsedUrl.scheme + ':'; + } + url += '//'; + if (aParsedUrl.auth) { + url += aParsedUrl.auth + '@'; + } + if (aParsedUrl.host) { + url += aParsedUrl.host; + } + if (aParsedUrl.port) { + url += ":" + aParsedUrl.port + } + if (aParsedUrl.path) { + url += aParsedUrl.path; + } + return url; + } + exports.urlGenerate = urlGenerate; + + /** + * Normalizes a path, or the path portion of a URL: + * + * - Replaces consequtive slashes with one slash. + * - Removes unnecessary '.' parts. + * - Removes unnecessary '/..' parts. + * + * Based on code in the Node.js 'path' core module. + * + * @param aPath The path or url to normalize. + */ + function normalize(aPath) { + var path = aPath; + var url = urlParse(aPath); + if (url) { + if (!url.path) { + return aPath; + } + path = url.path; + } + var isAbsolute = (path.charAt(0) === '/'); + + var parts = path.split(/\/+/); + for (var part, up = 0, i = parts.length - 1; i >= 0; i--) { + part = parts[i]; + if (part === '.') { + parts.splice(i, 1); + } else if (part === '..') { + up++; + } else if (up > 0) { + if (part === '') { + // The first part is blank if the path is absolute. Trying to go + // above the root is a no-op. Therefore we can remove all '..' parts + // directly after the root. + parts.splice(i + 1, up); + up = 0; + } else { + parts.splice(i, 2); + up--; + } + } + } + path = parts.join('/'); + + if (path === '') { + path = isAbsolute ? '/' : '.'; + } + + if (url) { + url.path = path; + return urlGenerate(url); + } + return path; + } + exports.normalize = normalize; + + /** + * Joins two paths/URLs. + * + * @param aRoot The root path or URL. + * @param aPath The path or URL to be joined with the root. + * + * - If aPath is a URL or a data URI, aPath is returned, unless aPath is a + * scheme-relative URL: Then the scheme of aRoot, if any, is prepended + * first. + * - Otherwise aPath is a path. If aRoot is a URL, then its path portion + * is updated with the result and aRoot is returned. Otherwise the result + * is returned. + * - If aPath is absolute, the result is aPath. + * - Otherwise the two paths are joined with a slash. + * - Joining for example 'http://' and 'www.example.com' is also supported. + */ + function join(aRoot, aPath) { + var aPathUrl = urlParse(aPath); + var aRootUrl = urlParse(aRoot); + if (aRootUrl) { + aRoot = aRootUrl.path || '/'; + } + + // `join(foo, '//www.example.org')` + if (aPathUrl && !aPathUrl.scheme) { + if (aRootUrl) { + aPathUrl.scheme = aRootUrl.scheme; + } + return urlGenerate(aPathUrl); + } + + if (aPathUrl || aPath.match(dataUrlRegexp)) { + return aPath; + } + + // `join('http://', 'www.example.com')` + if (aRootUrl && !aRootUrl.host && !aRootUrl.path) { + aRootUrl.host = aPath; + return urlGenerate(aRootUrl); + } + + var joined = aPath.charAt(0) === '/' + ? aPath + : normalize(aRoot.replace(/\/+$/, '') + '/' + aPath); + + if (aRootUrl) { + aRootUrl.path = joined; + return urlGenerate(aRootUrl); + } + return joined; + } + exports.join = join; + + /** + * Because behavior goes wacky when you set `__proto__` on objects, we + * have to prefix all the strings in our set with an arbitrary character. + * + * See https://github.com/mozilla/source-map/pull/31 and + * https://github.com/mozilla/source-map/issues/30 + * + * @param String aStr + */ + function toSetString(aStr) { + return '$' + aStr; + } + exports.toSetString = toSetString; + + function fromSetString(aStr) { + return aStr.substr(1); + } + exports.fromSetString = fromSetString; + + function relative(aRoot, aPath) { + aRoot = aRoot.replace(/\/$/, ''); + + var url = urlParse(aRoot); + if (aPath.charAt(0) == "/" && url && url.path == "/") { + return aPath.slice(1); + } + + return aPath.indexOf(aRoot + '/') === 0 + ? aPath.substr(aRoot.length + 1) + : aPath; + } + exports.relative = relative; + + function strcmp(aStr1, aStr2) { + var s1 = aStr1 || ""; + var s2 = aStr2 || ""; + return (s1 > s2) - (s1 < s2); + } + + /** + * Comparator between two mappings where the original positions are compared. + * + * Optionally pass in `true` as `onlyCompareGenerated` to consider two + * mappings with the same original source/line/column, but different generated + * line and column the same. Useful when searching for a mapping with a + * stubbed out mapping. + */ + function compareByOriginalPositions(mappingA, mappingB, onlyCompareOriginal) { + var cmp; + + cmp = strcmp(mappingA.source, mappingB.source); + if (cmp) { + return cmp; + } + + cmp = mappingA.originalLine - mappingB.originalLine; + if (cmp) { + return cmp; + } + + cmp = mappingA.originalColumn - mappingB.originalColumn; + if (cmp || onlyCompareOriginal) { + return cmp; + } + + cmp = strcmp(mappingA.name, mappingB.name); + if (cmp) { + return cmp; + } + + cmp = mappingA.generatedLine - mappingB.generatedLine; + if (cmp) { + return cmp; + } + + return mappingA.generatedColumn - mappingB.generatedColumn; + }; + exports.compareByOriginalPositions = compareByOriginalPositions; + + /** + * Comparator between two mappings where the generated positions are + * compared. + * + * Optionally pass in `true` as `onlyCompareGenerated` to consider two + * mappings with the same generated line and column, but different + * source/name/original line and column the same. Useful when searching for a + * mapping with a stubbed out mapping. + */ + function compareByGeneratedPositions(mappingA, mappingB, onlyCompareGenerated) { + var cmp; + + cmp = mappingA.generatedLine - mappingB.generatedLine; + if (cmp) { + return cmp; + } + + cmp = mappingA.generatedColumn - mappingB.generatedColumn; + if (cmp || onlyCompareGenerated) { + return cmp; + } + + cmp = strcmp(mappingA.source, mappingB.source); + if (cmp) { + return cmp; + } + + cmp = mappingA.originalLine - mappingB.originalLine; + if (cmp) { + return cmp; + } + + cmp = mappingA.originalColumn - mappingB.originalColumn; + if (cmp) { + return cmp; + } + + return strcmp(mappingA.name, mappingB.name); + }; + exports.compareByGeneratedPositions = compareByGeneratedPositions; + +}); +define('source-map', function (require, exports, module) { + +/* + * Copyright 2009-2011 Mozilla Foundation and contributors + * Licensed under the New BSD license. See LICENSE.txt or: + * http://opensource.org/licenses/BSD-3-Clause + */ +exports.SourceMapGenerator = require('./source-map/source-map-generator').SourceMapGenerator; +exports.SourceMapConsumer = require('./source-map/source-map-consumer').SourceMapConsumer; +exports.SourceNode = require('./source-map/source-node').SourceNode; + +}); + +//Distributed under the BSD license: +//Copyright 2012 (c) Mihai Bazon +define('uglifyjs2', ['exports', 'source-map', 'logger', 'env!env/file'], function (exports, MOZ_SourceMap, logger, rjsFile) { + +/*********************************************************************** + + A JavaScript tokenizer / parser / beautifier / compressor. + https://github.com/mishoo/UglifyJS2 + + -------------------------------- (C) --------------------------------- + + Author: Mihai Bazon + + http://mihai.bazon.net/blog + + Distributed under the BSD license: + + Copyright 2012 (c) Mihai Bazon + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + * Redistributions of source code must retain the above + copyright notice, this list of conditions and the following + disclaimer. + + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials + provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER “AS IS” AND ANY + EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE + LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, + OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR + TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF + THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + SUCH DAMAGE. + + ***********************************************************************/ + +"use strict"; + +function array_to_hash(a) { + var ret = Object.create(null); + for (var i = 0; i < a.length; ++i) + ret[a[i]] = true; + return ret; +}; + +function slice(a, start) { + return Array.prototype.slice.call(a, start || 0); +}; + +function characters(str) { + return str.split(""); +}; + +function member(name, array) { + for (var i = array.length; --i >= 0;) + if (array[i] == name) + return true; + return false; +}; + +function find_if(func, array) { + for (var i = 0, n = array.length; i < n; ++i) { + if (func(array[i])) + return array[i]; + } +}; + +function repeat_string(str, i) { + if (i <= 0) return ""; + if (i == 1) return str; + var d = repeat_string(str, i >> 1); + d += d; + if (i & 1) d += str; + return d; +}; + +function DefaultsError(msg, defs) { + Error.call(this, msg); + this.msg = msg; + this.defs = defs; +}; +DefaultsError.prototype = Object.create(Error.prototype); +DefaultsError.prototype.constructor = DefaultsError; + +DefaultsError.croak = function(msg, defs) { + throw new DefaultsError(msg, defs); +}; + +function defaults(args, defs, croak) { + if (args === true) + args = {}; + var ret = args || {}; + if (croak) for (var i in ret) if (ret.hasOwnProperty(i) && !defs.hasOwnProperty(i)) + DefaultsError.croak("`" + i + "` is not a supported option", defs); + for (var i in defs) if (defs.hasOwnProperty(i)) { + ret[i] = (args && args.hasOwnProperty(i)) ? args[i] : defs[i]; + } + return ret; +}; + +function merge(obj, ext) { + for (var i in ext) if (ext.hasOwnProperty(i)) { + obj[i] = ext[i]; + } + return obj; +}; + +function noop() {}; + +var MAP = (function(){ + function MAP(a, f, backwards) { + var ret = [], top = [], i; + function doit() { + var val = f(a[i], i); + var is_last = val instanceof Last; + if (is_last) val = val.v; + if (val instanceof AtTop) { + val = val.v; + if (val instanceof Splice) { + top.push.apply(top, backwards ? val.v.slice().reverse() : val.v); + } else { + top.push(val); + } + } + else if (val !== skip) { + if (val instanceof Splice) { + ret.push.apply(ret, backwards ? val.v.slice().reverse() : val.v); + } else { + ret.push(val); + } + } + return is_last; + }; + if (a instanceof Array) { + if (backwards) { + for (i = a.length; --i >= 0;) if (doit()) break; + ret.reverse(); + top.reverse(); + } else { + for (i = 0; i < a.length; ++i) if (doit()) break; + } + } + else { + for (i in a) if (a.hasOwnProperty(i)) if (doit()) break; + } + return top.concat(ret); + }; + MAP.at_top = function(val) { return new AtTop(val) }; + MAP.splice = function(val) { return new Splice(val) }; + MAP.last = function(val) { return new Last(val) }; + var skip = MAP.skip = {}; + function AtTop(val) { this.v = val }; + function Splice(val) { this.v = val }; + function Last(val) { this.v = val }; + return MAP; +})(); + +function push_uniq(array, el) { + if (array.indexOf(el) < 0) + array.push(el); +}; + +function string_template(text, props) { + return text.replace(/\{(.+?)\}/g, function(str, p){ + return props[p]; + }); +}; + +function remove(array, el) { + for (var i = array.length; --i >= 0;) { + if (array[i] === el) array.splice(i, 1); + } +}; + +function mergeSort(array, cmp) { + if (array.length < 2) return array.slice(); + function merge(a, b) { + var r = [], ai = 0, bi = 0, i = 0; + while (ai < a.length && bi < b.length) { + cmp(a[ai], b[bi]) <= 0 + ? r[i++] = a[ai++] + : r[i++] = b[bi++]; + } + if (ai < a.length) r.push.apply(r, a.slice(ai)); + if (bi < b.length) r.push.apply(r, b.slice(bi)); + return r; + }; + function _ms(a) { + if (a.length <= 1) + return a; + var m = Math.floor(a.length / 2), left = a.slice(0, m), right = a.slice(m); + left = _ms(left); + right = _ms(right); + return merge(left, right); + }; + return _ms(array); +}; + +function set_difference(a, b) { + return a.filter(function(el){ + return b.indexOf(el) < 0; + }); +}; + +function set_intersection(a, b) { + return a.filter(function(el){ + return b.indexOf(el) >= 0; + }); +}; + +// this function is taken from Acorn [1], written by Marijn Haverbeke +// [1] https://github.com/marijnh/acorn +function makePredicate(words) { + if (!(words instanceof Array)) words = words.split(" "); + var f = "", cats = []; + out: for (var i = 0; i < words.length; ++i) { + for (var j = 0; j < cats.length; ++j) + if (cats[j][0].length == words[i].length) { + cats[j].push(words[i]); + continue out; + } + cats.push([words[i]]); + } + function compareTo(arr) { + if (arr.length == 1) return f += "return str === " + JSON.stringify(arr[0]) + ";"; + f += "switch(str){"; + for (var i = 0; i < arr.length; ++i) f += "case " + JSON.stringify(arr[i]) + ":"; + f += "return true}return false;"; + } + // When there are more than three length categories, an outer + // switch first dispatches on the lengths, to save on comparisons. + if (cats.length > 3) { + cats.sort(function(a, b) {return b.length - a.length;}); + f += "switch(str.length){"; + for (var i = 0; i < cats.length; ++i) { + var cat = cats[i]; + f += "case " + cat[0].length + ":"; + compareTo(cat); + } + f += "}"; + // Otherwise, simply generate a flat `switch` statement. + } else { + compareTo(words); + } + return new Function("str", f); +}; + +function all(array, predicate) { + for (var i = array.length; --i >= 0;) + if (!predicate(array[i])) + return false; + return true; +}; + +function Dictionary() { + this._values = Object.create(null); + this._size = 0; +}; +Dictionary.prototype = { + set: function(key, val) { + if (!this.has(key)) ++this._size; + this._values["$" + key] = val; + return this; + }, + add: function(key, val) { + if (this.has(key)) { + this.get(key).push(val); + } else { + this.set(key, [ val ]); + } + return this; + }, + get: function(key) { return this._values["$" + key] }, + del: function(key) { + if (this.has(key)) { + --this._size; + delete this._values["$" + key]; + } + return this; + }, + has: function(key) { return ("$" + key) in this._values }, + each: function(f) { + for (var i in this._values) + f(this._values[i], i.substr(1)); + }, + size: function() { + return this._size; + }, + map: function(f) { + var ret = []; + for (var i in this._values) + ret.push(f(this._values[i], i.substr(1))); + return ret; + } +}; + +/*********************************************************************** + + A JavaScript tokenizer / parser / beautifier / compressor. + https://github.com/mishoo/UglifyJS2 + + -------------------------------- (C) --------------------------------- + + Author: Mihai Bazon + + http://mihai.bazon.net/blog + + Distributed under the BSD license: + + Copyright 2012 (c) Mihai Bazon + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + * Redistributions of source code must retain the above + copyright notice, this list of conditions and the following + disclaimer. + + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials + provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER “AS IS” AND ANY + EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE + LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, + OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR + TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF + THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + SUCH DAMAGE. + + ***********************************************************************/ + +"use strict"; + +function DEFNODE(type, props, methods, base) { + if (arguments.length < 4) base = AST_Node; + if (!props) props = []; + else props = props.split(/\s+/); + var self_props = props; + if (base && base.PROPS) + props = props.concat(base.PROPS); + var code = "return function AST_" + type + "(props){ if (props) { "; + for (var i = props.length; --i >= 0;) { + code += "this." + props[i] + " = props." + props[i] + ";"; + } + var proto = base && new base; + if (proto && proto.initialize || (methods && methods.initialize)) + code += "this.initialize();"; + code += "}}"; + var ctor = new Function(code)(); + if (proto) { + ctor.prototype = proto; + ctor.BASE = base; + } + if (base) base.SUBCLASSES.push(ctor); + ctor.prototype.CTOR = ctor; + ctor.PROPS = props || null; + ctor.SELF_PROPS = self_props; + ctor.SUBCLASSES = []; + if (type) { + ctor.prototype.TYPE = ctor.TYPE = type; + } + if (methods) for (i in methods) if (methods.hasOwnProperty(i)) { + if (/^\$/.test(i)) { + ctor[i.substr(1)] = methods[i]; + } else { + ctor.prototype[i] = methods[i]; + } + } + ctor.DEFMETHOD = function(name, method) { + this.prototype[name] = method; + }; + return ctor; +}; + +var AST_Token = DEFNODE("Token", "type value line col pos endpos nlb comments_before file", { +}, null); + +var AST_Node = DEFNODE("Node", "start end", { + clone: function() { + return new this.CTOR(this); + }, + $documentation: "Base class of all AST nodes", + $propdoc: { + start: "[AST_Token] The first token of this node", + end: "[AST_Token] The last token of this node" + }, + _walk: function(visitor) { + return visitor._visit(this); + }, + walk: function(visitor) { + return this._walk(visitor); // not sure the indirection will be any help + } +}, null); + +AST_Node.warn_function = null; +AST_Node.warn = function(txt, props) { + if (AST_Node.warn_function) + AST_Node.warn_function(string_template(txt, props)); +}; + +/* -----[ statements ]----- */ + +var AST_Statement = DEFNODE("Statement", null, { + $documentation: "Base class of all statements", +}); + +var AST_Debugger = DEFNODE("Debugger", null, { + $documentation: "Represents a debugger statement", +}, AST_Statement); + +var AST_Directive = DEFNODE("Directive", "value scope", { + $documentation: "Represents a directive, like \"use strict\";", + $propdoc: { + value: "[string] The value of this directive as a plain string (it's not an AST_String!)", + scope: "[AST_Scope/S] The scope that this directive affects" + }, +}, AST_Statement); + +var AST_SimpleStatement = DEFNODE("SimpleStatement", "body", { + $documentation: "A statement consisting of an expression, i.e. a = 1 + 2", + $propdoc: { + body: "[AST_Node] an expression node (should not be instanceof AST_Statement)" + }, + _walk: function(visitor) { + return visitor._visit(this, function(){ + this.body._walk(visitor); + }); + } +}, AST_Statement); + +function walk_body(node, visitor) { + if (node.body instanceof AST_Statement) { + node.body._walk(visitor); + } + else node.body.forEach(function(stat){ + stat._walk(visitor); + }); +}; + +var AST_Block = DEFNODE("Block", "body", { + $documentation: "A body of statements (usually bracketed)", + $propdoc: { + body: "[AST_Statement*] an array of statements" + }, + _walk: function(visitor) { + return visitor._visit(this, function(){ + walk_body(this, visitor); + }); + } +}, AST_Statement); + +var AST_BlockStatement = DEFNODE("BlockStatement", null, { + $documentation: "A block statement", +}, AST_Block); + +var AST_EmptyStatement = DEFNODE("EmptyStatement", null, { + $documentation: "The empty statement (empty block or simply a semicolon)", + _walk: function(visitor) { + return visitor._visit(this); + } +}, AST_Statement); + +var AST_StatementWithBody = DEFNODE("StatementWithBody", "body", { + $documentation: "Base class for all statements that contain one nested body: `For`, `ForIn`, `Do`, `While`, `With`", + $propdoc: { + body: "[AST_Statement] the body; this should always be present, even if it's an AST_EmptyStatement" + }, + _walk: function(visitor) { + return visitor._visit(this, function(){ + this.body._walk(visitor); + }); + } +}, AST_Statement); + +var AST_LabeledStatement = DEFNODE("LabeledStatement", "label", { + $documentation: "Statement with a label", + $propdoc: { + label: "[AST_Label] a label definition" + }, + _walk: function(visitor) { + return visitor._visit(this, function(){ + this.label._walk(visitor); + this.body._walk(visitor); + }); + } +}, AST_StatementWithBody); + +var AST_IterationStatement = DEFNODE("IterationStatement", null, { + $documentation: "Internal class. All loops inherit from it." +}, AST_StatementWithBody); + +var AST_DWLoop = DEFNODE("DWLoop", "condition", { + $documentation: "Base class for do/while statements", + $propdoc: { + condition: "[AST_Node] the loop condition. Should not be instanceof AST_Statement" + }, + _walk: function(visitor) { + return visitor._visit(this, function(){ + this.condition._walk(visitor); + this.body._walk(visitor); + }); + } +}, AST_IterationStatement); + +var AST_Do = DEFNODE("Do", null, { + $documentation: "A `do` statement", +}, AST_DWLoop); + +var AST_While = DEFNODE("While", null, { + $documentation: "A `while` statement", +}, AST_DWLoop); + +var AST_For = DEFNODE("For", "init condition step", { + $documentation: "A `for` statement", + $propdoc: { + init: "[AST_Node?] the `for` initialization code, or null if empty", + condition: "[AST_Node?] the `for` termination clause, or null if empty", + step: "[AST_Node?] the `for` update clause, or null if empty" + }, + _walk: function(visitor) { + return visitor._visit(this, function(){ + if (this.init) this.init._walk(visitor); + if (this.condition) this.condition._walk(visitor); + if (this.step) this.step._walk(visitor); + this.body._walk(visitor); + }); + } +}, AST_IterationStatement); + +var AST_ForIn = DEFNODE("ForIn", "init name object", { + $documentation: "A `for ... in` statement", + $propdoc: { + init: "[AST_Node] the `for/in` initialization code", + name: "[AST_SymbolRef?] the loop variable, only if `init` is AST_Var", + object: "[AST_Node] the object that we're looping through" + }, + _walk: function(visitor) { + return visitor._visit(this, function(){ + this.init._walk(visitor); + this.object._walk(visitor); + this.body._walk(visitor); + }); + } +}, AST_IterationStatement); + +var AST_With = DEFNODE("With", "expression", { + $documentation: "A `with` statement", + $propdoc: { + expression: "[AST_Node] the `with` expression" + }, + _walk: function(visitor) { + return visitor._visit(this, function(){ + this.expression._walk(visitor); + this.body._walk(visitor); + }); + } +}, AST_StatementWithBody); + +/* -----[ scope and functions ]----- */ + +var AST_Scope = DEFNODE("Scope", "directives variables functions uses_with uses_eval parent_scope enclosed cname", { + $documentation: "Base class for all statements introducing a lexical scope", + $propdoc: { + directives: "[string*/S] an array of directives declared in this scope", + variables: "[Object/S] a map of name -> SymbolDef for all variables/functions defined in this scope", + functions: "[Object/S] like `variables`, but only lists function declarations", + uses_with: "[boolean/S] tells whether this scope uses the `with` statement", + uses_eval: "[boolean/S] tells whether this scope contains a direct call to the global `eval`", + parent_scope: "[AST_Scope?/S] link to the parent scope", + enclosed: "[SymbolDef*/S] a list of all symbol definitions that are accessed from this scope or any subscopes", + cname: "[integer/S] current index for mangling variables (used internally by the mangler)", + }, +}, AST_Block); + +var AST_Toplevel = DEFNODE("Toplevel", "globals", { + $documentation: "The toplevel scope", + $propdoc: { + globals: "[Object/S] a map of name -> SymbolDef for all undeclared names", + }, + wrap_enclose: function(arg_parameter_pairs) { + var self = this; + var args = []; + var parameters = []; + + arg_parameter_pairs.forEach(function(pair) { + var splitAt = pair.lastIndexOf(":"); + + args.push(pair.substr(0, splitAt)); + parameters.push(pair.substr(splitAt + 1)); + }); + + var wrapped_tl = "(function(" + parameters.join(",") + "){ '$ORIG'; })(" + args.join(",") + ")"; + wrapped_tl = parse(wrapped_tl); + wrapped_tl = wrapped_tl.transform(new TreeTransformer(function before(node){ + if (node instanceof AST_Directive && node.value == "$ORIG") { + return MAP.splice(self.body); + } + })); + return wrapped_tl; + }, + wrap_commonjs: function(name, export_all) { + var self = this; + var to_export = []; + if (export_all) { + self.figure_out_scope(); + self.walk(new TreeWalker(function(node){ + if (node instanceof AST_SymbolDeclaration && node.definition().global) { + if (!find_if(function(n){ return n.name == node.name }, to_export)) + to_export.push(node); + } + })); + } + var wrapped_tl = "(function(exports, global){ global['" + name + "'] = exports; '$ORIG'; '$EXPORTS'; }({}, (function(){return this}())))"; + wrapped_tl = parse(wrapped_tl); + wrapped_tl = wrapped_tl.transform(new TreeTransformer(function before(node){ + if (node instanceof AST_SimpleStatement) { + node = node.body; + if (node instanceof AST_String) switch (node.getValue()) { + case "$ORIG": + return MAP.splice(self.body); + case "$EXPORTS": + var body = []; + to_export.forEach(function(sym){ + body.push(new AST_SimpleStatement({ + body: new AST_Assign({ + left: new AST_Sub({ + expression: new AST_SymbolRef({ name: "exports" }), + property: new AST_String({ value: sym.name }), + }), + operator: "=", + right: new AST_SymbolRef(sym), + }), + })); + }); + return MAP.splice(body); + } + } + })); + return wrapped_tl; + } +}, AST_Scope); + +var AST_Lambda = DEFNODE("Lambda", "name argnames uses_arguments", { + $documentation: "Base class for functions", + $propdoc: { + name: "[AST_SymbolDeclaration?] the name of this function", + argnames: "[AST_SymbolFunarg*] array of function arguments", + uses_arguments: "[boolean/S] tells whether this function accesses the arguments array" + }, + _walk: function(visitor) { + return visitor._visit(this, function(){ + if (this.name) this.name._walk(visitor); + this.argnames.forEach(function(arg){ + arg._walk(visitor); + }); + walk_body(this, visitor); + }); + } +}, AST_Scope); + +var AST_Accessor = DEFNODE("Accessor", null, { + $documentation: "A setter/getter function. The `name` property is always null." +}, AST_Lambda); + +var AST_Function = DEFNODE("Function", null, { + $documentation: "A function expression" +}, AST_Lambda); + +var AST_Defun = DEFNODE("Defun", null, { + $documentation: "A function definition" +}, AST_Lambda); + +/* -----[ JUMPS ]----- */ + +var AST_Jump = DEFNODE("Jump", null, { + $documentation: "Base class for “jumps” (for now that's `return`, `throw`, `break` and `continue`)" +}, AST_Statement); + +var AST_Exit = DEFNODE("Exit", "value", { + $documentation: "Base class for “exits” (`return` and `throw`)", + $propdoc: { + value: "[AST_Node?] the value returned or thrown by this statement; could be null for AST_Return" + }, + _walk: function(visitor) { + return visitor._visit(this, this.value && function(){ + this.value._walk(visitor); + }); + } +}, AST_Jump); + +var AST_Return = DEFNODE("Return", null, { + $documentation: "A `return` statement" +}, AST_Exit); + +var AST_Throw = DEFNODE("Throw", null, { + $documentation: "A `throw` statement" +}, AST_Exit); + +var AST_LoopControl = DEFNODE("LoopControl", "label", { + $documentation: "Base class for loop control statements (`break` and `continue`)", + $propdoc: { + label: "[AST_LabelRef?] the label, or null if none", + }, + _walk: function(visitor) { + return visitor._visit(this, this.label && function(){ + this.label._walk(visitor); + }); + } +}, AST_Jump); + +var AST_Break = DEFNODE("Break", null, { + $documentation: "A `break` statement" +}, AST_LoopControl); + +var AST_Continue = DEFNODE("Continue", null, { + $documentation: "A `continue` statement" +}, AST_LoopControl); + +/* -----[ IF ]----- */ + +var AST_If = DEFNODE("If", "condition alternative", { + $documentation: "A `if` statement", + $propdoc: { + condition: "[AST_Node] the `if` condition", + alternative: "[AST_Statement?] the `else` part, or null if not present" + }, + _walk: function(visitor) { + return visitor._visit(this, function(){ + this.condition._walk(visitor); + this.body._walk(visitor); + if (this.alternative) this.alternative._walk(visitor); + }); + } +}, AST_StatementWithBody); + +/* -----[ SWITCH ]----- */ + +var AST_Switch = DEFNODE("Switch", "expression", { + $documentation: "A `switch` statement", + $propdoc: { + expression: "[AST_Node] the `switch` “discriminant”" + }, + _walk: function(visitor) { + return visitor._visit(this, function(){ + this.expression._walk(visitor); + walk_body(this, visitor); + }); + } +}, AST_Block); + +var AST_SwitchBranch = DEFNODE("SwitchBranch", null, { + $documentation: "Base class for `switch` branches", +}, AST_Block); + +var AST_Default = DEFNODE("Default", null, { + $documentation: "A `default` switch branch", +}, AST_SwitchBranch); + +var AST_Case = DEFNODE("Case", "expression", { + $documentation: "A `case` switch branch", + $propdoc: { + expression: "[AST_Node] the `case` expression" + }, + _walk: function(visitor) { + return visitor._visit(this, function(){ + this.expression._walk(visitor); + walk_body(this, visitor); + }); + } +}, AST_SwitchBranch); + +/* -----[ EXCEPTIONS ]----- */ + +var AST_Try = DEFNODE("Try", "bcatch bfinally", { + $documentation: "A `try` statement", + $propdoc: { + bcatch: "[AST_Catch?] the catch block, or null if not present", + bfinally: "[AST_Finally?] the finally block, or null if not present" + }, + _walk: function(visitor) { + return visitor._visit(this, function(){ + walk_body(this, visitor); + if (this.bcatch) this.bcatch._walk(visitor); + if (this.bfinally) this.bfinally._walk(visitor); + }); + } +}, AST_Block); + +var AST_Catch = DEFNODE("Catch", "argname", { + $documentation: "A `catch` node; only makes sense as part of a `try` statement", + $propdoc: { + argname: "[AST_SymbolCatch] symbol for the exception" + }, + _walk: function(visitor) { + return visitor._visit(this, function(){ + this.argname._walk(visitor); + walk_body(this, visitor); + }); + } +}, AST_Block); + +var AST_Finally = DEFNODE("Finally", null, { + $documentation: "A `finally` node; only makes sense as part of a `try` statement" +}, AST_Block); + +/* -----[ VAR/CONST ]----- */ + +var AST_Definitions = DEFNODE("Definitions", "definitions", { + $documentation: "Base class for `var` or `const` nodes (variable declarations/initializations)", + $propdoc: { + definitions: "[AST_VarDef*] array of variable definitions" + }, + _walk: function(visitor) { + return visitor._visit(this, function(){ + this.definitions.forEach(function(def){ + def._walk(visitor); + }); + }); + } +}, AST_Statement); + +var AST_Var = DEFNODE("Var", null, { + $documentation: "A `var` statement" +}, AST_Definitions); + +var AST_Const = DEFNODE("Const", null, { + $documentation: "A `const` statement" +}, AST_Definitions); + +var AST_VarDef = DEFNODE("VarDef", "name value", { + $documentation: "A variable declaration; only appears in a AST_Definitions node", + $propdoc: { + name: "[AST_SymbolVar|AST_SymbolConst] name of the variable", + value: "[AST_Node?] initializer, or null of there's no initializer" + }, + _walk: function(visitor) { + return visitor._visit(this, function(){ + this.name._walk(visitor); + if (this.value) this.value._walk(visitor); + }); + } +}); + +/* -----[ OTHER ]----- */ + +var AST_Call = DEFNODE("Call", "expression args", { + $documentation: "A function call expression", + $propdoc: { + expression: "[AST_Node] expression to invoke as function", + args: "[AST_Node*] array of arguments" + }, + _walk: function(visitor) { + return visitor._visit(this, function(){ + this.expression._walk(visitor); + this.args.forEach(function(arg){ + arg._walk(visitor); + }); + }); + } +}); + +var AST_New = DEFNODE("New", null, { + $documentation: "An object instantiation. Derives from a function call since it has exactly the same properties" +}, AST_Call); + +var AST_Seq = DEFNODE("Seq", "car cdr", { + $documentation: "A sequence expression (two comma-separated expressions)", + $propdoc: { + car: "[AST_Node] first element in sequence", + cdr: "[AST_Node] second element in sequence" + }, + $cons: function(x, y) { + var seq = new AST_Seq(x); + seq.car = x; + seq.cdr = y; + return seq; + }, + $from_array: function(array) { + if (array.length == 0) return null; + if (array.length == 1) return array[0].clone(); + var list = null; + for (var i = array.length; --i >= 0;) { + list = AST_Seq.cons(array[i], list); + } + var p = list; + while (p) { + if (p.cdr && !p.cdr.cdr) { + p.cdr = p.cdr.car; + break; + } + p = p.cdr; + } + return list; + }, + to_array: function() { + var p = this, a = []; + while (p) { + a.push(p.car); + if (p.cdr && !(p.cdr instanceof AST_Seq)) { + a.push(p.cdr); + break; + } + p = p.cdr; + } + return a; + }, + add: function(node) { + var p = this; + while (p) { + if (!(p.cdr instanceof AST_Seq)) { + var cell = AST_Seq.cons(p.cdr, node); + return p.cdr = cell; + } + p = p.cdr; + } + }, + _walk: function(visitor) { + return visitor._visit(this, function(){ + this.car._walk(visitor); + if (this.cdr) this.cdr._walk(visitor); + }); + } +}); + +var AST_PropAccess = DEFNODE("PropAccess", "expression property", { + $documentation: "Base class for property access expressions, i.e. `a.foo` or `a[\"foo\"]`", + $propdoc: { + expression: "[AST_Node] the “container” expression", + property: "[AST_Node|string] the property to access. For AST_Dot this is always a plain string, while for AST_Sub it's an arbitrary AST_Node" + } +}); + +var AST_Dot = DEFNODE("Dot", null, { + $documentation: "A dotted property access expression", + _walk: function(visitor) { + return visitor._visit(this, function(){ + this.expression._walk(visitor); + }); + } +}, AST_PropAccess); + +var AST_Sub = DEFNODE("Sub", null, { + $documentation: "Index-style property access, i.e. `a[\"foo\"]`", + _walk: function(visitor) { + return visitor._visit(this, function(){ + this.expression._walk(visitor); + this.property._walk(visitor); + }); + } +}, AST_PropAccess); + +var AST_Unary = DEFNODE("Unary", "operator expression", { + $documentation: "Base class for unary expressions", + $propdoc: { + operator: "[string] the operator", + expression: "[AST_Node] expression that this unary operator applies to" + }, + _walk: function(visitor) { + return visitor._visit(this, function(){ + this.expression._walk(visitor); + }); + } +}); + +var AST_UnaryPrefix = DEFNODE("UnaryPrefix", null, { + $documentation: "Unary prefix expression, i.e. `typeof i` or `++i`" +}, AST_Unary); + +var AST_UnaryPostfix = DEFNODE("UnaryPostfix", null, { + $documentation: "Unary postfix expression, i.e. `i++`" +}, AST_Unary); + +var AST_Binary = DEFNODE("Binary", "left operator right", { + $documentation: "Binary expression, i.e. `a + b`", + $propdoc: { + left: "[AST_Node] left-hand side expression", + operator: "[string] the operator", + right: "[AST_Node] right-hand side expression" + }, + _walk: function(visitor) { + return visitor._visit(this, function(){ + this.left._walk(visitor); + this.right._walk(visitor); + }); + } +}); + +var AST_Conditional = DEFNODE("Conditional", "condition consequent alternative", { + $documentation: "Conditional expression using the ternary operator, i.e. `a ? b : c`", + $propdoc: { + condition: "[AST_Node]", + consequent: "[AST_Node]", + alternative: "[AST_Node]" + }, + _walk: function(visitor) { + return visitor._visit(this, function(){ + this.condition._walk(visitor); + this.consequent._walk(visitor); + this.alternative._walk(visitor); + }); + } +}); + +var AST_Assign = DEFNODE("Assign", null, { + $documentation: "An assignment expression — `a = b + 5`", +}, AST_Binary); + +/* -----[ LITERALS ]----- */ + +var AST_Array = DEFNODE("Array", "elements", { + $documentation: "An array literal", + $propdoc: { + elements: "[AST_Node*] array of elements" + }, + _walk: function(visitor) { + return visitor._visit(this, function(){ + this.elements.forEach(function(el){ + el._walk(visitor); + }); + }); + } +}); + +var AST_Object = DEFNODE("Object", "properties", { + $documentation: "An object literal", + $propdoc: { + properties: "[AST_ObjectProperty*] array of properties" + }, + _walk: function(visitor) { + return visitor._visit(this, function(){ + this.properties.forEach(function(prop){ + prop._walk(visitor); + }); + }); + } +}); + +var AST_ObjectProperty = DEFNODE("ObjectProperty", "key value", { + $documentation: "Base class for literal object properties", + $propdoc: { + key: "[string] the property name converted to a string for ObjectKeyVal. For setters and getters this is an arbitrary AST_Node.", + value: "[AST_Node] property value. For setters and getters this is an AST_Function." + }, + _walk: function(visitor) { + return visitor._visit(this, function(){ + this.value._walk(visitor); + }); + } +}); + +var AST_ObjectKeyVal = DEFNODE("ObjectKeyVal", null, { + $documentation: "A key: value object property", +}, AST_ObjectProperty); + +var AST_ObjectSetter = DEFNODE("ObjectSetter", null, { + $documentation: "An object setter property", +}, AST_ObjectProperty); + +var AST_ObjectGetter = DEFNODE("ObjectGetter", null, { + $documentation: "An object getter property", +}, AST_ObjectProperty); + +var AST_Symbol = DEFNODE("Symbol", "scope name thedef", { + $propdoc: { + name: "[string] name of this symbol", + scope: "[AST_Scope/S] the current scope (not necessarily the definition scope)", + thedef: "[SymbolDef/S] the definition of this symbol" + }, + $documentation: "Base class for all symbols", +}); + +var AST_SymbolAccessor = DEFNODE("SymbolAccessor", null, { + $documentation: "The name of a property accessor (setter/getter function)" +}, AST_Symbol); + +var AST_SymbolDeclaration = DEFNODE("SymbolDeclaration", "init", { + $documentation: "A declaration symbol (symbol in var/const, function name or argument, symbol in catch)", + $propdoc: { + init: "[AST_Node*/S] array of initializers for this declaration." + } +}, AST_Symbol); + +var AST_SymbolVar = DEFNODE("SymbolVar", null, { + $documentation: "Symbol defining a variable", +}, AST_SymbolDeclaration); + +var AST_SymbolConst = DEFNODE("SymbolConst", null, { + $documentation: "A constant declaration" +}, AST_SymbolDeclaration); + +var AST_SymbolFunarg = DEFNODE("SymbolFunarg", null, { + $documentation: "Symbol naming a function argument", +}, AST_SymbolVar); + +var AST_SymbolDefun = DEFNODE("SymbolDefun", null, { + $documentation: "Symbol defining a function", +}, AST_SymbolDeclaration); + +var AST_SymbolLambda = DEFNODE("SymbolLambda", null, { + $documentation: "Symbol naming a function expression", +}, AST_SymbolDeclaration); + +var AST_SymbolCatch = DEFNODE("SymbolCatch", null, { + $documentation: "Symbol naming the exception in catch", +}, AST_SymbolDeclaration); + +var AST_Label = DEFNODE("Label", "references", { + $documentation: "Symbol naming a label (declaration)", + $propdoc: { + references: "[AST_LoopControl*] a list of nodes referring to this label" + }, + initialize: function() { + this.references = []; + this.thedef = this; + } +}, AST_Symbol); + +var AST_SymbolRef = DEFNODE("SymbolRef", null, { + $documentation: "Reference to some symbol (not definition/declaration)", +}, AST_Symbol); + +var AST_LabelRef = DEFNODE("LabelRef", null, { + $documentation: "Reference to a label symbol", +}, AST_Symbol); + +var AST_This = DEFNODE("This", null, { + $documentation: "The `this` symbol", +}, AST_Symbol); + +var AST_Constant = DEFNODE("Constant", null, { + $documentation: "Base class for all constants", + getValue: function() { + return this.value; + } +}); + +var AST_String = DEFNODE("String", "value", { + $documentation: "A string literal", + $propdoc: { + value: "[string] the contents of this string" + } +}, AST_Constant); + +var AST_Number = DEFNODE("Number", "value", { + $documentation: "A number literal", + $propdoc: { + value: "[number] the numeric value" + } +}, AST_Constant); + +var AST_RegExp = DEFNODE("RegExp", "value", { + $documentation: "A regexp literal", + $propdoc: { + value: "[RegExp] the actual regexp" + } +}, AST_Constant); + +var AST_Atom = DEFNODE("Atom", null, { + $documentation: "Base class for atoms", +}, AST_Constant); + +var AST_Null = DEFNODE("Null", null, { + $documentation: "The `null` atom", + value: null +}, AST_Atom); + +var AST_NaN = DEFNODE("NaN", null, { + $documentation: "The impossible value", + value: 0/0 +}, AST_Atom); + +var AST_Undefined = DEFNODE("Undefined", null, { + $documentation: "The `undefined` value", + value: (function(){}()) +}, AST_Atom); + +var AST_Hole = DEFNODE("Hole", null, { + $documentation: "A hole in an array", + value: (function(){}()) +}, AST_Atom); + +var AST_Infinity = DEFNODE("Infinity", null, { + $documentation: "The `Infinity` value", + value: 1/0 +}, AST_Atom); + +var AST_Boolean = DEFNODE("Boolean", null, { + $documentation: "Base class for booleans", +}, AST_Atom); + +var AST_False = DEFNODE("False", null, { + $documentation: "The `false` atom", + value: false +}, AST_Boolean); + +var AST_True = DEFNODE("True", null, { + $documentation: "The `true` atom", + value: true +}, AST_Boolean); + +/* -----[ TreeWalker ]----- */ + +function TreeWalker(callback) { + this.visit = callback; + this.stack = []; +}; +TreeWalker.prototype = { + _visit: function(node, descend) { + this.stack.push(node); + var ret = this.visit(node, descend ? function(){ + descend.call(node); + } : noop); + if (!ret && descend) { + descend.call(node); + } + this.stack.pop(); + return ret; + }, + parent: function(n) { + return this.stack[this.stack.length - 2 - (n || 0)]; + }, + push: function (node) { + this.stack.push(node); + }, + pop: function() { + return this.stack.pop(); + }, + self: function() { + return this.stack[this.stack.length - 1]; + }, + find_parent: function(type) { + var stack = this.stack; + for (var i = stack.length; --i >= 0;) { + var x = stack[i]; + if (x instanceof type) return x; + } + }, + has_directive: function(type) { + return this.find_parent(AST_Scope).has_directive(type); + }, + in_boolean_context: function() { + var stack = this.stack; + var i = stack.length, self = stack[--i]; + while (i > 0) { + var p = stack[--i]; + if ((p instanceof AST_If && p.condition === self) || + (p instanceof AST_Conditional && p.condition === self) || + (p instanceof AST_DWLoop && p.condition === self) || + (p instanceof AST_For && p.condition === self) || + (p instanceof AST_UnaryPrefix && p.operator == "!" && p.expression === self)) + { + return true; + } + if (!(p instanceof AST_Binary && (p.operator == "&&" || p.operator == "||"))) + return false; + self = p; + } + }, + loopcontrol_target: function(label) { + var stack = this.stack; + if (label) for (var i = stack.length; --i >= 0;) { + var x = stack[i]; + if (x instanceof AST_LabeledStatement && x.label.name == label.name) { + return x.body; + } + } else for (var i = stack.length; --i >= 0;) { + var x = stack[i]; + if (x instanceof AST_Switch || x instanceof AST_IterationStatement) + return x; + } + } +}; + +/*********************************************************************** + + A JavaScript tokenizer / parser / beautifier / compressor. + https://github.com/mishoo/UglifyJS2 + + -------------------------------- (C) --------------------------------- + + Author: Mihai Bazon + + http://mihai.bazon.net/blog + + Distributed under the BSD license: + + Copyright 2012 (c) Mihai Bazon + Parser based on parse-js (http://marijn.haverbeke.nl/parse-js/). + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + * Redistributions of source code must retain the above + copyright notice, this list of conditions and the following + disclaimer. + + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials + provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER “AS IS” AND ANY + EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE + LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, + OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR + TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF + THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + SUCH DAMAGE. + + ***********************************************************************/ + +"use strict"; + +var KEYWORDS = 'break case catch const continue debugger default delete do else finally for function if in instanceof new return switch throw try typeof var void while with'; +var KEYWORDS_ATOM = 'false null true'; +var RESERVED_WORDS = 'abstract boolean byte char class double enum export extends final float goto implements import int interface long native package private protected public short static super synchronized this throws transient volatile yield' + + " " + KEYWORDS_ATOM + " " + KEYWORDS; +var KEYWORDS_BEFORE_EXPRESSION = 'return new delete throw else case'; + +KEYWORDS = makePredicate(KEYWORDS); +RESERVED_WORDS = makePredicate(RESERVED_WORDS); +KEYWORDS_BEFORE_EXPRESSION = makePredicate(KEYWORDS_BEFORE_EXPRESSION); +KEYWORDS_ATOM = makePredicate(KEYWORDS_ATOM); + +var OPERATOR_CHARS = makePredicate(characters("+-*&%=<>!?|~^")); + +var RE_HEX_NUMBER = /^0x[0-9a-f]+$/i; +var RE_OCT_NUMBER = /^0[0-7]+$/; +var RE_DEC_NUMBER = /^\d*\.?\d*(?:e[+-]?\d*(?:\d\.?|\.?\d)\d*)?$/i; + +var OPERATORS = makePredicate([ + "in", + "instanceof", + "typeof", + "new", + "void", + "delete", + "++", + "--", + "+", + "-", + "!", + "~", + "&", + "|", + "^", + "*", + "/", + "%", + ">>", + "<<", + ">>>", + "<", + ">", + "<=", + ">=", + "==", + "===", + "!=", + "!==", + "?", + "=", + "+=", + "-=", + "/=", + "*=", + "%=", + ">>=", + "<<=", + ">>>=", + "|=", + "^=", + "&=", + "&&", + "||" +]); + +var WHITESPACE_CHARS = makePredicate(characters(" \u00a0\n\r\t\f\u000b\u200b\u180e\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u202f\u205f\u3000")); + +var PUNC_BEFORE_EXPRESSION = makePredicate(characters("[{(,.;:")); + +var PUNC_CHARS = makePredicate(characters("[]{}(),;:")); + +var REGEXP_MODIFIERS = makePredicate(characters("gmsiy")); + +/* -----[ Tokenizer ]----- */ + +// regexps adapted from http://xregexp.com/plugins/#unicode +var UNICODE = { + letter: new RegExp("[\\u0041-\\u005A\\u0061-\\u007A\\u00AA\\u00B5\\u00BA\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02C1\\u02C6-\\u02D1\\u02E0-\\u02E4\\u02EC\\u02EE\\u0370-\\u0374\\u0376\\u0377\\u037A-\\u037D\\u0386\\u0388-\\u038A\\u038C\\u038E-\\u03A1\\u03A3-\\u03F5\\u03F7-\\u0481\\u048A-\\u0523\\u0531-\\u0556\\u0559\\u0561-\\u0587\\u05D0-\\u05EA\\u05F0-\\u05F2\\u0621-\\u064A\\u066E\\u066F\\u0671-\\u06D3\\u06D5\\u06E5\\u06E6\\u06EE\\u06EF\\u06FA-\\u06FC\\u06FF\\u0710\\u0712-\\u072F\\u074D-\\u07A5\\u07B1\\u07CA-\\u07EA\\u07F4\\u07F5\\u07FA\\u0904-\\u0939\\u093D\\u0950\\u0958-\\u0961\\u0971\\u0972\\u097B-\\u097F\\u0985-\\u098C\\u098F\\u0990\\u0993-\\u09A8\\u09AA-\\u09B0\\u09B2\\u09B6-\\u09B9\\u09BD\\u09CE\\u09DC\\u09DD\\u09DF-\\u09E1\\u09F0\\u09F1\\u0A05-\\u0A0A\\u0A0F\\u0A10\\u0A13-\\u0A28\\u0A2A-\\u0A30\\u0A32\\u0A33\\u0A35\\u0A36\\u0A38\\u0A39\\u0A59-\\u0A5C\\u0A5E\\u0A72-\\u0A74\\u0A85-\\u0A8D\\u0A8F-\\u0A91\\u0A93-\\u0AA8\\u0AAA-\\u0AB0\\u0AB2\\u0AB3\\u0AB5-\\u0AB9\\u0ABD\\u0AD0\\u0AE0\\u0AE1\\u0B05-\\u0B0C\\u0B0F\\u0B10\\u0B13-\\u0B28\\u0B2A-\\u0B30\\u0B32\\u0B33\\u0B35-\\u0B39\\u0B3D\\u0B5C\\u0B5D\\u0B5F-\\u0B61\\u0B71\\u0B83\\u0B85-\\u0B8A\\u0B8E-\\u0B90\\u0B92-\\u0B95\\u0B99\\u0B9A\\u0B9C\\u0B9E\\u0B9F\\u0BA3\\u0BA4\\u0BA8-\\u0BAA\\u0BAE-\\u0BB9\\u0BD0\\u0C05-\\u0C0C\\u0C0E-\\u0C10\\u0C12-\\u0C28\\u0C2A-\\u0C33\\u0C35-\\u0C39\\u0C3D\\u0C58\\u0C59\\u0C60\\u0C61\\u0C85-\\u0C8C\\u0C8E-\\u0C90\\u0C92-\\u0CA8\\u0CAA-\\u0CB3\\u0CB5-\\u0CB9\\u0CBD\\u0CDE\\u0CE0\\u0CE1\\u0D05-\\u0D0C\\u0D0E-\\u0D10\\u0D12-\\u0D28\\u0D2A-\\u0D39\\u0D3D\\u0D60\\u0D61\\u0D7A-\\u0D7F\\u0D85-\\u0D96\\u0D9A-\\u0DB1\\u0DB3-\\u0DBB\\u0DBD\\u0DC0-\\u0DC6\\u0E01-\\u0E30\\u0E32\\u0E33\\u0E40-\\u0E46\\u0E81\\u0E82\\u0E84\\u0E87\\u0E88\\u0E8A\\u0E8D\\u0E94-\\u0E97\\u0E99-\\u0E9F\\u0EA1-\\u0EA3\\u0EA5\\u0EA7\\u0EAA\\u0EAB\\u0EAD-\\u0EB0\\u0EB2\\u0EB3\\u0EBD\\u0EC0-\\u0EC4\\u0EC6\\u0EDC\\u0EDD\\u0F00\\u0F40-\\u0F47\\u0F49-\\u0F6C\\u0F88-\\u0F8B\\u1000-\\u102A\\u103F\\u1050-\\u1055\\u105A-\\u105D\\u1061\\u1065\\u1066\\u106E-\\u1070\\u1075-\\u1081\\u108E\\u10A0-\\u10C5\\u10D0-\\u10FA\\u10FC\\u1100-\\u1159\\u115F-\\u11A2\\u11A8-\\u11F9\\u1200-\\u1248\\u124A-\\u124D\\u1250-\\u1256\\u1258\\u125A-\\u125D\\u1260-\\u1288\\u128A-\\u128D\\u1290-\\u12B0\\u12B2-\\u12B5\\u12B8-\\u12BE\\u12C0\\u12C2-\\u12C5\\u12C8-\\u12D6\\u12D8-\\u1310\\u1312-\\u1315\\u1318-\\u135A\\u1380-\\u138F\\u13A0-\\u13F4\\u1401-\\u166C\\u166F-\\u1676\\u1681-\\u169A\\u16A0-\\u16EA\\u1700-\\u170C\\u170E-\\u1711\\u1720-\\u1731\\u1740-\\u1751\\u1760-\\u176C\\u176E-\\u1770\\u1780-\\u17B3\\u17D7\\u17DC\\u1820-\\u1877\\u1880-\\u18A8\\u18AA\\u1900-\\u191C\\u1950-\\u196D\\u1970-\\u1974\\u1980-\\u19A9\\u19C1-\\u19C7\\u1A00-\\u1A16\\u1B05-\\u1B33\\u1B45-\\u1B4B\\u1B83-\\u1BA0\\u1BAE\\u1BAF\\u1C00-\\u1C23\\u1C4D-\\u1C4F\\u1C5A-\\u1C7D\\u1D00-\\u1DBF\\u1E00-\\u1F15\\u1F18-\\u1F1D\\u1F20-\\u1F45\\u1F48-\\u1F4D\\u1F50-\\u1F57\\u1F59\\u1F5B\\u1F5D\\u1F5F-\\u1F7D\\u1F80-\\u1FB4\\u1FB6-\\u1FBC\\u1FBE\\u1FC2-\\u1FC4\\u1FC6-\\u1FCC\\u1FD0-\\u1FD3\\u1FD6-\\u1FDB\\u1FE0-\\u1FEC\\u1FF2-\\u1FF4\\u1FF6-\\u1FFC\\u2071\\u207F\\u2090-\\u2094\\u2102\\u2107\\u210A-\\u2113\\u2115\\u2119-\\u211D\\u2124\\u2126\\u2128\\u212A-\\u212D\\u212F-\\u2139\\u213C-\\u213F\\u2145-\\u2149\\u214E\\u2183\\u2184\\u2C00-\\u2C2E\\u2C30-\\u2C5E\\u2C60-\\u2C6F\\u2C71-\\u2C7D\\u2C80-\\u2CE4\\u2D00-\\u2D25\\u2D30-\\u2D65\\u2D6F\\u2D80-\\u2D96\\u2DA0-\\u2DA6\\u2DA8-\\u2DAE\\u2DB0-\\u2DB6\\u2DB8-\\u2DBE\\u2DC0-\\u2DC6\\u2DC8-\\u2DCE\\u2DD0-\\u2DD6\\u2DD8-\\u2DDE\\u2E2F\\u3005\\u3006\\u3031-\\u3035\\u303B\\u303C\\u3041-\\u3096\\u309D-\\u309F\\u30A1-\\u30FA\\u30FC-\\u30FF\\u3105-\\u312D\\u3131-\\u318E\\u31A0-\\u31B7\\u31F0-\\u31FF\\u3400\\u4DB5\\u4E00\\u9FC3\\uA000-\\uA48C\\uA500-\\uA60C\\uA610-\\uA61F\\uA62A\\uA62B\\uA640-\\uA65F\\uA662-\\uA66E\\uA67F-\\uA697\\uA717-\\uA71F\\uA722-\\uA788\\uA78B\\uA78C\\uA7FB-\\uA801\\uA803-\\uA805\\uA807-\\uA80A\\uA80C-\\uA822\\uA840-\\uA873\\uA882-\\uA8B3\\uA90A-\\uA925\\uA930-\\uA946\\uAA00-\\uAA28\\uAA40-\\uAA42\\uAA44-\\uAA4B\\uAC00\\uD7A3\\uF900-\\uFA2D\\uFA30-\\uFA6A\\uFA70-\\uFAD9\\uFB00-\\uFB06\\uFB13-\\uFB17\\uFB1D\\uFB1F-\\uFB28\\uFB2A-\\uFB36\\uFB38-\\uFB3C\\uFB3E\\uFB40\\uFB41\\uFB43\\uFB44\\uFB46-\\uFBB1\\uFBD3-\\uFD3D\\uFD50-\\uFD8F\\uFD92-\\uFDC7\\uFDF0-\\uFDFB\\uFE70-\\uFE74\\uFE76-\\uFEFC\\uFF21-\\uFF3A\\uFF41-\\uFF5A\\uFF66-\\uFFBE\\uFFC2-\\uFFC7\\uFFCA-\\uFFCF\\uFFD2-\\uFFD7\\uFFDA-\\uFFDC]"), + non_spacing_mark: new RegExp("[\\u0300-\\u036F\\u0483-\\u0487\\u0591-\\u05BD\\u05BF\\u05C1\\u05C2\\u05C4\\u05C5\\u05C7\\u0610-\\u061A\\u064B-\\u065E\\u0670\\u06D6-\\u06DC\\u06DF-\\u06E4\\u06E7\\u06E8\\u06EA-\\u06ED\\u0711\\u0730-\\u074A\\u07A6-\\u07B0\\u07EB-\\u07F3\\u0816-\\u0819\\u081B-\\u0823\\u0825-\\u0827\\u0829-\\u082D\\u0900-\\u0902\\u093C\\u0941-\\u0948\\u094D\\u0951-\\u0955\\u0962\\u0963\\u0981\\u09BC\\u09C1-\\u09C4\\u09CD\\u09E2\\u09E3\\u0A01\\u0A02\\u0A3C\\u0A41\\u0A42\\u0A47\\u0A48\\u0A4B-\\u0A4D\\u0A51\\u0A70\\u0A71\\u0A75\\u0A81\\u0A82\\u0ABC\\u0AC1-\\u0AC5\\u0AC7\\u0AC8\\u0ACD\\u0AE2\\u0AE3\\u0B01\\u0B3C\\u0B3F\\u0B41-\\u0B44\\u0B4D\\u0B56\\u0B62\\u0B63\\u0B82\\u0BC0\\u0BCD\\u0C3E-\\u0C40\\u0C46-\\u0C48\\u0C4A-\\u0C4D\\u0C55\\u0C56\\u0C62\\u0C63\\u0CBC\\u0CBF\\u0CC6\\u0CCC\\u0CCD\\u0CE2\\u0CE3\\u0D41-\\u0D44\\u0D4D\\u0D62\\u0D63\\u0DCA\\u0DD2-\\u0DD4\\u0DD6\\u0E31\\u0E34-\\u0E3A\\u0E47-\\u0E4E\\u0EB1\\u0EB4-\\u0EB9\\u0EBB\\u0EBC\\u0EC8-\\u0ECD\\u0F18\\u0F19\\u0F35\\u0F37\\u0F39\\u0F71-\\u0F7E\\u0F80-\\u0F84\\u0F86\\u0F87\\u0F90-\\u0F97\\u0F99-\\u0FBC\\u0FC6\\u102D-\\u1030\\u1032-\\u1037\\u1039\\u103A\\u103D\\u103E\\u1058\\u1059\\u105E-\\u1060\\u1071-\\u1074\\u1082\\u1085\\u1086\\u108D\\u109D\\u135F\\u1712-\\u1714\\u1732-\\u1734\\u1752\\u1753\\u1772\\u1773\\u17B7-\\u17BD\\u17C6\\u17C9-\\u17D3\\u17DD\\u180B-\\u180D\\u18A9\\u1920-\\u1922\\u1927\\u1928\\u1932\\u1939-\\u193B\\u1A17\\u1A18\\u1A56\\u1A58-\\u1A5E\\u1A60\\u1A62\\u1A65-\\u1A6C\\u1A73-\\u1A7C\\u1A7F\\u1B00-\\u1B03\\u1B34\\u1B36-\\u1B3A\\u1B3C\\u1B42\\u1B6B-\\u1B73\\u1B80\\u1B81\\u1BA2-\\u1BA5\\u1BA8\\u1BA9\\u1C2C-\\u1C33\\u1C36\\u1C37\\u1CD0-\\u1CD2\\u1CD4-\\u1CE0\\u1CE2-\\u1CE8\\u1CED\\u1DC0-\\u1DE6\\u1DFD-\\u1DFF\\u20D0-\\u20DC\\u20E1\\u20E5-\\u20F0\\u2CEF-\\u2CF1\\u2DE0-\\u2DFF\\u302A-\\u302F\\u3099\\u309A\\uA66F\\uA67C\\uA67D\\uA6F0\\uA6F1\\uA802\\uA806\\uA80B\\uA825\\uA826\\uA8C4\\uA8E0-\\uA8F1\\uA926-\\uA92D\\uA947-\\uA951\\uA980-\\uA982\\uA9B3\\uA9B6-\\uA9B9\\uA9BC\\uAA29-\\uAA2E\\uAA31\\uAA32\\uAA35\\uAA36\\uAA43\\uAA4C\\uAAB0\\uAAB2-\\uAAB4\\uAAB7\\uAAB8\\uAABE\\uAABF\\uAAC1\\uABE5\\uABE8\\uABED\\uFB1E\\uFE00-\\uFE0F\\uFE20-\\uFE26]"), + space_combining_mark: new RegExp("[\\u0903\\u093E-\\u0940\\u0949-\\u094C\\u094E\\u0982\\u0983\\u09BE-\\u09C0\\u09C7\\u09C8\\u09CB\\u09CC\\u09D7\\u0A03\\u0A3E-\\u0A40\\u0A83\\u0ABE-\\u0AC0\\u0AC9\\u0ACB\\u0ACC\\u0B02\\u0B03\\u0B3E\\u0B40\\u0B47\\u0B48\\u0B4B\\u0B4C\\u0B57\\u0BBE\\u0BBF\\u0BC1\\u0BC2\\u0BC6-\\u0BC8\\u0BCA-\\u0BCC\\u0BD7\\u0C01-\\u0C03\\u0C41-\\u0C44\\u0C82\\u0C83\\u0CBE\\u0CC0-\\u0CC4\\u0CC7\\u0CC8\\u0CCA\\u0CCB\\u0CD5\\u0CD6\\u0D02\\u0D03\\u0D3E-\\u0D40\\u0D46-\\u0D48\\u0D4A-\\u0D4C\\u0D57\\u0D82\\u0D83\\u0DCF-\\u0DD1\\u0DD8-\\u0DDF\\u0DF2\\u0DF3\\u0F3E\\u0F3F\\u0F7F\\u102B\\u102C\\u1031\\u1038\\u103B\\u103C\\u1056\\u1057\\u1062-\\u1064\\u1067-\\u106D\\u1083\\u1084\\u1087-\\u108C\\u108F\\u109A-\\u109C\\u17B6\\u17BE-\\u17C5\\u17C7\\u17C8\\u1923-\\u1926\\u1929-\\u192B\\u1930\\u1931\\u1933-\\u1938\\u19B0-\\u19C0\\u19C8\\u19C9\\u1A19-\\u1A1B\\u1A55\\u1A57\\u1A61\\u1A63\\u1A64\\u1A6D-\\u1A72\\u1B04\\u1B35\\u1B3B\\u1B3D-\\u1B41\\u1B43\\u1B44\\u1B82\\u1BA1\\u1BA6\\u1BA7\\u1BAA\\u1C24-\\u1C2B\\u1C34\\u1C35\\u1CE1\\u1CF2\\uA823\\uA824\\uA827\\uA880\\uA881\\uA8B4-\\uA8C3\\uA952\\uA953\\uA983\\uA9B4\\uA9B5\\uA9BA\\uA9BB\\uA9BD-\\uA9C0\\uAA2F\\uAA30\\uAA33\\uAA34\\uAA4D\\uAA7B\\uABE3\\uABE4\\uABE6\\uABE7\\uABE9\\uABEA\\uABEC]"), + connector_punctuation: new RegExp("[\\u005F\\u203F\\u2040\\u2054\\uFE33\\uFE34\\uFE4D-\\uFE4F\\uFF3F]") +}; + +function is_letter(code) { + return (code >= 97 && code <= 122) + || (code >= 65 && code <= 90) + || (code >= 0xaa && UNICODE.letter.test(String.fromCharCode(code))); +}; + +function is_digit(code) { + return code >= 48 && code <= 57; //XXX: find out if "UnicodeDigit" means something else than 0..9 +}; + +function is_alphanumeric_char(code) { + return is_digit(code) || is_letter(code); +}; + +function is_unicode_combining_mark(ch) { + return UNICODE.non_spacing_mark.test(ch) || UNICODE.space_combining_mark.test(ch); +}; + +function is_unicode_connector_punctuation(ch) { + return UNICODE.connector_punctuation.test(ch); +}; + +function is_identifier(name) { + return !RESERVED_WORDS(name) && /^[a-z_$][a-z0-9_$]*$/i.test(name); +}; + +function is_identifier_start(code) { + return code == 36 || code == 95 || is_letter(code); +}; + +function is_identifier_char(ch) { + var code = ch.charCodeAt(0); + return is_identifier_start(code) + || is_digit(code) + || code == 8204 // \u200c: zero-width non-joiner + || code == 8205 // \u200d: zero-width joiner (in my ECMA-262 PDF, this is also 200c) + || is_unicode_combining_mark(ch) + || is_unicode_connector_punctuation(ch) + ; +}; + +function is_identifier_string(str){ + return /^[a-z_$][a-z0-9_$]*$/i.test(str); +}; + +function parse_js_number(num) { + if (RE_HEX_NUMBER.test(num)) { + return parseInt(num.substr(2), 16); + } else if (RE_OCT_NUMBER.test(num)) { + return parseInt(num.substr(1), 8); + } else if (RE_DEC_NUMBER.test(num)) { + return parseFloat(num); + } +}; + +function JS_Parse_Error(message, line, col, pos) { + this.message = message; + this.line = line; + this.col = col; + this.pos = pos; + this.stack = new Error().stack; +}; + +JS_Parse_Error.prototype.toString = function() { + return this.message + " (line: " + this.line + ", col: " + this.col + ", pos: " + this.pos + ")" + "\n\n" + this.stack; +}; + +function js_error(message, filename, line, col, pos) { + throw new JS_Parse_Error(message, line, col, pos); +}; + +function is_token(token, type, val) { + return token.type == type && (val == null || token.value == val); +}; + +var EX_EOF = {}; + +function tokenizer($TEXT, filename, html5_comments) { + + var S = { + text : $TEXT.replace(/\r\n?|[\n\u2028\u2029]/g, "\n").replace(/\uFEFF/g, ''), + filename : filename, + pos : 0, + tokpos : 0, + line : 1, + tokline : 0, + col : 0, + tokcol : 0, + newline_before : false, + regex_allowed : false, + comments_before : [] + }; + + function peek() { return S.text.charAt(S.pos); }; + + function next(signal_eof, in_string) { + var ch = S.text.charAt(S.pos++); + if (signal_eof && !ch) + throw EX_EOF; + if (ch == "\n") { + S.newline_before = S.newline_before || !in_string; + ++S.line; + S.col = 0; + } else { + ++S.col; + } + return ch; + }; + + function forward(i) { + while (i-- > 0) next(); + }; + + function looking_at(str) { + return S.text.substr(S.pos, str.length) == str; + }; + + function find(what, signal_eof) { + var pos = S.text.indexOf(what, S.pos); + if (signal_eof && pos == -1) throw EX_EOF; + return pos; + }; + + function start_token() { + S.tokline = S.line; + S.tokcol = S.col; + S.tokpos = S.pos; + }; + + var prev_was_dot = false; + function token(type, value, is_comment) { + S.regex_allowed = ((type == "operator" && !UNARY_POSTFIX(value)) || + (type == "keyword" && KEYWORDS_BEFORE_EXPRESSION(value)) || + (type == "punc" && PUNC_BEFORE_EXPRESSION(value))); + prev_was_dot = (type == "punc" && value == "."); + var ret = { + type : type, + value : value, + line : S.tokline, + col : S.tokcol, + pos : S.tokpos, + endpos : S.pos, + nlb : S.newline_before, + file : filename + }; + if (!is_comment) { + ret.comments_before = S.comments_before; + S.comments_before = []; + // make note of any newlines in the comments that came before + for (var i = 0, len = ret.comments_before.length; i < len; i++) { + ret.nlb = ret.nlb || ret.comments_before[i].nlb; + } + } + S.newline_before = false; + return new AST_Token(ret); + }; + + function skip_whitespace() { + while (WHITESPACE_CHARS(peek())) + next(); + }; + + function read_while(pred) { + var ret = "", ch, i = 0; + while ((ch = peek()) && pred(ch, i++)) + ret += next(); + return ret; + }; + + function parse_error(err) { + js_error(err, filename, S.tokline, S.tokcol, S.tokpos); + }; + + function read_num(prefix) { + var has_e = false, after_e = false, has_x = false, has_dot = prefix == "."; + var num = read_while(function(ch, i){ + var code = ch.charCodeAt(0); + switch (code) { + case 120: case 88: // xX + return has_x ? false : (has_x = true); + case 101: case 69: // eE + return has_x ? true : has_e ? false : (has_e = after_e = true); + case 45: // - + return after_e || (i == 0 && !prefix); + case 43: // + + return after_e; + case (after_e = false, 46): // . + return (!has_dot && !has_x && !has_e) ? (has_dot = true) : false; + } + return is_alphanumeric_char(code); + }); + if (prefix) num = prefix + num; + var valid = parse_js_number(num); + if (!isNaN(valid)) { + return token("num", valid); + } else { + parse_error("Invalid syntax: " + num); + } + }; + + function read_escaped_char(in_string) { + var ch = next(true, in_string); + switch (ch.charCodeAt(0)) { + case 110 : return "\n"; + case 114 : return "\r"; + case 116 : return "\t"; + case 98 : return "\b"; + case 118 : return "\u000b"; // \v + case 102 : return "\f"; + case 48 : return "\0"; + case 120 : return String.fromCharCode(hex_bytes(2)); // \x + case 117 : return String.fromCharCode(hex_bytes(4)); // \u + case 10 : return ""; // newline + default : return ch; + } + }; + + function hex_bytes(n) { + var num = 0; + for (; n > 0; --n) { + var digit = parseInt(next(true), 16); + if (isNaN(digit)) + parse_error("Invalid hex-character pattern in string"); + num = (num << 4) | digit; + } + return num; + }; + + var read_string = with_eof_error("Unterminated string constant", function(){ + var quote = next(), ret = ""; + for (;;) { + var ch = next(true); + if (ch == "\\") { + // read OctalEscapeSequence (XXX: deprecated if "strict mode") + // https://github.com/mishoo/UglifyJS/issues/178 + var octal_len = 0, first = null; + ch = read_while(function(ch){ + if (ch >= "0" && ch <= "7") { + if (!first) { + first = ch; + return ++octal_len; + } + else if (first <= "3" && octal_len <= 2) return ++octal_len; + else if (first >= "4" && octal_len <= 1) return ++octal_len; + } + return false; + }); + if (octal_len > 0) ch = String.fromCharCode(parseInt(ch, 8)); + else ch = read_escaped_char(true); + } + else if (ch == quote) break; + ret += ch; + } + return token("string", ret); + }); + + function skip_line_comment(type) { + var regex_allowed = S.regex_allowed; + var i = find("\n"), ret; + if (i == -1) { + ret = S.text.substr(S.pos); + S.pos = S.text.length; + } else { + ret = S.text.substring(S.pos, i); + S.pos = i; + } + S.comments_before.push(token(type, ret, true)); + S.regex_allowed = regex_allowed; + return next_token(); + }; + + var skip_multiline_comment = with_eof_error("Unterminated multiline comment", function(){ + var regex_allowed = S.regex_allowed; + var i = find("*/", true); + var text = S.text.substring(S.pos, i); + var a = text.split("\n"), n = a.length; + // update stream position + S.pos = i + 2; + S.line += n - 1; + if (n > 1) S.col = a[n - 1].length; + else S.col += a[n - 1].length; + S.col += 2; + var nlb = S.newline_before = S.newline_before || text.indexOf("\n") >= 0; + S.comments_before.push(token("comment2", text, true)); + S.regex_allowed = regex_allowed; + S.newline_before = nlb; + return next_token(); + }); + + function read_name() { + var backslash = false, name = "", ch, escaped = false, hex; + while ((ch = peek()) != null) { + if (!backslash) { + if (ch == "\\") escaped = backslash = true, next(); + else if (is_identifier_char(ch)) name += next(); + else break; + } + else { + if (ch != "u") parse_error("Expecting UnicodeEscapeSequence -- uXXXX"); + ch = read_escaped_char(); + if (!is_identifier_char(ch)) parse_error("Unicode char: " + ch.charCodeAt(0) + " is not valid in identifier"); + name += ch; + backslash = false; + } + } + if (KEYWORDS(name) && escaped) { + hex = name.charCodeAt(0).toString(16).toUpperCase(); + name = "\\u" + "0000".substr(hex.length) + hex + name.slice(1); + } + return name; + }; + + var read_regexp = with_eof_error("Unterminated regular expression", function(regexp){ + var prev_backslash = false, ch, in_class = false; + while ((ch = next(true))) if (prev_backslash) { + regexp += "\\" + ch; + prev_backslash = false; + } else if (ch == "[") { + in_class = true; + regexp += ch; + } else if (ch == "]" && in_class) { + in_class = false; + regexp += ch; + } else if (ch == "/" && !in_class) { + break; + } else if (ch == "\\") { + prev_backslash = true; + } else { + regexp += ch; + } + var mods = read_name(); + return token("regexp", new RegExp(regexp, mods)); + }); + + function read_operator(prefix) { + function grow(op) { + if (!peek()) return op; + var bigger = op + peek(); + if (OPERATORS(bigger)) { + next(); + return grow(bigger); + } else { + return op; + } + }; + return token("operator", grow(prefix || next())); + }; + + function handle_slash() { + next(); + switch (peek()) { + case "/": + next(); + return skip_line_comment("comment1"); + case "*": + next(); + return skip_multiline_comment(); + } + return S.regex_allowed ? read_regexp("") : read_operator("/"); + }; + + function handle_dot() { + next(); + return is_digit(peek().charCodeAt(0)) + ? read_num(".") + : token("punc", "."); + }; + + function read_word() { + var word = read_name(); + if (prev_was_dot) return token("name", word); + return KEYWORDS_ATOM(word) ? token("atom", word) + : !KEYWORDS(word) ? token("name", word) + : OPERATORS(word) ? token("operator", word) + : token("keyword", word); + }; + + function with_eof_error(eof_error, cont) { + return function(x) { + try { + return cont(x); + } catch(ex) { + if (ex === EX_EOF) parse_error(eof_error); + else throw ex; + } + }; + }; + + function next_token(force_regexp) { + if (force_regexp != null) + return read_regexp(force_regexp); + skip_whitespace(); + start_token(); + if (html5_comments) { + if (looking_at("") && S.newline_before) { + forward(3); + return skip_line_comment("comment4"); + } + } + var ch = peek(); + if (!ch) return token("eof"); + var code = ch.charCodeAt(0); + switch (code) { + case 34: case 39: return read_string(); + case 46: return handle_dot(); + case 47: return handle_slash(); + } + if (is_digit(code)) return read_num(); + if (PUNC_CHARS(ch)) return token("punc", next()); + if (OPERATOR_CHARS(ch)) return read_operator(); + if (code == 92 || is_identifier_start(code)) return read_word(); + parse_error("Unexpected character '" + ch + "'"); + }; + + next_token.context = function(nc) { + if (nc) S = nc; + return S; + }; + + return next_token; + +}; + +/* -----[ Parser (constants) ]----- */ + +var UNARY_PREFIX = makePredicate([ + "typeof", + "void", + "delete", + "--", + "++", + "!", + "~", + "-", + "+" +]); + +var UNARY_POSTFIX = makePredicate([ "--", "++" ]); + +var ASSIGNMENT = makePredicate([ "=", "+=", "-=", "/=", "*=", "%=", ">>=", "<<=", ">>>=", "|=", "^=", "&=" ]); + +var PRECEDENCE = (function(a, ret){ + for (var i = 0; i < a.length; ++i) { + var b = a[i]; + for (var j = 0; j < b.length; ++j) { + ret[b[j]] = i + 1; + } + } + return ret; +})( + [ + ["||"], + ["&&"], + ["|"], + ["^"], + ["&"], + ["==", "===", "!=", "!=="], + ["<", ">", "<=", ">=", "in", "instanceof"], + [">>", "<<", ">>>"], + ["+", "-"], + ["*", "/", "%"] + ], + {} +); + +var STATEMENTS_WITH_LABELS = array_to_hash([ "for", "do", "while", "switch" ]); + +var ATOMIC_START_TOKEN = array_to_hash([ "atom", "num", "string", "regexp", "name" ]); + +/* -----[ Parser ]----- */ + +function parse($TEXT, options) { + + options = defaults(options, { + strict : false, + filename : null, + toplevel : null, + expression : false, + html5_comments : true, + bare_returns : false, + }); + + var S = { + input : (typeof $TEXT == "string" + ? tokenizer($TEXT, options.filename, + options.html5_comments) + : $TEXT), + token : null, + prev : null, + peeked : null, + in_function : 0, + in_directives : true, + in_loop : 0, + labels : [] + }; + + S.token = next(); + + function is(type, value) { + return is_token(S.token, type, value); + }; + + function peek() { return S.peeked || (S.peeked = S.input()); }; + + function next() { + S.prev = S.token; + if (S.peeked) { + S.token = S.peeked; + S.peeked = null; + } else { + S.token = S.input(); + } + S.in_directives = S.in_directives && ( + S.token.type == "string" || is("punc", ";") + ); + return S.token; + }; + + function prev() { + return S.prev; + }; + + function croak(msg, line, col, pos) { + var ctx = S.input.context(); + js_error(msg, + ctx.filename, + line != null ? line : ctx.tokline, + col != null ? col : ctx.tokcol, + pos != null ? pos : ctx.tokpos); + }; + + function token_error(token, msg) { + croak(msg, token.line, token.col); + }; + + function unexpected(token) { + if (token == null) + token = S.token; + token_error(token, "Unexpected token: " + token.type + " (" + token.value + ")"); + }; + + function expect_token(type, val) { + if (is(type, val)) { + return next(); + } + token_error(S.token, "Unexpected token " + S.token.type + " «" + S.token.value + "»" + ", expected " + type + " «" + val + "»"); + }; + + function expect(punc) { return expect_token("punc", punc); }; + + function can_insert_semicolon() { + return !options.strict && ( + S.token.nlb || is("eof") || is("punc", "}") + ); + }; + + function semicolon() { + if (is("punc", ";")) next(); + else if (!can_insert_semicolon()) unexpected(); + }; + + function parenthesised() { + expect("("); + var exp = expression(true); + expect(")"); + return exp; + }; + + function embed_tokens(parser) { + return function() { + var start = S.token; + var expr = parser(); + var end = prev(); + expr.start = start; + expr.end = end; + return expr; + }; + }; + + function handle_regexp() { + if (is("operator", "/") || is("operator", "/=")) { + S.peeked = null; + S.token = S.input(S.token.value.substr(1)); // force regexp + } + }; + + var statement = embed_tokens(function() { + var tmp; + handle_regexp(); + switch (S.token.type) { + case "string": + var dir = S.in_directives, stat = simple_statement(); + // XXXv2: decide how to fix directives + if (dir && stat.body instanceof AST_String && !is("punc", ",")) + return new AST_Directive({ value: stat.body.value }); + return stat; + case "num": + case "regexp": + case "operator": + case "atom": + return simple_statement(); + + case "name": + return is_token(peek(), "punc", ":") + ? labeled_statement() + : simple_statement(); + + case "punc": + switch (S.token.value) { + case "{": + return new AST_BlockStatement({ + start : S.token, + body : block_(), + end : prev() + }); + case "[": + case "(": + return simple_statement(); + case ";": + next(); + return new AST_EmptyStatement(); + default: + unexpected(); + } + + case "keyword": + switch (tmp = S.token.value, next(), tmp) { + case "break": + return break_cont(AST_Break); + + case "continue": + return break_cont(AST_Continue); + + case "debugger": + semicolon(); + return new AST_Debugger(); + + case "do": + return new AST_Do({ + body : in_loop(statement), + condition : (expect_token("keyword", "while"), tmp = parenthesised(), semicolon(), tmp) + }); + + case "while": + return new AST_While({ + condition : parenthesised(), + body : in_loop(statement) + }); + + case "for": + return for_(); + + case "function": + return function_(AST_Defun); + + case "if": + return if_(); + + case "return": + if (S.in_function == 0 && !options.bare_returns) + croak("'return' outside of function"); + return new AST_Return({ + value: ( is("punc", ";") + ? (next(), null) + : can_insert_semicolon() + ? null + : (tmp = expression(true), semicolon(), tmp) ) + }); + + case "switch": + return new AST_Switch({ + expression : parenthesised(), + body : in_loop(switch_body_) + }); + + case "throw": + if (S.token.nlb) + croak("Illegal newline after 'throw'"); + return new AST_Throw({ + value: (tmp = expression(true), semicolon(), tmp) + }); + + case "try": + return try_(); + + case "var": + return tmp = var_(), semicolon(), tmp; + + case "const": + return tmp = const_(), semicolon(), tmp; + + case "with": + return new AST_With({ + expression : parenthesised(), + body : statement() + }); + + default: + unexpected(); + } + } + }); + + function labeled_statement() { + var label = as_symbol(AST_Label); + if (find_if(function(l){ return l.name == label.name }, S.labels)) { + // ECMA-262, 12.12: An ECMAScript program is considered + // syntactically incorrect if it contains a + // LabelledStatement that is enclosed by a + // LabelledStatement with the same Identifier as label. + croak("Label " + label.name + " defined twice"); + } + expect(":"); + S.labels.push(label); + var stat = statement(); + S.labels.pop(); + if (!(stat instanceof AST_IterationStatement)) { + // check for `continue` that refers to this label. + // those should be reported as syntax errors. + // https://github.com/mishoo/UglifyJS2/issues/287 + label.references.forEach(function(ref){ + if (ref instanceof AST_Continue) { + ref = ref.label.start; + croak("Continue label `" + label.name + "` refers to non-IterationStatement.", + ref.line, ref.col, ref.pos); + } + }); + } + return new AST_LabeledStatement({ body: stat, label: label }); + }; + + function simple_statement(tmp) { + return new AST_SimpleStatement({ body: (tmp = expression(true), semicolon(), tmp) }); + }; + + function break_cont(type) { + var label = null, ldef; + if (!can_insert_semicolon()) { + label = as_symbol(AST_LabelRef, true); + } + if (label != null) { + ldef = find_if(function(l){ return l.name == label.name }, S.labels); + if (!ldef) + croak("Undefined label " + label.name); + label.thedef = ldef; + } + else if (S.in_loop == 0) + croak(type.TYPE + " not inside a loop or switch"); + semicolon(); + var stat = new type({ label: label }); + if (ldef) ldef.references.push(stat); + return stat; + }; + + function for_() { + expect("("); + var init = null; + if (!is("punc", ";")) { + init = is("keyword", "var") + ? (next(), var_(true)) + : expression(true, true); + if (is("operator", "in")) { + if (init instanceof AST_Var && init.definitions.length > 1) + croak("Only one variable declaration allowed in for..in loop"); + next(); + return for_in(init); + } + } + return regular_for(init); + }; + + function regular_for(init) { + expect(";"); + var test = is("punc", ";") ? null : expression(true); + expect(";"); + var step = is("punc", ")") ? null : expression(true); + expect(")"); + return new AST_For({ + init : init, + condition : test, + step : step, + body : in_loop(statement) + }); + }; + + function for_in(init) { + var lhs = init instanceof AST_Var ? init.definitions[0].name : null; + var obj = expression(true); + expect(")"); + return new AST_ForIn({ + init : init, + name : lhs, + object : obj, + body : in_loop(statement) + }); + }; + + var function_ = function(ctor) { + var in_statement = ctor === AST_Defun; + var name = is("name") ? as_symbol(in_statement ? AST_SymbolDefun : AST_SymbolLambda) : null; + if (in_statement && !name) + unexpected(); + expect("("); + return new ctor({ + name: name, + argnames: (function(first, a){ + while (!is("punc", ")")) { + if (first) first = false; else expect(","); + a.push(as_symbol(AST_SymbolFunarg)); + } + next(); + return a; + })(true, []), + body: (function(loop, labels){ + ++S.in_function; + S.in_directives = true; + S.in_loop = 0; + S.labels = []; + var a = block_(); + --S.in_function; + S.in_loop = loop; + S.labels = labels; + return a; + })(S.in_loop, S.labels) + }); + }; + + function if_() { + var cond = parenthesised(), body = statement(), belse = null; + if (is("keyword", "else")) { + next(); + belse = statement(); + } + return new AST_If({ + condition : cond, + body : body, + alternative : belse + }); + }; + + function block_() { + expect("{"); + var a = []; + while (!is("punc", "}")) { + if (is("eof")) unexpected(); + a.push(statement()); + } + next(); + return a; + }; + + function switch_body_() { + expect("{"); + var a = [], cur = null, branch = null, tmp; + while (!is("punc", "}")) { + if (is("eof")) unexpected(); + if (is("keyword", "case")) { + if (branch) branch.end = prev(); + cur = []; + branch = new AST_Case({ + start : (tmp = S.token, next(), tmp), + expression : expression(true), + body : cur + }); + a.push(branch); + expect(":"); + } + else if (is("keyword", "default")) { + if (branch) branch.end = prev(); + cur = []; + branch = new AST_Default({ + start : (tmp = S.token, next(), expect(":"), tmp), + body : cur + }); + a.push(branch); + } + else { + if (!cur) unexpected(); + cur.push(statement()); + } + } + if (branch) branch.end = prev(); + next(); + return a; + }; + + function try_() { + var body = block_(), bcatch = null, bfinally = null; + if (is("keyword", "catch")) { + var start = S.token; + next(); + expect("("); + var name = as_symbol(AST_SymbolCatch); + expect(")"); + bcatch = new AST_Catch({ + start : start, + argname : name, + body : block_(), + end : prev() + }); + } + if (is("keyword", "finally")) { + var start = S.token; + next(); + bfinally = new AST_Finally({ + start : start, + body : block_(), + end : prev() + }); + } + if (!bcatch && !bfinally) + croak("Missing catch/finally blocks"); + return new AST_Try({ + body : body, + bcatch : bcatch, + bfinally : bfinally + }); + }; + + function vardefs(no_in, in_const) { + var a = []; + for (;;) { + a.push(new AST_VarDef({ + start : S.token, + name : as_symbol(in_const ? AST_SymbolConst : AST_SymbolVar), + value : is("operator", "=") ? (next(), expression(false, no_in)) : null, + end : prev() + })); + if (!is("punc", ",")) + break; + next(); + } + return a; + }; + + var var_ = function(no_in) { + return new AST_Var({ + start : prev(), + definitions : vardefs(no_in, false), + end : prev() + }); + }; + + var const_ = function() { + return new AST_Const({ + start : prev(), + definitions : vardefs(false, true), + end : prev() + }); + }; + + var new_ = function() { + var start = S.token; + expect_token("operator", "new"); + var newexp = expr_atom(false), args; + if (is("punc", "(")) { + next(); + args = expr_list(")"); + } else { + args = []; + } + return subscripts(new AST_New({ + start : start, + expression : newexp, + args : args, + end : prev() + }), true); + }; + + function as_atom_node() { + var tok = S.token, ret; + switch (tok.type) { + case "name": + case "keyword": + ret = _make_symbol(AST_SymbolRef); + break; + case "num": + ret = new AST_Number({ start: tok, end: tok, value: tok.value }); + break; + case "string": + ret = new AST_String({ start: tok, end: tok, value: tok.value }); + break; + case "regexp": + ret = new AST_RegExp({ start: tok, end: tok, value: tok.value }); + break; + case "atom": + switch (tok.value) { + case "false": + ret = new AST_False({ start: tok, end: tok }); + break; + case "true": + ret = new AST_True({ start: tok, end: tok }); + break; + case "null": + ret = new AST_Null({ start: tok, end: tok }); + break; + } + break; + } + next(); + return ret; + }; + + var expr_atom = function(allow_calls) { + if (is("operator", "new")) { + return new_(); + } + var start = S.token; + if (is("punc")) { + switch (start.value) { + case "(": + next(); + var ex = expression(true); + ex.start = start; + ex.end = S.token; + expect(")"); + return subscripts(ex, allow_calls); + case "[": + return subscripts(array_(), allow_calls); + case "{": + return subscripts(object_(), allow_calls); + } + unexpected(); + } + if (is("keyword", "function")) { + next(); + var func = function_(AST_Function); + func.start = start; + func.end = prev(); + return subscripts(func, allow_calls); + } + if (ATOMIC_START_TOKEN[S.token.type]) { + return subscripts(as_atom_node(), allow_calls); + } + unexpected(); + }; + + function expr_list(closing, allow_trailing_comma, allow_empty) { + var first = true, a = []; + while (!is("punc", closing)) { + if (first) first = false; else expect(","); + if (allow_trailing_comma && is("punc", closing)) break; + if (is("punc", ",") && allow_empty) { + a.push(new AST_Hole({ start: S.token, end: S.token })); + } else { + a.push(expression(false)); + } + } + next(); + return a; + }; + + var array_ = embed_tokens(function() { + expect("["); + return new AST_Array({ + elements: expr_list("]", !options.strict, true) + }); + }); + + var object_ = embed_tokens(function() { + expect("{"); + var first = true, a = []; + while (!is("punc", "}")) { + if (first) first = false; else expect(","); + if (!options.strict && is("punc", "}")) + // allow trailing comma + break; + var start = S.token; + var type = start.type; + var name = as_property_name(); + if (type == "name" && !is("punc", ":")) { + if (name == "get") { + a.push(new AST_ObjectGetter({ + start : start, + key : as_atom_node(), + value : function_(AST_Accessor), + end : prev() + })); + continue; + } + if (name == "set") { + a.push(new AST_ObjectSetter({ + start : start, + key : as_atom_node(), + value : function_(AST_Accessor), + end : prev() + })); + continue; + } + } + expect(":"); + a.push(new AST_ObjectKeyVal({ + start : start, + key : name, + value : expression(false), + end : prev() + })); + } + next(); + return new AST_Object({ properties: a }); + }); + + function as_property_name() { + var tmp = S.token; + next(); + switch (tmp.type) { + case "num": + case "string": + case "name": + case "operator": + case "keyword": + case "atom": + return tmp.value; + default: + unexpected(); + } + }; + + function as_name() { + var tmp = S.token; + next(); + switch (tmp.type) { + case "name": + case "operator": + case "keyword": + case "atom": + return tmp.value; + default: + unexpected(); + } + }; + + function _make_symbol(type) { + var name = S.token.value; + return new (name == "this" ? AST_This : type)({ + name : String(name), + start : S.token, + end : S.token + }); + }; + + function as_symbol(type, noerror) { + if (!is("name")) { + if (!noerror) croak("Name expected"); + return null; + } + var sym = _make_symbol(type); + next(); + return sym; + }; + + var subscripts = function(expr, allow_calls) { + var start = expr.start; + if (is("punc", ".")) { + next(); + return subscripts(new AST_Dot({ + start : start, + expression : expr, + property : as_name(), + end : prev() + }), allow_calls); + } + if (is("punc", "[")) { + next(); + var prop = expression(true); + expect("]"); + return subscripts(new AST_Sub({ + start : start, + expression : expr, + property : prop, + end : prev() + }), allow_calls); + } + if (allow_calls && is("punc", "(")) { + next(); + return subscripts(new AST_Call({ + start : start, + expression : expr, + args : expr_list(")"), + end : prev() + }), true); + } + return expr; + }; + + var maybe_unary = function(allow_calls) { + var start = S.token; + if (is("operator") && UNARY_PREFIX(start.value)) { + next(); + handle_regexp(); + var ex = make_unary(AST_UnaryPrefix, start.value, maybe_unary(allow_calls)); + ex.start = start; + ex.end = prev(); + return ex; + } + var val = expr_atom(allow_calls); + while (is("operator") && UNARY_POSTFIX(S.token.value) && !S.token.nlb) { + val = make_unary(AST_UnaryPostfix, S.token.value, val); + val.start = start; + val.end = S.token; + next(); + } + return val; + }; + + function make_unary(ctor, op, expr) { + if ((op == "++" || op == "--") && !is_assignable(expr)) + croak("Invalid use of " + op + " operator"); + return new ctor({ operator: op, expression: expr }); + }; + + var expr_op = function(left, min_prec, no_in) { + var op = is("operator") ? S.token.value : null; + if (op == "in" && no_in) op = null; + var prec = op != null ? PRECEDENCE[op] : null; + if (prec != null && prec > min_prec) { + next(); + var right = expr_op(maybe_unary(true), prec, no_in); + return expr_op(new AST_Binary({ + start : left.start, + left : left, + operator : op, + right : right, + end : right.end + }), min_prec, no_in); + } + return left; + }; + + function expr_ops(no_in) { + return expr_op(maybe_unary(true), 0, no_in); + }; + + var maybe_conditional = function(no_in) { + var start = S.token; + var expr = expr_ops(no_in); + if (is("operator", "?")) { + next(); + var yes = expression(false); + expect(":"); + return new AST_Conditional({ + start : start, + condition : expr, + consequent : yes, + alternative : expression(false, no_in), + end : prev() + }); + } + return expr; + }; + + function is_assignable(expr) { + if (!options.strict) return true; + if (expr instanceof AST_This) return false; + return (expr instanceof AST_PropAccess || expr instanceof AST_Symbol); + }; + + var maybe_assign = function(no_in) { + var start = S.token; + var left = maybe_conditional(no_in), val = S.token.value; + if (is("operator") && ASSIGNMENT(val)) { + if (is_assignable(left)) { + next(); + return new AST_Assign({ + start : start, + left : left, + operator : val, + right : maybe_assign(no_in), + end : prev() + }); + } + croak("Invalid assignment"); + } + return left; + }; + + var expression = function(commas, no_in) { + var start = S.token; + var expr = maybe_assign(no_in); + if (commas && is("punc", ",")) { + next(); + return new AST_Seq({ + start : start, + car : expr, + cdr : expression(true, no_in), + end : peek() + }); + } + return expr; + }; + + function in_loop(cont) { + ++S.in_loop; + var ret = cont(); + --S.in_loop; + return ret; + }; + + if (options.expression) { + return expression(true); + } + + return (function(){ + var start = S.token; + var body = []; + while (!is("eof")) + body.push(statement()); + var end = prev(); + var toplevel = options.toplevel; + if (toplevel) { + toplevel.body = toplevel.body.concat(body); + toplevel.end = end; + } else { + toplevel = new AST_Toplevel({ start: start, body: body, end: end }); + } + return toplevel; + })(); + +}; + +/*********************************************************************** + + A JavaScript tokenizer / parser / beautifier / compressor. + https://github.com/mishoo/UglifyJS2 + + -------------------------------- (C) --------------------------------- + + Author: Mihai Bazon + + http://mihai.bazon.net/blog + + Distributed under the BSD license: + + Copyright 2012 (c) Mihai Bazon + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + * Redistributions of source code must retain the above + copyright notice, this list of conditions and the following + disclaimer. + + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials + provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER “AS IS” AND ANY + EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE + LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, + OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR + TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF + THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + SUCH DAMAGE. + + ***********************************************************************/ + +"use strict"; + +// Tree transformer helpers. + +function TreeTransformer(before, after) { + TreeWalker.call(this); + this.before = before; + this.after = after; +} +TreeTransformer.prototype = new TreeWalker; + +(function(undefined){ + + function _(node, descend) { + node.DEFMETHOD("transform", function(tw, in_list){ + var x, y; + tw.push(this); + if (tw.before) x = tw.before(this, descend, in_list); + if (x === undefined) { + if (!tw.after) { + x = this; + descend(x, tw); + } else { + tw.stack[tw.stack.length - 1] = x = this.clone(); + descend(x, tw); + y = tw.after(x, in_list); + if (y !== undefined) x = y; + } + } + tw.pop(); + return x; + }); + }; + + function do_list(list, tw) { + return MAP(list, function(node){ + return node.transform(tw, true); + }); + }; + + _(AST_Node, noop); + + _(AST_LabeledStatement, function(self, tw){ + self.label = self.label.transform(tw); + self.body = self.body.transform(tw); + }); + + _(AST_SimpleStatement, function(self, tw){ + self.body = self.body.transform(tw); + }); + + _(AST_Block, function(self, tw){ + self.body = do_list(self.body, tw); + }); + + _(AST_DWLoop, function(self, tw){ + self.condition = self.condition.transform(tw); + self.body = self.body.transform(tw); + }); + + _(AST_For, function(self, tw){ + if (self.init) self.init = self.init.transform(tw); + if (self.condition) self.condition = self.condition.transform(tw); + if (self.step) self.step = self.step.transform(tw); + self.body = self.body.transform(tw); + }); + + _(AST_ForIn, function(self, tw){ + self.init = self.init.transform(tw); + self.object = self.object.transform(tw); + self.body = self.body.transform(tw); + }); + + _(AST_With, function(self, tw){ + self.expression = self.expression.transform(tw); + self.body = self.body.transform(tw); + }); + + _(AST_Exit, function(self, tw){ + if (self.value) self.value = self.value.transform(tw); + }); + + _(AST_LoopControl, function(self, tw){ + if (self.label) self.label = self.label.transform(tw); + }); + + _(AST_If, function(self, tw){ + self.condition = self.condition.transform(tw); + self.body = self.body.transform(tw); + if (self.alternative) self.alternative = self.alternative.transform(tw); + }); + + _(AST_Switch, function(self, tw){ + self.expression = self.expression.transform(tw); + self.body = do_list(self.body, tw); + }); + + _(AST_Case, function(self, tw){ + self.expression = self.expression.transform(tw); + self.body = do_list(self.body, tw); + }); + + _(AST_Try, function(self, tw){ + self.body = do_list(self.body, tw); + if (self.bcatch) self.bcatch = self.bcatch.transform(tw); + if (self.bfinally) self.bfinally = self.bfinally.transform(tw); + }); + + _(AST_Catch, function(self, tw){ + self.argname = self.argname.transform(tw); + self.body = do_list(self.body, tw); + }); + + _(AST_Definitions, function(self, tw){ + self.definitions = do_list(self.definitions, tw); + }); + + _(AST_VarDef, function(self, tw){ + self.name = self.name.transform(tw); + if (self.value) self.value = self.value.transform(tw); + }); + + _(AST_Lambda, function(self, tw){ + if (self.name) self.name = self.name.transform(tw); + self.argnames = do_list(self.argnames, tw); + self.body = do_list(self.body, tw); + }); + + _(AST_Call, function(self, tw){ + self.expression = self.expression.transform(tw); + self.args = do_list(self.args, tw); + }); + + _(AST_Seq, function(self, tw){ + self.car = self.car.transform(tw); + self.cdr = self.cdr.transform(tw); + }); + + _(AST_Dot, function(self, tw){ + self.expression = self.expression.transform(tw); + }); + + _(AST_Sub, function(self, tw){ + self.expression = self.expression.transform(tw); + self.property = self.property.transform(tw); + }); + + _(AST_Unary, function(self, tw){ + self.expression = self.expression.transform(tw); + }); + + _(AST_Binary, function(self, tw){ + self.left = self.left.transform(tw); + self.right = self.right.transform(tw); + }); + + _(AST_Conditional, function(self, tw){ + self.condition = self.condition.transform(tw); + self.consequent = self.consequent.transform(tw); + self.alternative = self.alternative.transform(tw); + }); + + _(AST_Array, function(self, tw){ + self.elements = do_list(self.elements, tw); + }); + + _(AST_Object, function(self, tw){ + self.properties = do_list(self.properties, tw); + }); + + _(AST_ObjectProperty, function(self, tw){ + self.value = self.value.transform(tw); + }); + +})(); + +/*********************************************************************** + + A JavaScript tokenizer / parser / beautifier / compressor. + https://github.com/mishoo/UglifyJS2 + + -------------------------------- (C) --------------------------------- + + Author: Mihai Bazon + + http://mihai.bazon.net/blog + + Distributed under the BSD license: + + Copyright 2012 (c) Mihai Bazon + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + * Redistributions of source code must retain the above + copyright notice, this list of conditions and the following + disclaimer. + + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials + provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER “AS IS” AND ANY + EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE + LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, + OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR + TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF + THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + SUCH DAMAGE. + + ***********************************************************************/ + +"use strict"; + +function SymbolDef(scope, index, orig) { + this.name = orig.name; + this.orig = [ orig ]; + this.scope = scope; + this.references = []; + this.global = false; + this.mangled_name = null; + this.undeclared = false; + this.constant = false; + this.index = index; +}; + +SymbolDef.prototype = { + unmangleable: function(options) { + return (this.global && !(options && options.toplevel)) + || this.undeclared + || (!(options && options.eval) && (this.scope.uses_eval || this.scope.uses_with)); + }, + mangle: function(options) { + if (!this.mangled_name && !this.unmangleable(options)) { + var s = this.scope; + if (!options.screw_ie8 && this.orig[0] instanceof AST_SymbolLambda) + s = s.parent_scope; + this.mangled_name = s.next_mangled(options, this); + } + } +}; + +AST_Toplevel.DEFMETHOD("figure_out_scope", function(options){ + options = defaults(options, { + screw_ie8: false + }); + + // pass 1: setup scope chaining and handle definitions + var self = this; + var scope = self.parent_scope = null; + var defun = null; + var nesting = 0; + var tw = new TreeWalker(function(node, descend){ + if (options.screw_ie8 && node instanceof AST_Catch) { + var save_scope = scope; + scope = new AST_Scope(node); + scope.init_scope_vars(nesting); + scope.parent_scope = save_scope; + descend(); + scope = save_scope; + return true; + } + if (node instanceof AST_Scope) { + node.init_scope_vars(nesting); + var save_scope = node.parent_scope = scope; + var save_defun = defun; + defun = scope = node; + ++nesting; descend(); --nesting; + scope = save_scope; + defun = save_defun; + return true; // don't descend again in TreeWalker + } + if (node instanceof AST_Directive) { + node.scope = scope; + push_uniq(scope.directives, node.value); + return true; + } + if (node instanceof AST_With) { + for (var s = scope; s; s = s.parent_scope) + s.uses_with = true; + return; + } + if (node instanceof AST_Symbol) { + node.scope = scope; + } + if (node instanceof AST_SymbolLambda) { + defun.def_function(node); + } + else if (node instanceof AST_SymbolDefun) { + // Careful here, the scope where this should be defined is + // the parent scope. The reason is that we enter a new + // scope when we encounter the AST_Defun node (which is + // instanceof AST_Scope) but we get to the symbol a bit + // later. + (node.scope = defun.parent_scope).def_function(node); + } + else if (node instanceof AST_SymbolVar + || node instanceof AST_SymbolConst) { + var def = defun.def_variable(node); + def.constant = node instanceof AST_SymbolConst; + def.init = tw.parent().value; + } + else if (node instanceof AST_SymbolCatch) { + (options.screw_ie8 ? scope : defun) + .def_variable(node); + } + }); + self.walk(tw); + + // pass 2: find back references and eval + var func = null; + var globals = self.globals = new Dictionary(); + var tw = new TreeWalker(function(node, descend){ + if (node instanceof AST_Lambda) { + var prev_func = func; + func = node; + descend(); + func = prev_func; + return true; + } + if (node instanceof AST_SymbolRef) { + var name = node.name; + var sym = node.scope.find_variable(name); + if (!sym) { + var g; + if (globals.has(name)) { + g = globals.get(name); + } else { + g = new SymbolDef(self, globals.size(), node); + g.undeclared = true; + g.global = true; + globals.set(name, g); + } + node.thedef = g; + if (name == "eval" && tw.parent() instanceof AST_Call) { + for (var s = node.scope; s && !s.uses_eval; s = s.parent_scope) + s.uses_eval = true; + } + if (func && name == "arguments") { + func.uses_arguments = true; + } + } else { + node.thedef = sym; + } + node.reference(); + return true; + } + }); + self.walk(tw); +}); + +AST_Scope.DEFMETHOD("init_scope_vars", function(nesting){ + this.directives = []; // contains the directives defined in this scope, i.e. "use strict" + this.variables = new Dictionary(); // map name to AST_SymbolVar (variables defined in this scope; includes functions) + this.functions = new Dictionary(); // map name to AST_SymbolDefun (functions defined in this scope) + this.uses_with = false; // will be set to true if this or some nested scope uses the `with` statement + this.uses_eval = false; // will be set to true if this or nested scope uses the global `eval` + this.parent_scope = null; // the parent scope + this.enclosed = []; // a list of variables from this or outer scope(s) that are referenced from this or inner scopes + this.cname = -1; // the current index for mangling functions/variables + this.nesting = nesting; // the nesting level of this scope (0 means toplevel) +}); + +AST_Scope.DEFMETHOD("strict", function(){ + return this.has_directive("use strict"); +}); + +AST_Lambda.DEFMETHOD("init_scope_vars", function(){ + AST_Scope.prototype.init_scope_vars.apply(this, arguments); + this.uses_arguments = false; +}); + +AST_SymbolRef.DEFMETHOD("reference", function() { + var def = this.definition(); + def.references.push(this); + var s = this.scope; + while (s) { + push_uniq(s.enclosed, def); + if (s === def.scope) break; + s = s.parent_scope; + } + this.frame = this.scope.nesting - def.scope.nesting; +}); + +AST_Scope.DEFMETHOD("find_variable", function(name){ + if (name instanceof AST_Symbol) name = name.name; + return this.variables.get(name) + || (this.parent_scope && this.parent_scope.find_variable(name)); +}); + +AST_Scope.DEFMETHOD("has_directive", function(value){ + return this.parent_scope && this.parent_scope.has_directive(value) + || (this.directives.indexOf(value) >= 0 ? this : null); +}); + +AST_Scope.DEFMETHOD("def_function", function(symbol){ + this.functions.set(symbol.name, this.def_variable(symbol)); +}); + +AST_Scope.DEFMETHOD("def_variable", function(symbol){ + var def; + if (!this.variables.has(symbol.name)) { + def = new SymbolDef(this, this.variables.size(), symbol); + this.variables.set(symbol.name, def); + def.global = !this.parent_scope; + } else { + def = this.variables.get(symbol.name); + def.orig.push(symbol); + } + return symbol.thedef = def; +}); + +AST_Scope.DEFMETHOD("next_mangled", function(options){ + var ext = this.enclosed; + out: while (true) { + var m = base54(++this.cname); + if (!is_identifier(m)) continue; // skip over "do" + + // https://github.com/mishoo/UglifyJS2/issues/242 -- do not + // shadow a name excepted from mangling. + if (options.except.indexOf(m) >= 0) continue; + + // we must ensure that the mangled name does not shadow a name + // from some parent scope that is referenced in this or in + // inner scopes. + for (var i = ext.length; --i >= 0;) { + var sym = ext[i]; + var name = sym.mangled_name || (sym.unmangleable(options) && sym.name); + if (m == name) continue out; + } + return m; + } +}); + +AST_Function.DEFMETHOD("next_mangled", function(options, def){ + // #179, #326 + // in Safari strict mode, something like (function x(x){...}) is a syntax error; + // a function expression's argument cannot shadow the function expression's name + + var tricky_def = def.orig[0] instanceof AST_SymbolFunarg && this.name && this.name.definition(); + while (true) { + var name = AST_Lambda.prototype.next_mangled.call(this, options, def); + if (!(tricky_def && tricky_def.mangled_name == name)) + return name; + } +}); + +AST_Scope.DEFMETHOD("references", function(sym){ + if (sym instanceof AST_Symbol) sym = sym.definition(); + return this.enclosed.indexOf(sym) < 0 ? null : sym; +}); + +AST_Symbol.DEFMETHOD("unmangleable", function(options){ + return this.definition().unmangleable(options); +}); + +// property accessors are not mangleable +AST_SymbolAccessor.DEFMETHOD("unmangleable", function(){ + return true; +}); + +// labels are always mangleable +AST_Label.DEFMETHOD("unmangleable", function(){ + return false; +}); + +AST_Symbol.DEFMETHOD("unreferenced", function(){ + return this.definition().references.length == 0 + && !(this.scope.uses_eval || this.scope.uses_with); +}); + +AST_Symbol.DEFMETHOD("undeclared", function(){ + return this.definition().undeclared; +}); + +AST_LabelRef.DEFMETHOD("undeclared", function(){ + return false; +}); + +AST_Label.DEFMETHOD("undeclared", function(){ + return false; +}); + +AST_Symbol.DEFMETHOD("definition", function(){ + return this.thedef; +}); + +AST_Symbol.DEFMETHOD("global", function(){ + return this.definition().global; +}); + +AST_Toplevel.DEFMETHOD("_default_mangler_options", function(options){ + return defaults(options, { + except : [], + eval : false, + sort : false, + toplevel : false, + screw_ie8 : false + }); +}); + +AST_Toplevel.DEFMETHOD("mangle_names", function(options){ + options = this._default_mangler_options(options); + // We only need to mangle declaration nodes. Special logic wired + // into the code generator will display the mangled name if it's + // present (and for AST_SymbolRef-s it'll use the mangled name of + // the AST_SymbolDeclaration that it points to). + var lname = -1; + var to_mangle = []; + var tw = new TreeWalker(function(node, descend){ + if (node instanceof AST_LabeledStatement) { + // lname is incremented when we get to the AST_Label + var save_nesting = lname; + descend(); + lname = save_nesting; + return true; // don't descend again in TreeWalker + } + if (node instanceof AST_Scope) { + var p = tw.parent(), a = []; + node.variables.each(function(symbol){ + if (options.except.indexOf(symbol.name) < 0) { + a.push(symbol); + } + }); + if (options.sort) a.sort(function(a, b){ + return b.references.length - a.references.length; + }); + to_mangle.push.apply(to_mangle, a); + return; + } + if (node instanceof AST_Label) { + var name; + do name = base54(++lname); while (!is_identifier(name)); + node.mangled_name = name; + return true; + } + if (options.screw_ie8 && node instanceof AST_SymbolCatch) { + to_mangle.push(node.definition()); + return; + } + }); + this.walk(tw); + to_mangle.forEach(function(def){ def.mangle(options) }); +}); + +AST_Toplevel.DEFMETHOD("compute_char_frequency", function(options){ + options = this._default_mangler_options(options); + var tw = new TreeWalker(function(node){ + if (node instanceof AST_Constant) + base54.consider(node.print_to_string()); + else if (node instanceof AST_Return) + base54.consider("return"); + else if (node instanceof AST_Throw) + base54.consider("throw"); + else if (node instanceof AST_Continue) + base54.consider("continue"); + else if (node instanceof AST_Break) + base54.consider("break"); + else if (node instanceof AST_Debugger) + base54.consider("debugger"); + else if (node instanceof AST_Directive) + base54.consider(node.value); + else if (node instanceof AST_While) + base54.consider("while"); + else if (node instanceof AST_Do) + base54.consider("do while"); + else if (node instanceof AST_If) { + base54.consider("if"); + if (node.alternative) base54.consider("else"); + } + else if (node instanceof AST_Var) + base54.consider("var"); + else if (node instanceof AST_Const) + base54.consider("const"); + else if (node instanceof AST_Lambda) + base54.consider("function"); + else if (node instanceof AST_For) + base54.consider("for"); + else if (node instanceof AST_ForIn) + base54.consider("for in"); + else if (node instanceof AST_Switch) + base54.consider("switch"); + else if (node instanceof AST_Case) + base54.consider("case"); + else if (node instanceof AST_Default) + base54.consider("default"); + else if (node instanceof AST_With) + base54.consider("with"); + else if (node instanceof AST_ObjectSetter) + base54.consider("set" + node.key); + else if (node instanceof AST_ObjectGetter) + base54.consider("get" + node.key); + else if (node instanceof AST_ObjectKeyVal) + base54.consider(node.key); + else if (node instanceof AST_New) + base54.consider("new"); + else if (node instanceof AST_This) + base54.consider("this"); + else if (node instanceof AST_Try) + base54.consider("try"); + else if (node instanceof AST_Catch) + base54.consider("catch"); + else if (node instanceof AST_Finally) + base54.consider("finally"); + else if (node instanceof AST_Symbol && node.unmangleable(options)) + base54.consider(node.name); + else if (node instanceof AST_Unary || node instanceof AST_Binary) + base54.consider(node.operator); + else if (node instanceof AST_Dot) + base54.consider(node.property); + }); + this.walk(tw); + base54.sort(); +}); + +var base54 = (function() { + var string = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ$_0123456789"; + var chars, frequency; + function reset() { + frequency = Object.create(null); + chars = string.split("").map(function(ch){ return ch.charCodeAt(0) }); + chars.forEach(function(ch){ frequency[ch] = 0 }); + } + base54.consider = function(str){ + for (var i = str.length; --i >= 0;) { + var code = str.charCodeAt(i); + if (code in frequency) ++frequency[code]; + } + }; + base54.sort = function() { + chars = mergeSort(chars, function(a, b){ + if (is_digit(a) && !is_digit(b)) return 1; + if (is_digit(b) && !is_digit(a)) return -1; + return frequency[b] - frequency[a]; + }); + }; + base54.reset = reset; + reset(); + base54.get = function(){ return chars }; + base54.freq = function(){ return frequency }; + function base54(num) { + var ret = "", base = 54; + do { + ret += String.fromCharCode(chars[num % base]); + num = Math.floor(num / base); + base = 64; + } while (num > 0); + return ret; + }; + return base54; +})(); + +AST_Toplevel.DEFMETHOD("scope_warnings", function(options){ + options = defaults(options, { + undeclared : false, // this makes a lot of noise + unreferenced : true, + assign_to_global : true, + func_arguments : true, + nested_defuns : true, + eval : true + }); + var tw = new TreeWalker(function(node){ + if (options.undeclared + && node instanceof AST_SymbolRef + && node.undeclared()) + { + // XXX: this also warns about JS standard names, + // i.e. Object, Array, parseInt etc. Should add a list of + // exceptions. + AST_Node.warn("Undeclared symbol: {name} [{file}:{line},{col}]", { + name: node.name, + file: node.start.file, + line: node.start.line, + col: node.start.col + }); + } + if (options.assign_to_global) + { + var sym = null; + if (node instanceof AST_Assign && node.left instanceof AST_SymbolRef) + sym = node.left; + else if (node instanceof AST_ForIn && node.init instanceof AST_SymbolRef) + sym = node.init; + if (sym + && (sym.undeclared() + || (sym.global() && sym.scope !== sym.definition().scope))) { + AST_Node.warn("{msg}: {name} [{file}:{line},{col}]", { + msg: sym.undeclared() ? "Accidental global?" : "Assignment to global", + name: sym.name, + file: sym.start.file, + line: sym.start.line, + col: sym.start.col + }); + } + } + if (options.eval + && node instanceof AST_SymbolRef + && node.undeclared() + && node.name == "eval") { + AST_Node.warn("Eval is used [{file}:{line},{col}]", node.start); + } + if (options.unreferenced + && (node instanceof AST_SymbolDeclaration || node instanceof AST_Label) + && !(node instanceof AST_SymbolCatch) + && node.unreferenced()) { + AST_Node.warn("{type} {name} is declared but not referenced [{file}:{line},{col}]", { + type: node instanceof AST_Label ? "Label" : "Symbol", + name: node.name, + file: node.start.file, + line: node.start.line, + col: node.start.col + }); + } + if (options.func_arguments + && node instanceof AST_Lambda + && node.uses_arguments) { + AST_Node.warn("arguments used in function {name} [{file}:{line},{col}]", { + name: node.name ? node.name.name : "anonymous", + file: node.start.file, + line: node.start.line, + col: node.start.col + }); + } + if (options.nested_defuns + && node instanceof AST_Defun + && !(tw.parent() instanceof AST_Scope)) { + AST_Node.warn("Function {name} declared in nested statement \"{type}\" [{file}:{line},{col}]", { + name: node.name.name, + type: tw.parent().TYPE, + file: node.start.file, + line: node.start.line, + col: node.start.col + }); + } + }); + this.walk(tw); +}); + +/*********************************************************************** + + A JavaScript tokenizer / parser / beautifier / compressor. + https://github.com/mishoo/UglifyJS2 + + -------------------------------- (C) --------------------------------- + + Author: Mihai Bazon + + http://mihai.bazon.net/blog + + Distributed under the BSD license: + + Copyright 2012 (c) Mihai Bazon + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + * Redistributions of source code must retain the above + copyright notice, this list of conditions and the following + disclaimer. + + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials + provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER “AS IS” AND ANY + EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE + LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, + OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR + TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF + THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + SUCH DAMAGE. + + ***********************************************************************/ + +"use strict"; + +function OutputStream(options) { + + options = defaults(options, { + indent_start : 0, + indent_level : 4, + quote_keys : false, + space_colon : true, + ascii_only : false, + unescape_regexps : false, + inline_script : false, + width : 80, + max_line_len : 32000, + beautify : false, + source_map : null, + bracketize : false, + semicolons : true, + comments : false, + preserve_line : false, + screw_ie8 : false, + preamble : null, + }, true); + + var indentation = 0; + var current_col = 0; + var current_line = 1; + var current_pos = 0; + var OUTPUT = ""; + + function to_ascii(str, identifier) { + return str.replace(/[\u0080-\uffff]/g, function(ch) { + var code = ch.charCodeAt(0).toString(16); + if (code.length <= 2 && !identifier) { + while (code.length < 2) code = "0" + code; + return "\\x" + code; + } else { + while (code.length < 4) code = "0" + code; + return "\\u" + code; + } + }); + }; + + function make_string(str) { + var dq = 0, sq = 0; + str = str.replace(/[\\\b\f\n\r\t\x22\x27\u2028\u2029\0]/g, function(s){ + switch (s) { + case "\\": return "\\\\"; + case "\b": return "\\b"; + case "\f": return "\\f"; + case "\n": return "\\n"; + case "\r": return "\\r"; + case "\u2028": return "\\u2028"; + case "\u2029": return "\\u2029"; + case '"': ++dq; return '"'; + case "'": ++sq; return "'"; + case "\0": return "\\x00"; + } + return s; + }); + if (options.ascii_only) str = to_ascii(str); + if (dq > sq) return "'" + str.replace(/\x27/g, "\\'") + "'"; + else return '"' + str.replace(/\x22/g, '\\"') + '"'; + }; + + function encode_string(str) { + var ret = make_string(str); + if (options.inline_script) + ret = ret.replace(/<\x2fscript([>\/\t\n\f\r ])/gi, "<\\/script$1"); + return ret; + }; + + function make_name(name) { + name = name.toString(); + if (options.ascii_only) + name = to_ascii(name, true); + return name; + }; + + function make_indent(back) { + return repeat_string(" ", options.indent_start + indentation - back * options.indent_level); + }; + + /* -----[ beautification/minification ]----- */ + + var might_need_space = false; + var might_need_semicolon = false; + var last = null; + + function last_char() { + return last.charAt(last.length - 1); + }; + + function maybe_newline() { + if (options.max_line_len && current_col > options.max_line_len) + print("\n"); + }; + + var requireSemicolonChars = makePredicate("( [ + * / - , ."); + + function print(str) { + str = String(str); + var ch = str.charAt(0); + if (might_need_semicolon) { + if ((!ch || ";}".indexOf(ch) < 0) && !/[;]$/.test(last)) { + if (options.semicolons || requireSemicolonChars(ch)) { + OUTPUT += ";"; + current_col++; + current_pos++; + } else { + OUTPUT += "\n"; + current_pos++; + current_line++; + current_col = 0; + } + if (!options.beautify) + might_need_space = false; + } + might_need_semicolon = false; + maybe_newline(); + } + + if (!options.beautify && options.preserve_line && stack[stack.length - 1]) { + var target_line = stack[stack.length - 1].start.line; + while (current_line < target_line) { + OUTPUT += "\n"; + current_pos++; + current_line++; + current_col = 0; + might_need_space = false; + } + } + + if (might_need_space) { + var prev = last_char(); + if ((is_identifier_char(prev) + && (is_identifier_char(ch) || ch == "\\")) + || (/^[\+\-\/]$/.test(ch) && ch == prev)) + { + OUTPUT += " "; + current_col++; + current_pos++; + } + might_need_space = false; + } + var a = str.split(/\r?\n/), n = a.length - 1; + current_line += n; + if (n == 0) { + current_col += a[n].length; + } else { + current_col = a[n].length; + } + current_pos += str.length; + last = str; + OUTPUT += str; + }; + + var space = options.beautify ? function() { + print(" "); + } : function() { + might_need_space = true; + }; + + var indent = options.beautify ? function(half) { + if (options.beautify) { + print(make_indent(half ? 0.5 : 0)); + } + } : noop; + + var with_indent = options.beautify ? function(col, cont) { + if (col === true) col = next_indent(); + var save_indentation = indentation; + indentation = col; + var ret = cont(); + indentation = save_indentation; + return ret; + } : function(col, cont) { return cont() }; + + var newline = options.beautify ? function() { + print("\n"); + } : noop; + + var semicolon = options.beautify ? function() { + print(";"); + } : function() { + might_need_semicolon = true; + }; + + function force_semicolon() { + might_need_semicolon = false; + print(";"); + }; + + function next_indent() { + return indentation + options.indent_level; + }; + + function with_block(cont) { + var ret; + print("{"); + newline(); + with_indent(next_indent(), function(){ + ret = cont(); + }); + indent(); + print("}"); + return ret; + }; + + function with_parens(cont) { + print("("); + //XXX: still nice to have that for argument lists + //var ret = with_indent(current_col, cont); + var ret = cont(); + print(")"); + return ret; + }; + + function with_square(cont) { + print("["); + //var ret = with_indent(current_col, cont); + var ret = cont(); + print("]"); + return ret; + }; + + function comma() { + print(","); + space(); + }; + + function colon() { + print(":"); + if (options.space_colon) space(); + }; + + var add_mapping = options.source_map ? function(token, name) { + try { + if (token) options.source_map.add( + token.file || "?", + current_line, current_col, + token.line, token.col, + (!name && token.type == "name") ? token.value : name + ); + } catch(ex) { + AST_Node.warn("Couldn't figure out mapping for {file}:{line},{col} → {cline},{ccol} [{name}]", { + file: token.file, + line: token.line, + col: token.col, + cline: current_line, + ccol: current_col, + name: name || "" + }) + } + } : noop; + + function get() { + return OUTPUT; + }; + + if (options.preamble) { + print(options.preamble.replace(/\r\n?|[\n\u2028\u2029]|\s*$/g, "\n")); + } + + var stack = []; + return { + get : get, + toString : get, + indent : indent, + indentation : function() { return indentation }, + current_width : function() { return current_col - indentation }, + should_break : function() { return options.width && this.current_width() >= options.width }, + newline : newline, + print : print, + space : space, + comma : comma, + colon : colon, + last : function() { return last }, + semicolon : semicolon, + force_semicolon : force_semicolon, + to_ascii : to_ascii, + print_name : function(name) { print(make_name(name)) }, + print_string : function(str) { print(encode_string(str)) }, + next_indent : next_indent, + with_indent : with_indent, + with_block : with_block, + with_parens : with_parens, + with_square : with_square, + add_mapping : add_mapping, + option : function(opt) { return options[opt] }, + line : function() { return current_line }, + col : function() { return current_col }, + pos : function() { return current_pos }, + push_node : function(node) { stack.push(node) }, + pop_node : function() { return stack.pop() }, + stack : function() { return stack }, + parent : function(n) { + return stack[stack.length - 2 - (n || 0)]; + } + }; + +}; + +/* -----[ code generators ]----- */ + +(function(){ + + /* -----[ utils ]----- */ + + function DEFPRINT(nodetype, generator) { + nodetype.DEFMETHOD("_codegen", generator); + }; + + AST_Node.DEFMETHOD("print", function(stream, force_parens){ + var self = this, generator = self._codegen; + function doit() { + self.add_comments(stream); + self.add_source_map(stream); + generator(self, stream); + } + stream.push_node(self); + if (force_parens || self.needs_parens(stream)) { + stream.with_parens(doit); + } else { + doit(); + } + stream.pop_node(); + }); + + AST_Node.DEFMETHOD("print_to_string", function(options){ + var s = OutputStream(options); + this.print(s); + return s.get(); + }); + + /* -----[ comments ]----- */ + + AST_Node.DEFMETHOD("add_comments", function(output){ + var c = output.option("comments"), self = this; + if (c) { + var start = self.start; + if (start && !start._comments_dumped) { + start._comments_dumped = true; + var comments = start.comments_before || []; + + // XXX: ugly fix for https://github.com/mishoo/UglifyJS2/issues/112 + // and https://github.com/mishoo/UglifyJS2/issues/372 + if (self instanceof AST_Exit && self.value) { + self.value.walk(new TreeWalker(function(node){ + if (node.start && node.start.comments_before) { + comments = comments.concat(node.start.comments_before); + node.start.comments_before = []; + } + if (node instanceof AST_Function || + node instanceof AST_Array || + node instanceof AST_Object) + { + return true; // don't go inside. + } + })); + } + + if (c.test) { + comments = comments.filter(function(comment){ + return c.test(comment.value); + }); + } else if (typeof c == "function") { + comments = comments.filter(function(comment){ + return c(self, comment); + }); + } + comments.forEach(function(c){ + if (/comment[134]/.test(c.type)) { + output.print("//" + c.value + "\n"); + output.indent(); + } + else if (c.type == "comment2") { + output.print("/*" + c.value + "*/"); + if (start.nlb) { + output.print("\n"); + output.indent(); + } else { + output.space(); + } + } + }); + } + } + }); + + /* -----[ PARENTHESES ]----- */ + + function PARENS(nodetype, func) { + if (Array.isArray(nodetype)) { + nodetype.forEach(function(nodetype){ + PARENS(nodetype, func); + }); + } else { + nodetype.DEFMETHOD("needs_parens", func); + } + }; + + PARENS(AST_Node, function(){ + return false; + }); + + // a function expression needs parens around it when it's provably + // the first token to appear in a statement. + PARENS(AST_Function, function(output){ + return first_in_statement(output); + }); + + // same goes for an object literal, because otherwise it would be + // interpreted as a block of code. + PARENS(AST_Object, function(output){ + return first_in_statement(output); + }); + + PARENS([ AST_Unary, AST_Undefined ], function(output){ + var p = output.parent(); + return p instanceof AST_PropAccess && p.expression === this; + }); + + PARENS(AST_Seq, function(output){ + var p = output.parent(); + return p instanceof AST_Call // (foo, bar)() or foo(1, (2, 3), 4) + || p instanceof AST_Unary // !(foo, bar, baz) + || p instanceof AST_Binary // 1 + (2, 3) + 4 ==> 8 + || p instanceof AST_VarDef // var a = (1, 2), b = a + a; ==> b == 4 + || p instanceof AST_PropAccess // (1, {foo:2}).foo or (1, {foo:2})["foo"] ==> 2 + || p instanceof AST_Array // [ 1, (2, 3), 4 ] ==> [ 1, 3, 4 ] + || p instanceof AST_ObjectProperty // { foo: (1, 2) }.foo ==> 2 + || p instanceof AST_Conditional /* (false, true) ? (a = 10, b = 20) : (c = 30) + * ==> 20 (side effect, set a := 10 and b := 20) */ + ; + }); + + PARENS(AST_Binary, function(output){ + var p = output.parent(); + // (foo && bar)() + if (p instanceof AST_Call && p.expression === this) + return true; + // typeof (foo && bar) + if (p instanceof AST_Unary) + return true; + // (foo && bar)["prop"], (foo && bar).prop + if (p instanceof AST_PropAccess && p.expression === this) + return true; + // this deals with precedence: 3 * (2 + 1) + if (p instanceof AST_Binary) { + var po = p.operator, pp = PRECEDENCE[po]; + var so = this.operator, sp = PRECEDENCE[so]; + if (pp > sp + || (pp == sp + && this === p.right)) { + return true; + } + } + }); + + PARENS(AST_PropAccess, function(output){ + var p = output.parent(); + if (p instanceof AST_New && p.expression === this) { + // i.e. new (foo.bar().baz) + // + // if there's one call into this subtree, then we need + // parens around it too, otherwise the call will be + // interpreted as passing the arguments to the upper New + // expression. + try { + this.walk(new TreeWalker(function(node){ + if (node instanceof AST_Call) throw p; + })); + } catch(ex) { + if (ex !== p) throw ex; + return true; + } + } + }); + + PARENS(AST_Call, function(output){ + var p = output.parent(), p1; + if (p instanceof AST_New && p.expression === this) + return true; + + // workaround for Safari bug. + // https://bugs.webkit.org/show_bug.cgi?id=123506 + return this.expression instanceof AST_Function + && p instanceof AST_PropAccess + && p.expression === this + && (p1 = output.parent(1)) instanceof AST_Assign + && p1.left === p; + }); + + PARENS(AST_New, function(output){ + var p = output.parent(); + if (no_constructor_parens(this, output) + && (p instanceof AST_PropAccess // (new Date).getTime(), (new Date)["getTime"]() + || p instanceof AST_Call && p.expression === this)) // (new foo)(bar) + return true; + }); + + PARENS(AST_Number, function(output){ + var p = output.parent(); + if (this.getValue() < 0 && p instanceof AST_PropAccess && p.expression === this) + return true; + }); + + PARENS(AST_NaN, function(output){ + var p = output.parent(); + if (p instanceof AST_PropAccess && p.expression === this) + return true; + }); + + PARENS([ AST_Assign, AST_Conditional ], function (output){ + var p = output.parent(); + // !(a = false) → true + if (p instanceof AST_Unary) + return true; + // 1 + (a = 2) + 3 → 6, side effect setting a = 2 + if (p instanceof AST_Binary && !(p instanceof AST_Assign)) + return true; + // (a = func)() —or— new (a = Object)() + if (p instanceof AST_Call && p.expression === this) + return true; + // (a = foo) ? bar : baz + if (p instanceof AST_Conditional && p.condition === this) + return true; + // (a = foo)["prop"] —or— (a = foo).prop + if (p instanceof AST_PropAccess && p.expression === this) + return true; + }); + + /* -----[ PRINTERS ]----- */ + + DEFPRINT(AST_Directive, function(self, output){ + output.print_string(self.value); + output.semicolon(); + }); + DEFPRINT(AST_Debugger, function(self, output){ + output.print("debugger"); + output.semicolon(); + }); + + /* -----[ statements ]----- */ + + function display_body(body, is_toplevel, output) { + var last = body.length - 1; + body.forEach(function(stmt, i){ + if (!(stmt instanceof AST_EmptyStatement)) { + output.indent(); + stmt.print(output); + if (!(i == last && is_toplevel)) { + output.newline(); + if (is_toplevel) output.newline(); + } + } + }); + }; + + AST_StatementWithBody.DEFMETHOD("_do_print_body", function(output){ + force_statement(this.body, output); + }); + + DEFPRINT(AST_Statement, function(self, output){ + self.body.print(output); + output.semicolon(); + }); + DEFPRINT(AST_Toplevel, function(self, output){ + display_body(self.body, true, output); + output.print(""); + }); + DEFPRINT(AST_LabeledStatement, function(self, output){ + self.label.print(output); + output.colon(); + self.body.print(output); + }); + DEFPRINT(AST_SimpleStatement, function(self, output){ + self.body.print(output); + output.semicolon(); + }); + function print_bracketed(body, output) { + if (body.length > 0) output.with_block(function(){ + display_body(body, false, output); + }); + else output.print("{}"); + }; + DEFPRINT(AST_BlockStatement, function(self, output){ + print_bracketed(self.body, output); + }); + DEFPRINT(AST_EmptyStatement, function(self, output){ + output.semicolon(); + }); + DEFPRINT(AST_Do, function(self, output){ + output.print("do"); + output.space(); + self._do_print_body(output); + output.space(); + output.print("while"); + output.space(); + output.with_parens(function(){ + self.condition.print(output); + }); + output.semicolon(); + }); + DEFPRINT(AST_While, function(self, output){ + output.print("while"); + output.space(); + output.with_parens(function(){ + self.condition.print(output); + }); + output.space(); + self._do_print_body(output); + }); + DEFPRINT(AST_For, function(self, output){ + output.print("for"); + output.space(); + output.with_parens(function(){ + if (self.init && !(self.init instanceof AST_EmptyStatement)) { + if (self.init instanceof AST_Definitions) { + self.init.print(output); + } else { + parenthesize_for_noin(self.init, output, true); + } + output.print(";"); + output.space(); + } else { + output.print(";"); + } + if (self.condition) { + self.condition.print(output); + output.print(";"); + output.space(); + } else { + output.print(";"); + } + if (self.step) { + self.step.print(output); + } + }); + output.space(); + self._do_print_body(output); + }); + DEFPRINT(AST_ForIn, function(self, output){ + output.print("for"); + output.space(); + output.with_parens(function(){ + self.init.print(output); + output.space(); + output.print("in"); + output.space(); + self.object.print(output); + }); + output.space(); + self._do_print_body(output); + }); + DEFPRINT(AST_With, function(self, output){ + output.print("with"); + output.space(); + output.with_parens(function(){ + self.expression.print(output); + }); + output.space(); + self._do_print_body(output); + }); + + /* -----[ functions ]----- */ + AST_Lambda.DEFMETHOD("_do_print", function(output, nokeyword){ + var self = this; + if (!nokeyword) { + output.print("function"); + } + if (self.name) { + output.space(); + self.name.print(output); + } + output.with_parens(function(){ + self.argnames.forEach(function(arg, i){ + if (i) output.comma(); + arg.print(output); + }); + }); + output.space(); + print_bracketed(self.body, output); + }); + DEFPRINT(AST_Lambda, function(self, output){ + self._do_print(output); + }); + + /* -----[ exits ]----- */ + AST_Exit.DEFMETHOD("_do_print", function(output, kind){ + output.print(kind); + if (this.value) { + output.space(); + this.value.print(output); + } + output.semicolon(); + }); + DEFPRINT(AST_Return, function(self, output){ + self._do_print(output, "return"); + }); + DEFPRINT(AST_Throw, function(self, output){ + self._do_print(output, "throw"); + }); + + /* -----[ loop control ]----- */ + AST_LoopControl.DEFMETHOD("_do_print", function(output, kind){ + output.print(kind); + if (this.label) { + output.space(); + this.label.print(output); + } + output.semicolon(); + }); + DEFPRINT(AST_Break, function(self, output){ + self._do_print(output, "break"); + }); + DEFPRINT(AST_Continue, function(self, output){ + self._do_print(output, "continue"); + }); + + /* -----[ if ]----- */ + function make_then(self, output) { + if (output.option("bracketize")) { + make_block(self.body, output); + return; + } + // The squeezer replaces "block"-s that contain only a single + // statement with the statement itself; technically, the AST + // is correct, but this can create problems when we output an + // IF having an ELSE clause where the THEN clause ends in an + // IF *without* an ELSE block (then the outer ELSE would refer + // to the inner IF). This function checks for this case and + // adds the block brackets if needed. + if (!self.body) + return output.force_semicolon(); + if (self.body instanceof AST_Do + && !output.option("screw_ie8")) { + // https://github.com/mishoo/UglifyJS/issues/#issue/57 IE + // croaks with "syntax error" on code like this: if (foo) + // do ... while(cond); else ... we need block brackets + // around do/while + make_block(self.body, output); + return; + } + var b = self.body; + while (true) { + if (b instanceof AST_If) { + if (!b.alternative) { + make_block(self.body, output); + return; + } + b = b.alternative; + } + else if (b instanceof AST_StatementWithBody) { + b = b.body; + } + else break; + } + force_statement(self.body, output); + }; + DEFPRINT(AST_If, function(self, output){ + output.print("if"); + output.space(); + output.with_parens(function(){ + self.condition.print(output); + }); + output.space(); + if (self.alternative) { + make_then(self, output); + output.space(); + output.print("else"); + output.space(); + force_statement(self.alternative, output); + } else { + self._do_print_body(output); + } + }); + + /* -----[ switch ]----- */ + DEFPRINT(AST_Switch, function(self, output){ + output.print("switch"); + output.space(); + output.with_parens(function(){ + self.expression.print(output); + }); + output.space(); + if (self.body.length > 0) output.with_block(function(){ + self.body.forEach(function(stmt, i){ + if (i) output.newline(); + output.indent(true); + stmt.print(output); + }); + }); + else output.print("{}"); + }); + AST_SwitchBranch.DEFMETHOD("_do_print_body", function(output){ + if (this.body.length > 0) { + output.newline(); + this.body.forEach(function(stmt){ + output.indent(); + stmt.print(output); + output.newline(); + }); + } + }); + DEFPRINT(AST_Default, function(self, output){ + output.print("default:"); + self._do_print_body(output); + }); + DEFPRINT(AST_Case, function(self, output){ + output.print("case"); + output.space(); + self.expression.print(output); + output.print(":"); + self._do_print_body(output); + }); + + /* -----[ exceptions ]----- */ + DEFPRINT(AST_Try, function(self, output){ + output.print("try"); + output.space(); + print_bracketed(self.body, output); + if (self.bcatch) { + output.space(); + self.bcatch.print(output); + } + if (self.bfinally) { + output.space(); + self.bfinally.print(output); + } + }); + DEFPRINT(AST_Catch, function(self, output){ + output.print("catch"); + output.space(); + output.with_parens(function(){ + self.argname.print(output); + }); + output.space(); + print_bracketed(self.body, output); + }); + DEFPRINT(AST_Finally, function(self, output){ + output.print("finally"); + output.space(); + print_bracketed(self.body, output); + }); + + /* -----[ var/const ]----- */ + AST_Definitions.DEFMETHOD("_do_print", function(output, kind){ + output.print(kind); + output.space(); + this.definitions.forEach(function(def, i){ + if (i) output.comma(); + def.print(output); + }); + var p = output.parent(); + var in_for = p instanceof AST_For || p instanceof AST_ForIn; + var avoid_semicolon = in_for && p.init === this; + if (!avoid_semicolon) + output.semicolon(); + }); + DEFPRINT(AST_Var, function(self, output){ + self._do_print(output, "var"); + }); + DEFPRINT(AST_Const, function(self, output){ + self._do_print(output, "const"); + }); + + function parenthesize_for_noin(node, output, noin) { + if (!noin) node.print(output); + else try { + // need to take some precautions here: + // https://github.com/mishoo/UglifyJS2/issues/60 + node.walk(new TreeWalker(function(node){ + if (node instanceof AST_Binary && node.operator == "in") + throw output; + })); + node.print(output); + } catch(ex) { + if (ex !== output) throw ex; + node.print(output, true); + } + }; + + DEFPRINT(AST_VarDef, function(self, output){ + self.name.print(output); + if (self.value) { + output.space(); + output.print("="); + output.space(); + var p = output.parent(1); + var noin = p instanceof AST_For || p instanceof AST_ForIn; + parenthesize_for_noin(self.value, output, noin); + } + }); + + /* -----[ other expressions ]----- */ + DEFPRINT(AST_Call, function(self, output){ + self.expression.print(output); + if (self instanceof AST_New && no_constructor_parens(self, output)) + return; + output.with_parens(function(){ + self.args.forEach(function(expr, i){ + if (i) output.comma(); + expr.print(output); + }); + }); + }); + DEFPRINT(AST_New, function(self, output){ + output.print("new"); + output.space(); + AST_Call.prototype._codegen(self, output); + }); + + AST_Seq.DEFMETHOD("_do_print", function(output){ + this.car.print(output); + if (this.cdr) { + output.comma(); + if (output.should_break()) { + output.newline(); + output.indent(); + } + this.cdr.print(output); + } + }); + DEFPRINT(AST_Seq, function(self, output){ + self._do_print(output); + // var p = output.parent(); + // if (p instanceof AST_Statement) { + // output.with_indent(output.next_indent(), function(){ + // self._do_print(output); + // }); + // } else { + // self._do_print(output); + // } + }); + DEFPRINT(AST_Dot, function(self, output){ + var expr = self.expression; + expr.print(output); + if (expr instanceof AST_Number && expr.getValue() >= 0) { + if (!/[xa-f.]/i.test(output.last())) { + output.print("."); + } + } + output.print("."); + // the name after dot would be mapped about here. + output.add_mapping(self.end); + output.print_name(self.property); + }); + DEFPRINT(AST_Sub, function(self, output){ + self.expression.print(output); + output.print("["); + self.property.print(output); + output.print("]"); + }); + DEFPRINT(AST_UnaryPrefix, function(self, output){ + var op = self.operator; + output.print(op); + if (/^[a-z]/i.test(op) + || (/[+-]$/.test(op) + && self.expression instanceof AST_UnaryPrefix + && /^[+-]/.test(self.expression.operator))) { + output.space(); + } + self.expression.print(output); + }); + DEFPRINT(AST_UnaryPostfix, function(self, output){ + self.expression.print(output); + output.print(self.operator); + }); + DEFPRINT(AST_Binary, function(self, output){ + self.left.print(output); + output.space(); + output.print(self.operator); + if (self.operator == "<" + && self.right instanceof AST_UnaryPrefix + && self.right.operator == "!" + && self.right.expression instanceof AST_UnaryPrefix + && self.right.expression.operator == "--") { + // space is mandatory to avoid outputting x&&y?z:a + if (consequent instanceof AST_Conditional + && consequent.alternative.equivalent_to(alternative)) { + return make_node(AST_Conditional, self, { + condition: make_node(AST_Binary, self, { + left: self.condition, + operator: "&&", + right: consequent.condition + }), + consequent: consequent.consequent, + alternative: alternative + }); + } + // x=y?1:1 --> x=1 + if (consequent instanceof AST_Constant + && alternative instanceof AST_Constant + && consequent.equivalent_to(alternative)) { + if (self.condition.has_side_effects(compressor)) { + return AST_Seq.from_array([self.condition, make_node_from_constant(compressor, consequent.value, self)]); + } else { + return make_node_from_constant(compressor, consequent.value, self); + + } + } + return self; + }); + + OPT(AST_Boolean, function(self, compressor){ + if (compressor.option("booleans")) { + var p = compressor.parent(); + if (p instanceof AST_Binary && (p.operator == "==" + || p.operator == "!=")) { + compressor.warn("Non-strict equality against boolean: {operator} {value} [{file}:{line},{col}]", { + operator : p.operator, + value : self.value, + file : p.start.file, + line : p.start.line, + col : p.start.col, + }); + return make_node(AST_Number, self, { + value: +self.value + }); + } + return make_node(AST_UnaryPrefix, self, { + operator: "!", + expression: make_node(AST_Number, self, { + value: 1 - self.value + }) + }); + } + return self; + }); + + OPT(AST_Sub, function(self, compressor){ + var prop = self.property; + if (prop instanceof AST_String && compressor.option("properties")) { + prop = prop.getValue(); + if (RESERVED_WORDS(prop) ? compressor.option("screw_ie8") : is_identifier_string(prop)) { + return make_node(AST_Dot, self, { + expression : self.expression, + property : prop + }).optimize(compressor); + } + var v = parseFloat(prop); + if (!isNaN(v) && v.toString() == prop) { + self.property = make_node(AST_Number, self.property, { + value: v + }); + } + } + return self; + }); + + OPT(AST_Dot, function(self, compressor){ + var prop = self.property; + if (RESERVED_WORDS(prop) && !compressor.option("screw_ie8")) { + return make_node(AST_Sub, self, { + expression : self.expression, + property : make_node(AST_String, self, { + value: prop + }) + }).optimize(compressor); + } + return self.evaluate(compressor)[0]; + }); + + function literals_in_boolean_context(self, compressor) { + if (compressor.option("booleans") && compressor.in_boolean_context()) { + return make_node(AST_True, self); + } + return self; + }; + OPT(AST_Array, literals_in_boolean_context); + OPT(AST_Object, literals_in_boolean_context); + OPT(AST_RegExp, literals_in_boolean_context); + +})(); + +/*********************************************************************** + + A JavaScript tokenizer / parser / beautifier / compressor. + https://github.com/mishoo/UglifyJS2 + + -------------------------------- (C) --------------------------------- + + Author: Mihai Bazon + + http://mihai.bazon.net/blog + + Distributed under the BSD license: + + Copyright 2012 (c) Mihai Bazon + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + * Redistributions of source code must retain the above + copyright notice, this list of conditions and the following + disclaimer. + + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials + provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER “AS IS” AND ANY + EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE + LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, + OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR + TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF + THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + SUCH DAMAGE. + + ***********************************************************************/ + +"use strict"; + +// a small wrapper around fitzgen's source-map library +function SourceMap(options) { + options = defaults(options, { + file : null, + root : null, + orig : null, + + orig_line_diff : 0, + dest_line_diff : 0, + }); + var generator = new MOZ_SourceMap.SourceMapGenerator({ + file : options.file, + sourceRoot : options.root + }); + var orig_map = options.orig && new MOZ_SourceMap.SourceMapConsumer(options.orig); + function add(source, gen_line, gen_col, orig_line, orig_col, name) { + if (orig_map) { + var info = orig_map.originalPositionFor({ + line: orig_line, + column: orig_col + }); + if (info.source === null) { + return; + } + source = info.source; + orig_line = info.line; + orig_col = info.column; + name = info.name || name; + } + generator.addMapping({ + generated : { line: gen_line + options.dest_line_diff, column: gen_col }, + original : { line: orig_line + options.orig_line_diff, column: orig_col }, + source : source, + name : name + }); + }; + return { + add : add, + get : function() { return generator }, + toString : function() { return generator.toString() } + }; +}; + +/*********************************************************************** + + A JavaScript tokenizer / parser / beautifier / compressor. + https://github.com/mishoo/UglifyJS2 + + -------------------------------- (C) --------------------------------- + + Author: Mihai Bazon + + http://mihai.bazon.net/blog + + Distributed under the BSD license: + + Copyright 2012 (c) Mihai Bazon + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + * Redistributions of source code must retain the above + copyright notice, this list of conditions and the following + disclaimer. + + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials + provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER “AS IS” AND ANY + EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE + LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, + OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR + TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF + THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + SUCH DAMAGE. + + ***********************************************************************/ + +"use strict"; + +(function(){ + + var MOZ_TO_ME = { + ExpressionStatement: function(M) { + var expr = M.expression; + if (expr.type === "Literal" && typeof expr.value === "string") { + return new AST_Directive({ + start: my_start_token(M), + end: my_end_token(M), + value: expr.value + }); + } + return new AST_SimpleStatement({ + start: my_start_token(M), + end: my_end_token(M), + body: from_moz(expr) + }); + }, + TryStatement: function(M) { + var handlers = M.handlers || [M.handler]; + if (handlers.length > 1 || M.guardedHandlers && M.guardedHandlers.length) { + throw new Error("Multiple catch clauses are not supported."); + } + return new AST_Try({ + start : my_start_token(M), + end : my_end_token(M), + body : from_moz(M.block).body, + bcatch : from_moz(handlers[0]), + bfinally : M.finalizer ? new AST_Finally(from_moz(M.finalizer)) : null + }); + }, + Property: function(M) { + var key = M.key; + var name = key.type == "Identifier" ? key.name : key.value; + var args = { + start : my_start_token(key), + end : my_end_token(M.value), + key : name, + value : from_moz(M.value) + }; + switch (M.kind) { + case "init": + return new AST_ObjectKeyVal(args); + case "set": + args.value.name = from_moz(key); + return new AST_ObjectSetter(args); + case "get": + args.value.name = from_moz(key); + return new AST_ObjectGetter(args); + } + }, + ObjectExpression: function(M) { + return new AST_Object({ + start : my_start_token(M), + end : my_end_token(M), + properties : M.properties.map(function(prop){ + prop.type = "Property"; + return from_moz(prop) + }) + }); + }, + SequenceExpression: function(M) { + return AST_Seq.from_array(M.expressions.map(from_moz)); + }, + MemberExpression: function(M) { + return new (M.computed ? AST_Sub : AST_Dot)({ + start : my_start_token(M), + end : my_end_token(M), + property : M.computed ? from_moz(M.property) : M.property.name, + expression : from_moz(M.object) + }); + }, + SwitchCase: function(M) { + return new (M.test ? AST_Case : AST_Default)({ + start : my_start_token(M), + end : my_end_token(M), + expression : from_moz(M.test), + body : M.consequent.map(from_moz) + }); + }, + VariableDeclaration: function(M) { + return new (M.kind === "const" ? AST_Const : AST_Var)({ + start : my_start_token(M), + end : my_end_token(M), + definitions : M.declarations.map(from_moz) + }); + }, + Literal: function(M) { + var val = M.value, args = { + start : my_start_token(M), + end : my_end_token(M) + }; + if (val === null) return new AST_Null(args); + switch (typeof val) { + case "string": + args.value = val; + return new AST_String(args); + case "number": + args.value = val; + return new AST_Number(args); + case "boolean": + return new (val ? AST_True : AST_False)(args); + default: + args.value = val; + return new AST_RegExp(args); + } + }, + Identifier: function(M) { + var p = FROM_MOZ_STACK[FROM_MOZ_STACK.length - 2]; + return new ( p.type == "LabeledStatement" ? AST_Label + : p.type == "VariableDeclarator" && p.id === M ? (p.kind == "const" ? AST_SymbolConst : AST_SymbolVar) + : p.type == "FunctionExpression" ? (p.id === M ? AST_SymbolLambda : AST_SymbolFunarg) + : p.type == "FunctionDeclaration" ? (p.id === M ? AST_SymbolDefun : AST_SymbolFunarg) + : p.type == "CatchClause" ? AST_SymbolCatch + : p.type == "BreakStatement" || p.type == "ContinueStatement" ? AST_LabelRef + : AST_SymbolRef)({ + start : my_start_token(M), + end : my_end_token(M), + name : M.name + }); + } + }; + + MOZ_TO_ME.UpdateExpression = + MOZ_TO_ME.UnaryExpression = function To_Moz_Unary(M) { + var prefix = "prefix" in M ? M.prefix + : M.type == "UnaryExpression" ? true : false; + return new (prefix ? AST_UnaryPrefix : AST_UnaryPostfix)({ + start : my_start_token(M), + end : my_end_token(M), + operator : M.operator, + expression : from_moz(M.argument) + }); + }; + + map("Program", AST_Toplevel, "body@body"); + map("EmptyStatement", AST_EmptyStatement); + map("BlockStatement", AST_BlockStatement, "body@body"); + map("IfStatement", AST_If, "test>condition, consequent>body, alternate>alternative"); + map("LabeledStatement", AST_LabeledStatement, "label>label, body>body"); + map("BreakStatement", AST_Break, "label>label"); + map("ContinueStatement", AST_Continue, "label>label"); + map("WithStatement", AST_With, "object>expression, body>body"); + map("SwitchStatement", AST_Switch, "discriminant>expression, cases@body"); + map("ReturnStatement", AST_Return, "argument>value"); + map("ThrowStatement", AST_Throw, "argument>value"); + map("WhileStatement", AST_While, "test>condition, body>body"); + map("DoWhileStatement", AST_Do, "test>condition, body>body"); + map("ForStatement", AST_For, "init>init, test>condition, update>step, body>body"); + map("ForInStatement", AST_ForIn, "left>init, right>object, body>body"); + map("DebuggerStatement", AST_Debugger); + map("FunctionDeclaration", AST_Defun, "id>name, params@argnames, body%body"); + map("VariableDeclarator", AST_VarDef, "id>name, init>value"); + map("CatchClause", AST_Catch, "param>argname, body%body"); + + map("ThisExpression", AST_This); + map("ArrayExpression", AST_Array, "elements@elements"); + map("FunctionExpression", AST_Function, "id>name, params@argnames, body%body"); + map("BinaryExpression", AST_Binary, "operator=operator, left>left, right>right"); + map("LogicalExpression", AST_Binary, "operator=operator, left>left, right>right"); + map("AssignmentExpression", AST_Assign, "operator=operator, left>left, right>right"); + map("ConditionalExpression", AST_Conditional, "test>condition, consequent>consequent, alternate>alternative"); + map("NewExpression", AST_New, "callee>expression, arguments@args"); + map("CallExpression", AST_Call, "callee>expression, arguments@args"); + + def_to_moz(AST_Directive, function To_Moz_Directive(M) { + return { + type: "ExpressionStatement", + expression: { + type: "Literal", + value: M.value + } + }; + }); + + def_to_moz(AST_SimpleStatement, function To_Moz_ExpressionStatement(M) { + return { + type: "ExpressionStatement", + expression: to_moz(M.body) + }; + }); + + def_to_moz(AST_SwitchBranch, function To_Moz_SwitchCase(M) { + return { + type: "SwitchCase", + test: to_moz(M.expression), + consequent: M.body.map(to_moz) + }; + }); + + def_to_moz(AST_Try, function To_Moz_TryStatement(M) { + return { + type: "TryStatement", + block: to_moz_block(M), + handler: to_moz(M.bcatch), + guardedHandlers: [], + finalizer: to_moz(M.bfinally) + }; + }); + + def_to_moz(AST_Catch, function To_Moz_CatchClause(M) { + return { + type: "CatchClause", + param: to_moz(M.argname), + guard: null, + body: to_moz_block(M) + }; + }); + + def_to_moz(AST_Definitions, function To_Moz_VariableDeclaration(M) { + return { + type: "VariableDeclaration", + kind: M instanceof AST_Const ? "const" : "var", + declarations: M.definitions.map(to_moz) + }; + }); + + def_to_moz(AST_Seq, function To_Moz_SequenceExpression(M) { + return { + type: "SequenceExpression", + expressions: M.to_array().map(to_moz) + }; + }); + + def_to_moz(AST_PropAccess, function To_Moz_MemberExpression(M) { + var isComputed = M instanceof AST_Sub; + return { + type: "MemberExpression", + object: to_moz(M.expression), + computed: isComputed, + property: isComputed ? to_moz(M.property) : {type: "Identifier", name: M.property} + }; + }); + + def_to_moz(AST_Unary, function To_Moz_Unary(M) { + return { + type: M.operator == "++" || M.operator == "--" ? "UpdateExpression" : "UnaryExpression", + operator: M.operator, + prefix: M instanceof AST_UnaryPrefix, + argument: to_moz(M.expression) + }; + }); + + def_to_moz(AST_Binary, function To_Moz_BinaryExpression(M) { + return { + type: M.operator == "&&" || M.operator == "||" ? "LogicalExpression" : "BinaryExpression", + left: to_moz(M.left), + operator: M.operator, + right: to_moz(M.right) + }; + }); + + def_to_moz(AST_Object, function To_Moz_ObjectExpression(M) { + return { + type: "ObjectExpression", + properties: M.properties.map(to_moz) + }; + }); + + def_to_moz(AST_ObjectProperty, function To_Moz_Property(M) { + var key = ( + is_identifier(M.key) + ? {type: "Identifier", name: M.key} + : {type: "Literal", value: M.key} + ); + var kind; + if (M instanceof AST_ObjectKeyVal) { + kind = "init"; + } else + if (M instanceof AST_ObjectGetter) { + kind = "get"; + } else + if (M instanceof AST_ObjectSetter) { + kind = "set"; + } + return { + type: "Property", + kind: kind, + key: key, + value: to_moz(M.value) + }; + }); + + def_to_moz(AST_Symbol, function To_Moz_Identifier(M) { + var def = M.definition(); + return { + type: "Identifier", + name: def ? def.mangled_name || def.name : M.name + }; + }); + + def_to_moz(AST_Constant, function To_Moz_Literal(M) { + var value = M.value; + if (typeof value === 'number' && (value < 0 || (value === 0 && 1 / value < 0))) { + return { + type: "UnaryExpression", + operator: "-", + prefix: true, + argument: { + type: "Literal", + value: -value + } + }; + } + return { + type: "Literal", + value: value + }; + }); + + def_to_moz(AST_Atom, function To_Moz_Atom(M) { + return { + type: "Identifier", + name: String(M.value) + }; + }); + + AST_Boolean.DEFMETHOD("to_mozilla_ast", AST_Constant.prototype.to_mozilla_ast); + AST_Null.DEFMETHOD("to_mozilla_ast", AST_Constant.prototype.to_mozilla_ast); + AST_Hole.DEFMETHOD("to_mozilla_ast", function To_Moz_ArrayHole() { return null }); + + AST_Block.DEFMETHOD("to_mozilla_ast", AST_BlockStatement.prototype.to_mozilla_ast); + AST_Lambda.DEFMETHOD("to_mozilla_ast", AST_Function.prototype.to_mozilla_ast); + + /* -----[ tools ]----- */ + + function my_start_token(moznode) { + var loc = moznode.loc; + var range = moznode.range; + return new AST_Token({ + file : loc && loc.source, + line : loc && loc.start.line, + col : loc && loc.start.column, + pos : range ? range[0] : moznode.start, + endpos : range ? range[0] : moznode.start + }); + }; + + function my_end_token(moznode) { + var loc = moznode.loc; + var range = moznode.range; + return new AST_Token({ + file : loc && loc.source, + line : loc && loc.end.line, + col : loc && loc.end.column, + pos : range ? range[1] : moznode.end, + endpos : range ? range[1] : moznode.end + }); + }; + + function map(moztype, mytype, propmap) { + var moz_to_me = "function From_Moz_" + moztype + "(M){\n"; + moz_to_me += "return new " + mytype.name + "({\n" + + "start: my_start_token(M),\n" + + "end: my_end_token(M)"; + + var me_to_moz = "function To_Moz_" + moztype + "(M){\n"; + me_to_moz += "return {\n" + + "type: " + JSON.stringify(moztype); + + if (propmap) propmap.split(/\s*,\s*/).forEach(function(prop){ + var m = /([a-z0-9$_]+)(=|@|>|%)([a-z0-9$_]+)/i.exec(prop); + if (!m) throw new Error("Can't understand property map: " + prop); + var moz = m[1], how = m[2], my = m[3]; + moz_to_me += ",\n" + my + ": "; + me_to_moz += ",\n" + moz + ": "; + switch (how) { + case "@": + moz_to_me += "M." + moz + ".map(from_moz)"; + me_to_moz += "M." + my + ".map(to_moz)"; + break; + case ">": + moz_to_me += "from_moz(M." + moz + ")"; + me_to_moz += "to_moz(M." + my + ")"; + break; + case "=": + moz_to_me += "M." + moz; + me_to_moz += "M." + my; + break; + case "%": + moz_to_me += "from_moz(M." + moz + ").body"; + me_to_moz += "to_moz_block(M)"; + break; + default: + throw new Error("Can't understand operator in propmap: " + prop); + } + }); + + moz_to_me += "\n})\n}"; + me_to_moz += "\n}\n}"; + + //moz_to_me = parse(moz_to_me).print_to_string({ beautify: true }); + //me_to_moz = parse(me_to_moz).print_to_string({ beautify: true }); + //console.log(moz_to_me); + + moz_to_me = new Function("my_start_token", "my_end_token", "from_moz", "return(" + moz_to_me + ")")( + my_start_token, my_end_token, from_moz + ); + me_to_moz = new Function("to_moz", "to_moz_block", "return(" + me_to_moz + ")")( + to_moz, to_moz_block + ); + MOZ_TO_ME[moztype] = moz_to_me; + def_to_moz(mytype, me_to_moz); + }; + + var FROM_MOZ_STACK = null; + + function from_moz(node) { + FROM_MOZ_STACK.push(node); + var ret = node != null ? MOZ_TO_ME[node.type](node) : null; + FROM_MOZ_STACK.pop(); + return ret; + }; + + AST_Node.from_mozilla_ast = function(node){ + var save_stack = FROM_MOZ_STACK; + FROM_MOZ_STACK = []; + var ast = from_moz(node); + FROM_MOZ_STACK = save_stack; + return ast; + }; + + function moz_sub_loc(token) { + return token.line ? { + line: token.line, + column: token.col + } : null; + }; + + function set_moz_loc(mynode, moznode) { + var start = mynode.start; + var end = mynode.end; + if (start.pos != null && end.pos != null) { + moznode.range = [start.pos, end.pos]; + } + if (start.line) { + moznode.loc = { + start: moz_sub_loc(start), + end: moz_sub_loc(end) + }; + if (start.file) { + moznode.loc.source = start.file; + } + } + return moznode; + }; + + function def_to_moz(mytype, handler) { + mytype.DEFMETHOD("to_mozilla_ast", function() { + return set_moz_loc(this, handler(this)); + }); + }; + + function to_moz(node) { + return node != null ? node.to_mozilla_ast() : null; + }; + + function to_moz_block(node) { + return { + type: "BlockStatement", + body: node.body.map(to_moz) + }; + }; + +})(); + +AST_Node.warn_function = function(txt) { logger.error("uglifyjs2 WARN: " + txt); }; +exports.minify = function(files, options, name) { + options = defaults(options, { + spidermonkey : false, + outSourceMap : null, + sourceRoot : null, + inSourceMap : null, + fromString : false, + warnings : false, + mangle : {}, + output : null, + compress : {} + }); + base54.reset(); + + // 1. parse + var toplevel = null, + sourcesContent = {}; + + if (options.spidermonkey) { + toplevel = AST_Node.from_mozilla_ast(files); + } else { + if (typeof files == "string") + files = [ files ]; + files.forEach(function(file){ + var code = options.fromString + ? file + : rjsFile.readFile(file, "utf8"); + sourcesContent[file] = code; + toplevel = parse(code, { + filename: options.fromString ? name : file, + toplevel: toplevel + }); + }); + } + + // 2. compress + if (options.compress) { + var compress = { warnings: options.warnings }; + merge(compress, options.compress); + toplevel.figure_out_scope(); + var sq = Compressor(compress); + toplevel = toplevel.transform(sq); + } + + // 3. mangle + if (options.mangle) { + toplevel.figure_out_scope(); + toplevel.compute_char_frequency(); + toplevel.mangle_names(options.mangle); + } + + // 4. output + var inMap = options.inSourceMap; + var output = {}; + if (typeof options.inSourceMap == "string") { + inMap = rjsFile.readFile(options.inSourceMap, "utf8"); + } + if (options.outSourceMap) { + output.source_map = SourceMap({ + file: options.outSourceMap, + orig: inMap, + root: options.sourceRoot + }); + if (options.sourceMapIncludeSources) { + for (var file in sourcesContent) { + if (sourcesContent.hasOwnProperty(file)) { + output.source_map.get().setSourceContent(file, sourcesContent[file]); + } + } + } + + } + if (options.output) { + merge(output, options.output); + } + var stream = OutputStream(output); + toplevel.print(stream); + + if(options.outSourceMap){ + stream += "\n//# sourceMappingURL=" + options.outSourceMap; + } + + return { + code : stream + "", + map : output.source_map + "" + }; +}; + +// exports.describe_ast = function() { +// function doitem(ctor) { +// var sub = {}; +// ctor.SUBCLASSES.forEach(function(ctor){ +// sub[ctor.TYPE] = doitem(ctor); +// }); +// var ret = {}; +// if (ctor.SELF_PROPS.length > 0) ret.props = ctor.SELF_PROPS; +// if (ctor.SUBCLASSES.length > 0) ret.sub = sub; +// return ret; +// } +// return doitem(AST_Node).sub; +// } + +exports.describe_ast = function() { + var out = OutputStream({ beautify: true }); + function doitem(ctor) { + out.print("AST_" + ctor.TYPE); + var props = ctor.SELF_PROPS.filter(function(prop){ + return !/^\$/.test(prop); + }); + if (props.length > 0) { + out.space(); + out.with_parens(function(){ + props.forEach(function(prop, i){ + if (i) out.space(); + out.print(prop); + }); + }); + } + if (ctor.documentation) { + out.space(); + out.print_string(ctor.documentation); + } + if (ctor.SUBCLASSES.length > 0) { + out.space(); + out.with_block(function(){ + ctor.SUBCLASSES.forEach(function(ctor, i){ + out.indent(); + doitem(ctor); + out.newline(); + }); + }); + } + }; + doitem(AST_Node); + return out + ""; +}; + + +}); +/** + * @license Copyright (c) 2010-2014, The Dojo Foundation All Rights Reserved. + * Available via the MIT or new BSD license. + * see: http://github.com/jrburke/requirejs for details + */ + +/*jslint plusplus: true */ +/*global define: false */ + +define('parse', ['./esprimaAdapter', 'lang'], function (esprima, lang) { + 'use strict'; + + function arrayToString(ary) { + var output = '['; + if (ary) { + ary.forEach(function (item, i) { + output += (i > 0 ? ',' : '') + '"' + lang.jsEscape(item) + '"'; + }); + } + output += ']'; + + return output; + } + + //This string is saved off because JSLint complains + //about obj.arguments use, as 'reserved word' + var argPropName = 'arguments', + //Default object to use for "scope" checking for UMD identifiers. + emptyScope = {}, + mixin = lang.mixin, + hasProp = lang.hasProp; + + //From an esprima example for traversing its ast. + function traverse(object, visitor) { + var key, child; + + if (!object) { + return; + } + + if (visitor.call(null, object) === false) { + return false; + } + for (key in object) { + if (object.hasOwnProperty(key)) { + child = object[key]; + if (typeof child === 'object' && child !== null) { + if (traverse(child, visitor) === false) { + return false; + } + } + } + } + } + + //Like traverse, but visitor returning false just + //stops that subtree analysis, not the rest of tree + //visiting. + function traverseBroad(object, visitor) { + var key, child; + + if (!object) { + return; + } + + if (visitor.call(null, object) === false) { + return false; + } + for (key in object) { + if (object.hasOwnProperty(key)) { + child = object[key]; + if (typeof child === 'object' && child !== null) { + traverseBroad(child, visitor); + } + } + } + } + + /** + * Pulls out dependencies from an array literal with just string members. + * If string literals, will just return those string values in an array, + * skipping other items in the array. + * + * @param {Node} node an AST node. + * + * @returns {Array} an array of strings. + * If null is returned, then it means the input node was not a valid + * dependency. + */ + function getValidDeps(node) { + if (!node || node.type !== 'ArrayExpression' || !node.elements) { + return; + } + + var deps = []; + + node.elements.some(function (elem) { + if (elem.type === 'Literal') { + deps.push(elem.value); + } + }); + + return deps.length ? deps : undefined; + } + + // Detects regular or arrow function expressions as the desired expression + // type. + function isFnExpression(node) { + return (node && (node.type === 'FunctionExpression' || + node.type === 'ArrowFunctionExpression')); + } + + /** + * Main parse function. Returns a string of any valid require or + * define/require.def calls as part of one JavaScript source string. + * @param {String} moduleName the module name that represents this file. + * It is used to create a default define if there is not one already for the + * file. This allows properly tracing dependencies for builds. Otherwise, if + * the file just has a require() call, the file dependencies will not be + * properly reflected: the file will come before its dependencies. + * @param {String} moduleName + * @param {String} fileName + * @param {String} fileContents + * @param {Object} options optional options. insertNeedsDefine: true will + * add calls to require.needsDefine() if appropriate. + * @returns {String} JS source string or null, if no require or + * define/require.def calls are found. + */ + function parse(moduleName, fileName, fileContents, options) { + options = options || {}; + + //Set up source input + var i, moduleCall, depString, + moduleDeps = [], + result = '', + moduleList = [], + needsDefine = true, + astRoot = esprima.parse(fileContents); + + parse.recurse(astRoot, function (callName, config, name, deps, node, factoryIdentifier, fnExpScope) { + if (!deps) { + deps = []; + } + + if (callName === 'define' && (!name || name === moduleName)) { + needsDefine = false; + } + + if (!name) { + //If there is no module name, the dependencies are for + //this file/default module name. + moduleDeps = moduleDeps.concat(deps); + } else { + moduleList.push({ + name: name, + deps: deps + }); + } + + if (callName === 'define' && factoryIdentifier && hasProp(fnExpScope, factoryIdentifier)) { + return factoryIdentifier; + } + + //If define was found, no need to dive deeper, unless + //the config explicitly wants to dig deeper. + return !!options.findNestedDependencies; + }, options); + + if (options.insertNeedsDefine && needsDefine) { + result += 'require.needsDefine("' + moduleName + '");'; + } + + if (moduleDeps.length || moduleList.length) { + for (i = 0; i < moduleList.length; i++) { + moduleCall = moduleList[i]; + if (result) { + result += '\n'; + } + + //If this is the main module for this file, combine any + //"anonymous" dependencies (could come from a nested require + //call) with this module. + if (moduleCall.name === moduleName) { + moduleCall.deps = moduleCall.deps.concat(moduleDeps); + moduleDeps = []; + } + + depString = arrayToString(moduleCall.deps); + result += 'define("' + moduleCall.name + '",' + + depString + ');'; + } + if (moduleDeps.length) { + if (result) { + result += '\n'; + } + depString = arrayToString(moduleDeps); + result += 'define("' + moduleName + '",' + depString + ');'; + } + } + + return result || null; + } + + parse.traverse = traverse; + parse.traverseBroad = traverseBroad; + parse.isFnExpression = isFnExpression; + + /** + * Handles parsing a file recursively for require calls. + * @param {Array} parentNode the AST node to start with. + * @param {Function} onMatch function to call on a parse match. + * @param {Object} [options] This is normally the build config options if + * it is passed. + * @param {Object} [fnExpScope] holds list of function expresssion + * argument identifiers, set up internally, not passed in + */ + parse.recurse = function (object, onMatch, options, fnExpScope) { + //Like traverse, but skips if branches that would not be processed + //after has application that results in tests of true or false boolean + //literal values. + var key, child, result, i, params, param, tempObject, + hasHas = options && options.has; + + fnExpScope = fnExpScope || emptyScope; + + if (!object) { + return; + } + + //If has replacement has resulted in if(true){} or if(false){}, take + //the appropriate branch and skip the other one. + if (hasHas && object.type === 'IfStatement' && object.test.type && + object.test.type === 'Literal') { + if (object.test.value) { + //Take the if branch + this.recurse(object.consequent, onMatch, options, fnExpScope); + } else { + //Take the else branch + this.recurse(object.alternate, onMatch, options, fnExpScope); + } + } else { + result = this.parseNode(object, onMatch, fnExpScope); + if (result === false) { + return; + } else if (typeof result === 'string') { + return result; + } + + //Build up a "scope" object that informs nested recurse calls if + //the define call references an identifier that is likely a UMD + //wrapped function expression argument. + //Catch (function(a) {... wrappers + if (object.type === 'ExpressionStatement' && object.expression && + object.expression.type === 'CallExpression' && object.expression.callee && + isFnExpression(object.expression.callee)) { + tempObject = object.expression.callee; + } + // Catch !function(a) {... wrappers + if (object.type === 'UnaryExpression' && object.argument && + object.argument.type === 'CallExpression' && object.argument.callee && + isFnExpression(object.argument.callee)) { + tempObject = object.argument.callee; + } + if (tempObject && tempObject.params && tempObject.params.length) { + params = tempObject.params; + fnExpScope = mixin({}, fnExpScope, true); + for (i = 0; i < params.length; i++) { + param = params[i]; + if (param.type === 'Identifier') { + fnExpScope[param.name] = true; + } + } + } + + for (key in object) { + if (object.hasOwnProperty(key)) { + child = object[key]; + if (typeof child === 'object' && child !== null) { + result = this.recurse(child, onMatch, options, fnExpScope); + if (typeof result === 'string') { + break; + } + } + } + } + + //Check for an identifier for a factory function identifier being + //passed in as a function expression, indicating a UMD-type of + //wrapping. + if (typeof result === 'string') { + if (hasProp(fnExpScope, result)) { + //result still in scope, keep jumping out indicating the + //identifier still in use. + return result; + } + + return; + } + } + }; + + /** + * Determines if the file defines the require/define module API. + * Specifically, it looks for the `define.amd = ` expression. + * @param {String} fileName + * @param {String} fileContents + * @returns {Boolean} + */ + parse.definesRequire = function (fileName, fileContents) { + var found = false; + + traverse(esprima.parse(fileContents), function (node) { + if (parse.hasDefineAmd(node)) { + found = true; + + //Stop traversal + return false; + } + }); + + return found; + }; + + /** + * Finds require("") calls inside a CommonJS anonymous module wrapped in a + * define(function(require, exports, module){}) wrapper. These dependencies + * will be added to a modified define() call that lists the dependencies + * on the outside of the function. + * @param {String} fileName + * @param {String|Object} fileContents: a string of contents, or an already + * parsed AST tree. + * @returns {Array} an array of module names that are dependencies. Always + * returns an array, but could be of length zero. + */ + parse.getAnonDeps = function (fileName, fileContents) { + var astRoot = typeof fileContents === 'string' ? + esprima.parse(fileContents) : fileContents, + defFunc = this.findAnonDefineFactory(astRoot); + + return parse.getAnonDepsFromNode(defFunc); + }; + + /** + * Finds require("") calls inside a CommonJS anonymous module wrapped + * in a define function, given an AST node for the definition function. + * @param {Node} node the AST node for the definition function. + * @returns {Array} and array of dependency names. Can be of zero length. + */ + parse.getAnonDepsFromNode = function (node) { + var deps = [], + funcArgLength; + + if (node) { + this.findRequireDepNames(node, deps); + + //If no deps, still add the standard CommonJS require, exports, + //module, in that order, to the deps, but only if specified as + //function args. In particular, if exports is used, it is favored + //over the return value of the function, so only add it if asked. + funcArgLength = node.params && node.params.length; + if (funcArgLength) { + deps = (funcArgLength > 1 ? ["require", "exports", "module"] : + ["require"]).concat(deps); + } + } + return deps; + }; + + parse.isDefineNodeWithArgs = function (node) { + return node && node.type === 'CallExpression' && + node.callee && node.callee.type === 'Identifier' && + node.callee.name === 'define' && node[argPropName]; + }; + + /** + * Finds the function in define(function (require, exports, module){}); + * @param {Array} node + * @returns {Boolean} + */ + parse.findAnonDefineFactory = function (node) { + var match; + + traverse(node, function (node) { + var arg0, arg1; + + if (parse.isDefineNodeWithArgs(node)) { + + //Just the factory function passed to define + arg0 = node[argPropName][0]; + if (isFnExpression(arg0)) { + match = arg0; + return false; + } + + //A string literal module ID followed by the factory function. + arg1 = node[argPropName][1]; + if (arg0.type === 'Literal' && isFnExpression(arg1)) { + match = arg1; + return false; + } + } + }); + + return match; + }; + + /** + * Finds any config that is passed to requirejs. That includes calls to + * require/requirejs.config(), as well as require({}, ...) and + * requirejs({}, ...) + * @param {String} fileContents + * + * @returns {Object} a config details object with the following properties: + * - config: {Object} the config object found. Can be undefined if no + * config found. + * - range: {Array} the start index and end index in the contents where + * the config was found. Can be undefined if no config found. + * Can throw an error if the config in the file cannot be evaluated in + * a build context to valid JavaScript. + */ + parse.findConfig = function (fileContents) { + /*jslint evil: true */ + var jsConfig, foundConfig, stringData, foundRange, quote, quoteMatch, + quoteRegExp = /(:\s|\[\s*)(['"])/, + astRoot = esprima.parse(fileContents, { + loc: true + }); + + traverse(astRoot, function (node) { + var arg, + requireType = parse.hasRequire(node); + + if (requireType && (requireType === 'require' || + requireType === 'requirejs' || + requireType === 'requireConfig' || + requireType === 'requirejsConfig')) { + + arg = node[argPropName] && node[argPropName][0]; + + if (arg && arg.type === 'ObjectExpression') { + stringData = parse.nodeToString(fileContents, arg); + jsConfig = stringData.value; + foundRange = stringData.range; + return false; + } + } else { + arg = parse.getRequireObjectLiteral(node); + if (arg) { + stringData = parse.nodeToString(fileContents, arg); + jsConfig = stringData.value; + foundRange = stringData.range; + return false; + } + } + }); + + if (jsConfig) { + // Eval the config + quoteMatch = quoteRegExp.exec(jsConfig); + quote = (quoteMatch && quoteMatch[2]) || '"'; + foundConfig = eval('(' + jsConfig + ')'); + } + + return { + config: foundConfig, + range: foundRange, + quote: quote + }; + }; + + /** Returns the node for the object literal assigned to require/requirejs, + * for holding a declarative config. + */ + parse.getRequireObjectLiteral = function (node) { + if (node.id && node.id.type === 'Identifier' && + (node.id.name === 'require' || node.id.name === 'requirejs') && + node.init && node.init.type === 'ObjectExpression') { + return node.init; + } + }; + + /** + * Renames require/requirejs/define calls to be ns + '.' + require/requirejs/define + * Does *not* do .config calls though. See pragma.namespace for the complete + * set of namespace transforms. This function is used because require calls + * inside a define() call should not be renamed, so a simple regexp is not + * good enough. + * @param {String} fileContents the contents to transform. + * @param {String} ns the namespace, *not* including trailing dot. + * @return {String} the fileContents with the namespace applied + */ + parse.renameNamespace = function (fileContents, ns) { + var lines, + locs = [], + astRoot = esprima.parse(fileContents, { + loc: true + }); + + parse.recurse(astRoot, function (callName, config, name, deps, node) { + locs.push(node.loc); + //Do not recurse into define functions, they should be using + //local defines. + return callName !== 'define'; + }, {}); + + if (locs.length) { + lines = fileContents.split('\n'); + + //Go backwards through the found locs, adding in the namespace name + //in front. + locs.reverse(); + locs.forEach(function (loc) { + var startIndex = loc.start.column, + //start.line is 1-based, not 0 based. + lineIndex = loc.start.line - 1, + line = lines[lineIndex]; + + lines[lineIndex] = line.substring(0, startIndex) + + ns + '.' + + line.substring(startIndex, + line.length); + }); + + fileContents = lines.join('\n'); + } + + return fileContents; + }; + + /** + * Finds all dependencies specified in dependency arrays and inside + * simplified commonjs wrappers. + * @param {String} fileName + * @param {String} fileContents + * + * @returns {Array} an array of dependency strings. The dependencies + * have not been normalized, they may be relative IDs. + */ + parse.findDependencies = function (fileName, fileContents, options) { + var dependencies = [], + astRoot = esprima.parse(fileContents); + + parse.recurse(astRoot, function (callName, config, name, deps) { + if (deps) { + dependencies = dependencies.concat(deps); + } + }, options); + + return dependencies; + }; + + /** + * Finds only CJS dependencies, ones that are the form + * require('stringLiteral') + */ + parse.findCjsDependencies = function (fileName, fileContents) { + var dependencies = []; + + traverse(esprima.parse(fileContents), function (node) { + var arg; + + if (node && node.type === 'CallExpression' && node.callee && + node.callee.type === 'Identifier' && + node.callee.name === 'require' && node[argPropName] && + node[argPropName].length === 1) { + arg = node[argPropName][0]; + if (arg.type === 'Literal') { + dependencies.push(arg.value); + } + } + }); + + return dependencies; + }; + + //function define() {} + parse.hasDefDefine = function (node) { + return node.type === 'FunctionDeclaration' && node.id && + node.id.type === 'Identifier' && node.id.name === 'define'; + }; + + //define.amd = ... + parse.hasDefineAmd = function (node) { + return node && node.type === 'AssignmentExpression' && + node.left && node.left.type === 'MemberExpression' && + node.left.object && node.left.object.name === 'define' && + node.left.property && node.left.property.name === 'amd'; + }; + + //define.amd reference, as in: if (define.amd) + parse.refsDefineAmd = function (node) { + return node && node.type === 'MemberExpression' && + node.object && node.object.name === 'define' && + node.object.type === 'Identifier' && + node.property && node.property.name === 'amd' && + node.property.type === 'Identifier'; + }; + + //require(), requirejs(), require.config() and requirejs.config() + parse.hasRequire = function (node) { + var callName, + c = node && node.callee; + + if (node && node.type === 'CallExpression' && c) { + if (c.type === 'Identifier' && + (c.name === 'require' || + c.name === 'requirejs')) { + //A require/requirejs({}, ...) call + callName = c.name; + } else if (c.type === 'MemberExpression' && + c.object && + c.object.type === 'Identifier' && + (c.object.name === 'require' || + c.object.name === 'requirejs') && + c.property && c.property.name === 'config') { + // require/requirejs.config({}) call + callName = c.object.name + 'Config'; + } + } + + return callName; + }; + + //define() + parse.hasDefine = function (node) { + return node && node.type === 'CallExpression' && node.callee && + node.callee.type === 'Identifier' && + node.callee.name === 'define'; + }; + + /** + * If there is a named define in the file, returns the name. Does not + * scan for mulitple names, just the first one. + */ + parse.getNamedDefine = function (fileContents) { + var name; + traverse(esprima.parse(fileContents), function (node) { + if (node && node.type === 'CallExpression' && node.callee && + node.callee.type === 'Identifier' && + node.callee.name === 'define' && + node[argPropName] && node[argPropName][0] && + node[argPropName][0].type === 'Literal') { + name = node[argPropName][0].value; + return false; + } + }); + + return name; + }; + + /** + * Determines if define(), require({}|[]) or requirejs was called in the + * file. Also finds out if define() is declared and if define.amd is called. + */ + parse.usesAmdOrRequireJs = function (fileName, fileContents) { + var uses; + + traverse(esprima.parse(fileContents), function (node) { + var type, callName, arg; + + if (parse.hasDefDefine(node)) { + //function define() {} + type = 'declaresDefine'; + } else if (parse.hasDefineAmd(node)) { + type = 'defineAmd'; + } else { + callName = parse.hasRequire(node); + if (callName) { + arg = node[argPropName] && node[argPropName][0]; + if (arg && (arg.type === 'ObjectExpression' || + arg.type === 'ArrayExpression')) { + type = callName; + } + } else if (parse.hasDefine(node)) { + type = 'define'; + } + } + + if (type) { + if (!uses) { + uses = {}; + } + uses[type] = true; + } + }); + + return uses; + }; + + /** + * Determines if require(''), exports.x =, module.exports =, + * __dirname, __filename are used. So, not strictly traditional CommonJS, + * also checks for Node variants. + */ + parse.usesCommonJs = function (fileName, fileContents) { + var uses = null, + assignsExports = false; + + + traverse(esprima.parse(fileContents), function (node) { + var type, + exp = node.expression || node.init; + + if (node.type === 'Identifier' && + (node.name === '__dirname' || node.name === '__filename')) { + type = node.name.substring(2); + } else if (node.type === 'VariableDeclarator' && node.id && + node.id.type === 'Identifier' && + node.id.name === 'exports') { + //Hmm, a variable assignment for exports, so does not use cjs + //exports. + type = 'varExports'; + } else if (exp && exp.type === 'AssignmentExpression' && exp.left && + exp.left.type === 'MemberExpression' && exp.left.object) { + if (exp.left.object.name === 'module' && exp.left.property && + exp.left.property.name === 'exports') { + type = 'moduleExports'; + } else if (exp.left.object.name === 'exports' && + exp.left.property) { + type = 'exports'; + } + + } else if (node && node.type === 'CallExpression' && node.callee && + node.callee.type === 'Identifier' && + node.callee.name === 'require' && node[argPropName] && + node[argPropName].length === 1 && + node[argPropName][0].type === 'Literal') { + type = 'require'; + } + + if (type) { + if (type === 'varExports') { + assignsExports = true; + } else if (type !== 'exports' || !assignsExports) { + if (!uses) { + uses = {}; + } + uses[type] = true; + } + } + }); + + return uses; + }; + + + parse.findRequireDepNames = function (node, deps) { + traverse(node, function (node) { + var arg; + + if (node && node.type === 'CallExpression' && node.callee && + node.callee.type === 'Identifier' && + node.callee.name === 'require' && + node[argPropName] && node[argPropName].length === 1) { + + arg = node[argPropName][0]; + if (arg.type === 'Literal') { + deps.push(arg.value); + } + } + }); + }; + + /** + * Determines if a specific node is a valid require or define/require.def + * call. + * @param {Array} node + * @param {Function} onMatch a function to call when a match is found. + * It is passed the match name, and the config, name, deps possible args. + * The config, name and deps args are not normalized. + * @param {Object} fnExpScope an object whose keys are all function + * expression identifiers that should be in scope. Useful for UMD wrapper + * detection to avoid parsing more into the wrapped UMD code. + * + * @returns {String} a JS source string with the valid require/define call. + * Otherwise null. + */ + parse.parseNode = function (node, onMatch, fnExpScope) { + var name, deps, cjsDeps, arg, factory, exp, refsDefine, bodyNode, + args = node && node[argPropName], + callName = parse.hasRequire(node); + + if (callName === 'require' || callName === 'requirejs') { + //A plain require/requirejs call + arg = node[argPropName] && node[argPropName][0]; + if (arg && arg.type !== 'ArrayExpression') { + if (arg.type === 'ObjectExpression') { + //A config call, try the second arg. + arg = node[argPropName][1]; + } + } + + deps = getValidDeps(arg); + if (!deps) { + return; + } + + return onMatch("require", null, null, deps, node); + } else if (parse.hasDefine(node) && args && args.length) { + name = args[0]; + deps = args[1]; + factory = args[2]; + + if (name.type === 'ArrayExpression') { + //No name, adjust args + factory = deps; + deps = name; + name = null; + } else if (isFnExpression(name)) { + //Just the factory, no name or deps + factory = name; + name = deps = null; + } else if (name.type !== 'Literal') { + //An object literal, just null out + name = deps = factory = null; + } + + if (name && name.type === 'Literal' && deps) { + if (isFnExpression(deps)) { + //deps is the factory + factory = deps; + deps = null; + } else if (deps.type === 'ObjectExpression') { + //deps is object literal, null out + deps = factory = null; + } else if (deps.type === 'Identifier' && args.length === 2) { + // define('id', factory) + deps = factory = null; + } + } + + if (deps && deps.type === 'ArrayExpression') { + deps = getValidDeps(deps); + } else if (isFnExpression(factory)) { + //If no deps and a factory function, could be a commonjs sugar + //wrapper, scan the function for dependencies. + cjsDeps = parse.getAnonDepsFromNode(factory); + if (cjsDeps.length) { + deps = cjsDeps; + } + } else if (deps || factory) { + //Does not match the shape of an AMD call. + return; + } + + //Just save off the name as a string instead of an AST object. + if (name && name.type === 'Literal') { + name = name.value; + } + + return onMatch("define", null, name, deps, node, + (factory && factory.type === 'Identifier' ? factory.name : undefined), + fnExpScope); + } else if (node.type === 'CallExpression' && node.callee && + isFnExpression(node.callee) && + node.callee.body && node.callee.body.body && + node.callee.body.body.length === 1 && + node.callee.body.body[0].type === 'IfStatement') { + bodyNode = node.callee.body.body[0]; + //Look for a define(Identifier) case, but only if inside an + //if that has a define.amd test + if (bodyNode.consequent && bodyNode.consequent.body) { + exp = bodyNode.consequent.body[0]; + if (exp.type === 'ExpressionStatement' && exp.expression && + parse.hasDefine(exp.expression) && + exp.expression.arguments && + exp.expression.arguments.length === 1 && + exp.expression.arguments[0].type === 'Identifier') { + + //Calls define(Identifier) as first statement in body. + //Confirm the if test references define.amd + traverse(bodyNode.test, function (node) { + if (parse.refsDefineAmd(node)) { + refsDefine = true; + return false; + } + }); + + if (refsDefine) { + return onMatch("define", null, null, null, exp.expression, + exp.expression.arguments[0].name, fnExpScope); + } + } + } + } + }; + + /** + * Converts an AST node into a JS source string by extracting + * the node's location from the given contents string. Assumes + * esprima.parse() with loc was done. + * @param {String} contents + * @param {Object} node + * @returns {String} a JS source string. + */ + parse.nodeToString = function (contents, node) { + var extracted, + loc = node.loc, + lines = contents.split('\n'), + firstLine = loc.start.line > 1 ? + lines.slice(0, loc.start.line - 1).join('\n') + '\n' : + '', + preamble = firstLine + + lines[loc.start.line - 1].substring(0, loc.start.column); + + if (loc.start.line === loc.end.line) { + extracted = lines[loc.start.line - 1].substring(loc.start.column, + loc.end.column); + } else { + extracted = lines[loc.start.line - 1].substring(loc.start.column) + + '\n' + + lines.slice(loc.start.line, loc.end.line - 1).join('\n') + + '\n' + + lines[loc.end.line - 1].substring(0, loc.end.column); + } + + return { + value: extracted, + range: [ + preamble.length, + preamble.length + extracted.length + ] + }; + }; + + /** + * Extracts license comments from JS text. + * @param {String} fileName + * @param {String} contents + * @returns {String} a string of license comments. + */ + parse.getLicenseComments = function (fileName, contents) { + var commentNode, refNode, subNode, value, i, j, + //xpconnect's Reflect does not support comment or range, but + //prefer continued operation vs strict parity of operation, + //as license comments can be expressed in other ways, like + //via wrap args, or linked via sourcemaps. + ast = esprima.parse(contents, { + comment: true, + range: true + }), + result = '', + existsMap = {}, + lineEnd = contents.indexOf('\r') === -1 ? '\n' : '\r\n'; + + if (ast.comments) { + for (i = 0; i < ast.comments.length; i++) { + commentNode = ast.comments[i]; + + if (commentNode.type === 'Line') { + value = '//' + commentNode.value + lineEnd; + refNode = commentNode; + + if (i + 1 >= ast.comments.length) { + value += lineEnd; + } else { + //Look for immediately adjacent single line comments + //since it could from a multiple line comment made out + //of single line comments. Like this comment. + for (j = i + 1; j < ast.comments.length; j++) { + subNode = ast.comments[j]; + if (subNode.type === 'Line' && + subNode.range[0] === refNode.range[1] + 1) { + //Adjacent single line comment. Collect it. + value += '//' + subNode.value + lineEnd; + refNode = subNode; + } else { + //No more single line comment blocks. Break out + //and continue outer looping. + break; + } + } + value += lineEnd; + i = j - 1; + } + } else { + value = '/*' + commentNode.value + '*/' + lineEnd + lineEnd; + } + + if (!existsMap[value] && (value.indexOf('license') !== -1 || + (commentNode.type === 'Block' && + value.indexOf('/*!') === 0) || + value.indexOf('opyright') !== -1 || + value.indexOf('(c)') !== -1)) { + + result += value; + existsMap[value] = true; + } + + } + } + + return result; + }; + + return parse; +}); +/** + * @license Copyright (c) 2012-2014, The Dojo Foundation All Rights Reserved. + * Available via the MIT or new BSD license. + * see: http://github.com/jrburke/requirejs for details + */ + +/*global define */ + +define('transform', [ './esprimaAdapter', './parse', 'logger', 'lang'], +function (esprima, parse, logger, lang) { + 'use strict'; + var transform, + baseIndentRegExp = /^([ \t]+)/, + indentRegExp = /\{[\r\n]+([ \t]+)/, + keyRegExp = /^[_A-Za-z]([A-Za-z\d_]*)$/, + bulkIndentRegExps = { + '\n': /\n/g, + '\r\n': /\r\n/g + }; + + function applyIndent(str, indent, lineReturn) { + var regExp = bulkIndentRegExps[lineReturn]; + return str.replace(regExp, '$&' + indent); + } + + transform = { + toTransport: function (namespace, moduleName, path, contents, onFound, options) { + options = options || {}; + + var astRoot, contentLines, modLine, + foundAnon, + scanCount = 0, + scanReset = false, + defineInfos = [], + applySourceUrl = function (contents) { + if (options.useSourceUrl) { + contents = 'eval("' + lang.jsEscape(contents) + + '\\n//# sourceURL=' + (path.indexOf('/') === 0 ? '' : '/') + + path + + '");\n'; + } + return contents; + }; + + try { + astRoot = esprima.parse(contents, { + loc: true + }); + } catch (e) { + logger.trace('toTransport skipping ' + path + ': ' + + e.toString()); + return contents; + } + + //Find the define calls and their position in the files. + parse.traverse(astRoot, function (node) { + var args, firstArg, firstArgLoc, factoryNode, + needsId, depAction, foundId, init, + sourceUrlData, range, + namespaceExists = false; + + // If a bundle script with a define declaration, do not + // parse any further at this level. Likely a built layer + // by some other tool. + if (node.type === 'VariableDeclarator' && + node.id && node.id.name === 'define' && + node.id.type === 'Identifier') { + init = node.init; + if (init && init.callee && + init.callee.type === 'CallExpression' && + init.callee.callee && + init.callee.callee.type === 'Identifier' && + init.callee.callee.name === 'require' && + init.callee.arguments && init.callee.arguments.length === 1 && + init.callee.arguments[0].type === 'Literal' && + init.callee.arguments[0].value && + init.callee.arguments[0].value.indexOf('amdefine') !== -1) { + // the var define = require('amdefine')(module) case, + // keep going in that case. + } else { + return false; + } + } + + namespaceExists = namespace && + node.type === 'CallExpression' && + node.callee && node.callee.object && + node.callee.object.type === 'Identifier' && + node.callee.object.name === namespace && + node.callee.property.type === 'Identifier' && + node.callee.property.name === 'define'; + + if (namespaceExists || parse.isDefineNodeWithArgs(node)) { + //The arguments are where its at. + args = node.arguments; + if (!args || !args.length) { + return; + } + + firstArg = args[0]; + firstArgLoc = firstArg.loc; + + if (args.length === 1) { + if (firstArg.type === 'Identifier') { + //The define(factory) case, but + //only allow it if one Identifier arg, + //to limit impact of false positives. + needsId = true; + depAction = 'empty'; + } else if (parse.isFnExpression(firstArg)) { + //define(function(){}) + factoryNode = firstArg; + needsId = true; + depAction = 'scan'; + } else if (firstArg.type === 'ObjectExpression') { + //define({}); + needsId = true; + depAction = 'skip'; + } else if (firstArg.type === 'Literal' && + typeof firstArg.value === 'number') { + //define('12345'); + needsId = true; + depAction = 'skip'; + } else if (firstArg.type === 'UnaryExpression' && + firstArg.operator === '-' && + firstArg.argument && + firstArg.argument.type === 'Literal' && + typeof firstArg.argument.value === 'number') { + //define('-12345'); + needsId = true; + depAction = 'skip'; + } else if (firstArg.type === 'MemberExpression' && + firstArg.object && + firstArg.property && + firstArg.property.type === 'Identifier') { + //define(this.key); + needsId = true; + depAction = 'empty'; + } + } else if (firstArg.type === 'ArrayExpression') { + //define([], ...); + needsId = true; + depAction = 'skip'; + } else if (firstArg.type === 'Literal' && + typeof firstArg.value === 'string') { + //define('string', ....) + //Already has an ID. + needsId = false; + if (args.length === 2 && + parse.isFnExpression(args[1])) { + //Needs dependency scanning. + factoryNode = args[1]; + depAction = 'scan'; + } else { + depAction = 'skip'; + } + } else { + //Unknown define entity, keep looking, even + //in the subtree for this node. + return; + } + + range = { + foundId: foundId, + needsId: needsId, + depAction: depAction, + namespaceExists: namespaceExists, + node: node, + defineLoc: node.loc, + firstArgLoc: firstArgLoc, + factoryNode: factoryNode, + sourceUrlData: sourceUrlData + }; + + //Only transform ones that do not have IDs. If it has an + //ID but no dependency array, assume it is something like + //a phonegap implementation, that has its own internal + //define that cannot handle dependency array constructs, + //and if it is a named module, then it means it has been + //set for transport form. + if (range.needsId) { + if (foundAnon) { + logger.trace(path + ' has more than one anonymous ' + + 'define. May be a built file from another ' + + 'build system like, Ender. Skipping normalization.'); + defineInfos = []; + return false; + } else { + foundAnon = range; + defineInfos.push(range); + } + } else if (depAction === 'scan') { + scanCount += 1; + if (scanCount > 1) { + //Just go back to an array that just has the + //anon one, since this is an already optimized + //file like the phonegap one. + if (!scanReset) { + defineInfos = foundAnon ? [foundAnon] : []; + scanReset = true; + } + } else { + defineInfos.push(range); + } + } + } + }); + + + if (!defineInfos.length) { + return applySourceUrl(contents); + } + + //Reverse the matches, need to start from the bottom of + //the file to modify it, so that the ranges are still true + //further up. + defineInfos.reverse(); + + contentLines = contents.split('\n'); + + modLine = function (loc, contentInsertion) { + var startIndex = loc.start.column, + //start.line is 1-based, not 0 based. + lineIndex = loc.start.line - 1, + line = contentLines[lineIndex]; + contentLines[lineIndex] = line.substring(0, startIndex) + + contentInsertion + + line.substring(startIndex, + line.length); + }; + + defineInfos.forEach(function (info) { + var deps, + contentInsertion = '', + depString = ''; + + //Do the modifications "backwards", in other words, start with the + //one that is farthest down and work up, so that the ranges in the + //defineInfos still apply. So that means deps, id, then namespace. + if (info.needsId && moduleName) { + contentInsertion += "'" + moduleName + "',"; + } + + if (info.depAction === 'scan') { + deps = parse.getAnonDepsFromNode(info.factoryNode); + + if (deps.length) { + depString = '[' + deps.map(function (dep) { + return "'" + dep + "'"; + }) + ']'; + } else { + depString = '[]'; + } + depString += ','; + + if (info.factoryNode) { + //Already have a named module, need to insert the + //dependencies after the name. + modLine(info.factoryNode.loc, depString); + } else { + contentInsertion += depString; + } + } + + if (contentInsertion) { + modLine(info.firstArgLoc, contentInsertion); + } + + //Do namespace last so that ui does not mess upthe parenRange + //used above. + if (namespace && !info.namespaceExists) { + modLine(info.defineLoc, namespace + '.'); + } + + //Notify any listener for the found info + if (onFound) { + onFound(info); + } + }); + + contents = contentLines.join('\n'); + + return applySourceUrl(contents); + }, + + /** + * Modify the contents of a require.config/requirejs.config call. This + * call will LOSE any existing comments that are in the config string. + * + * @param {String} fileContents String that may contain a config call + * @param {Function} onConfig Function called when the first config + * call is found. It will be passed an Object which is the current + * config, and the onConfig function should return an Object to use + * as the config. + * @return {String} the fileContents with the config changes applied. + */ + modifyConfig: function (fileContents, onConfig) { + var details = parse.findConfig(fileContents), + config = details.config; + + if (config) { + config = onConfig(config); + if (config) { + return transform.serializeConfig(config, + fileContents, + details.range[0], + details.range[1], + { + quote: details.quote + }); + } + } + + return fileContents; + }, + + serializeConfig: function (config, fileContents, start, end, options) { + //Calculate base level of indent + var indent, match, configString, outDentRegExp, + baseIndent = '', + startString = fileContents.substring(0, start), + existingConfigString = fileContents.substring(start, end), + lineReturn = existingConfigString.indexOf('\r') === -1 ? '\n' : '\r\n', + lastReturnIndex = startString.lastIndexOf('\n'); + + //Get the basic amount of indent for the require config call. + if (lastReturnIndex === -1) { + lastReturnIndex = 0; + } + + match = baseIndentRegExp.exec(startString.substring(lastReturnIndex + 1, start)); + if (match && match[1]) { + baseIndent = match[1]; + } + + //Calculate internal indentation for config + match = indentRegExp.exec(existingConfigString); + if (match && match[1]) { + indent = match[1]; + } + + if (!indent || indent.length < baseIndent) { + indent = ' '; + } else { + indent = indent.substring(baseIndent.length); + } + + outDentRegExp = new RegExp('(' + lineReturn + ')' + indent, 'g'); + + configString = transform.objectToString(config, { + indent: indent, + lineReturn: lineReturn, + outDentRegExp: outDentRegExp, + quote: options && options.quote + }); + + //Add in the base indenting level. + configString = applyIndent(configString, baseIndent, lineReturn); + + return startString + configString + fileContents.substring(end); + }, + + /** + * Tries converting a JS object to a string. This will likely suck, and + * is tailored to the type of config expected in a loader config call. + * So, hasOwnProperty fields, strings, numbers, arrays and functions, + * no weird recursively referenced stuff. + * @param {Object} obj the object to convert + * @param {Object} options options object with the following values: + * {String} indent the indentation to use for each level + * {String} lineReturn the type of line return to use + * {outDentRegExp} outDentRegExp the regexp to use to outdent functions + * {String} quote the quote type to use, ' or ". Optional. Default is " + * @param {String} totalIndent the total indent to print for this level + * @return {String} a string representation of the object. + */ + objectToString: function (obj, options, totalIndent) { + var startBrace, endBrace, nextIndent, + first = true, + value = '', + lineReturn = options.lineReturn, + indent = options.indent, + outDentRegExp = options.outDentRegExp, + quote = options.quote || '"'; + + totalIndent = totalIndent || ''; + nextIndent = totalIndent + indent; + + if (obj === null) { + value = 'null'; + } else if (obj === undefined) { + value = 'undefined'; + } else if (typeof obj === 'number' || typeof obj === 'boolean') { + value = obj; + } else if (typeof obj === 'string') { + //Use double quotes in case the config may also work as JSON. + value = quote + lang.jsEscape(obj) + quote; + } else if (lang.isArray(obj)) { + lang.each(obj, function (item, i) { + value += (i !== 0 ? ',' + lineReturn : '' ) + + nextIndent + + transform.objectToString(item, + options, + nextIndent); + }); + + startBrace = '['; + endBrace = ']'; + } else if (lang.isFunction(obj) || lang.isRegExp(obj)) { + //The outdent regexp just helps pretty up the conversion + //just in node. Rhino strips comments and does a different + //indent scheme for Function toString, so not really helpful + //there. + value = obj.toString().replace(outDentRegExp, '$1'); + } else { + //An object + lang.eachProp(obj, function (v, prop) { + value += (first ? '': ',' + lineReturn) + + nextIndent + + (keyRegExp.test(prop) ? prop : quote + lang.jsEscape(prop) + quote )+ + ': ' + + transform.objectToString(v, + options, + nextIndent); + first = false; + }); + startBrace = '{'; + endBrace = '}'; + } + + if (startBrace) { + value = startBrace + + lineReturn + + value + + lineReturn + totalIndent + + endBrace; + } + + return value; + } + }; + + return transform; +}); +/** + * @license Copyright (c) 2010-2014, The Dojo Foundation All Rights Reserved. + * Available via the MIT or new BSD license. + * see: http://github.com/jrburke/requirejs for details + */ + +/*jslint regexp: true, plusplus: true */ +/*global define: false */ + +define('pragma', ['parse', 'logger'], function (parse, logger) { + 'use strict'; + function Temp() {} + + function create(obj, mixin) { + Temp.prototype = obj; + var temp = new Temp(), prop; + + //Avoid any extra memory hanging around + Temp.prototype = null; + + if (mixin) { + for (prop in mixin) { + if (mixin.hasOwnProperty(prop) && !temp.hasOwnProperty(prop)) { + temp[prop] = mixin[prop]; + } + } + } + + return temp; // Object + } + + var pragma = { + conditionalRegExp: /(exclude|include)Start\s*\(\s*["'](\w+)["']\s*,(.*)\)/, + useStrictRegExp: /(^|[^{]\r?\n)['"]use strict['"];/g, + hasRegExp: /has\s*\(\s*['"]([^'"]+)['"]\s*\)/g, + configRegExp: /(^|[^\.])(requirejs|require)(\.config)\s*\(/g, + nsWrapRegExp: /\/\*requirejs namespace: true \*\//, + apiDefRegExp: /var requirejs,\s*require,\s*define;/, + defineCheckRegExp: /typeof\s+define\s*===?\s*["']function["']\s*&&\s*define\s*\.\s*amd/g, + defineStringCheckRegExp: /typeof\s+define\s*===?\s*["']function["']\s*&&\s*define\s*\[\s*["']amd["']\s*\]/g, + defineTypeFirstCheckRegExp: /\s*["']function["']\s*==(=?)\s*typeof\s+define\s*&&\s*define\s*\.\s*amd/g, + defineJQueryRegExp: /typeof\s+define\s*===?\s*["']function["']\s*&&\s*define\s*\.\s*amd\s*&&\s*define\s*\.\s*amd\s*\.\s*jQuery/g, + defineHasRegExp: /typeof\s+define\s*==(=)?\s*['"]function['"]\s*&&\s*typeof\s+define\.amd\s*==(=)?\s*['"]object['"]\s*&&\s*define\.amd/g, + defineTernaryRegExp: /typeof\s+define\s*===?\s*['"]function["']\s*&&\s*define\s*\.\s*amd\s*\?\s*define/, + amdefineRegExp: /if\s*\(\s*typeof define\s*\!==\s*'function'\s*\)\s*\{\s*[^\{\}]+amdefine[^\{\}]+\}/g, + + removeStrict: function (contents, config) { + return config.useStrict ? contents : contents.replace(pragma.useStrictRegExp, '$1'); + }, + + namespace: function (fileContents, ns, onLifecycleName) { + if (ns) { + //Namespace require/define calls + fileContents = fileContents.replace(pragma.configRegExp, '$1' + ns + '.$2$3('); + + + fileContents = parse.renameNamespace(fileContents, ns); + + //Namespace define ternary use: + fileContents = fileContents.replace(pragma.defineTernaryRegExp, + "typeof " + ns + ".define === 'function' && " + ns + ".define.amd ? " + ns + ".define"); + + //Namespace define jquery use: + fileContents = fileContents.replace(pragma.defineJQueryRegExp, + "typeof " + ns + ".define === 'function' && " + ns + ".define.amd && " + ns + ".define.amd.jQuery"); + + //Namespace has.js define use: + fileContents = fileContents.replace(pragma.defineHasRegExp, + "typeof " + ns + ".define === 'function' && typeof " + ns + ".define.amd === 'object' && " + ns + ".define.amd"); + + //Namespace define checks. + //Do these ones last, since they are a subset of the more specific + //checks above. + fileContents = fileContents.replace(pragma.defineCheckRegExp, + "typeof " + ns + ".define === 'function' && " + ns + ".define.amd"); + fileContents = fileContents.replace(pragma.defineStringCheckRegExp, + "typeof " + ns + ".define === 'function' && " + ns + ".define['amd']"); + fileContents = fileContents.replace(pragma.defineTypeFirstCheckRegExp, + "'function' === typeof " + ns + ".define && " + ns + ".define.amd"); + + //Check for require.js with the require/define definitions + if (pragma.apiDefRegExp.test(fileContents) && + fileContents.indexOf("if (!" + ns + " || !" + ns + ".requirejs)") === -1) { + //Wrap the file contents in a typeof check, and a function + //to contain the API globals. + fileContents = "var " + ns + ";(function () { if (!" + ns + " || !" + ns + ".requirejs) {\n" + + "if (!" + ns + ") { " + ns + ' = {}; } else { require = ' + ns + '; }\n' + + fileContents + + "\n" + + ns + ".requirejs = requirejs;" + + ns + ".require = require;" + + ns + ".define = define;\n" + + "}\n}());"; + } + + //Finally, if the file wants a special wrapper because it ties + //in to the requirejs internals in a way that would not fit + //the above matches, do that. Look for /*requirejs namespace: true*/ + if (pragma.nsWrapRegExp.test(fileContents)) { + //Remove the pragma. + fileContents = fileContents.replace(pragma.nsWrapRegExp, ''); + + //Alter the contents. + fileContents = '(function () {\n' + + 'var require = ' + ns + '.require,' + + 'requirejs = ' + ns + '.requirejs,' + + 'define = ' + ns + '.define;\n' + + fileContents + + '\n}());'; + } + } + + return fileContents; + }, + + /** + * processes the fileContents for some //>> conditional statements + */ + process: function (fileName, fileContents, config, onLifecycleName, pluginCollector) { + /*jslint evil: true */ + var foundIndex = -1, startIndex = 0, lineEndIndex, conditionLine, + matches, type, marker, condition, isTrue, endRegExp, endMatches, + endMarkerIndex, shouldInclude, startLength, lifecycleHas, deps, + i, dep, moduleName, collectorMod, + lifecyclePragmas, pragmas = config.pragmas, hasConfig = config.has, + //Legacy arg defined to help in dojo conversion script. Remove later + //when dojo no longer needs conversion: + kwArgs = pragmas; + + //Mix in a specific lifecycle scoped object, to allow targeting + //some pragmas/has tests to only when files are saved, or at different + //lifecycle events. Do not bother with kwArgs in this section, since + //the old dojo kwArgs were for all points in the build lifecycle. + if (onLifecycleName) { + lifecyclePragmas = config['pragmas' + onLifecycleName]; + lifecycleHas = config['has' + onLifecycleName]; + + if (lifecyclePragmas) { + pragmas = create(pragmas || {}, lifecyclePragmas); + } + + if (lifecycleHas) { + hasConfig = create(hasConfig || {}, lifecycleHas); + } + } + + //Replace has references if desired + if (hasConfig) { + fileContents = fileContents.replace(pragma.hasRegExp, function (match, test) { + if (hasConfig.hasOwnProperty(test)) { + return !!hasConfig[test]; + } + return match; + }); + } + + if (!config.skipPragmas) { + + while ((foundIndex = fileContents.indexOf("//>>", startIndex)) !== -1) { + //Found a conditional. Get the conditional line. + lineEndIndex = fileContents.indexOf("\n", foundIndex); + if (lineEndIndex === -1) { + lineEndIndex = fileContents.length - 1; + } + + //Increment startIndex past the line so the next conditional search can be done. + startIndex = lineEndIndex + 1; + + //Break apart the conditional. + conditionLine = fileContents.substring(foundIndex, lineEndIndex + 1); + matches = conditionLine.match(pragma.conditionalRegExp); + if (matches) { + type = matches[1]; + marker = matches[2]; + condition = matches[3]; + isTrue = false; + //See if the condition is true. + try { + isTrue = !!eval("(" + condition + ")"); + } catch (e) { + throw "Error in file: " + + fileName + + ". Conditional comment: " + + conditionLine + + " failed with this error: " + e; + } + + //Find the endpoint marker. + endRegExp = new RegExp('\\/\\/\\>\\>\\s*' + type + 'End\\(\\s*[\'"]' + marker + '[\'"]\\s*\\)', "g"); + endMatches = endRegExp.exec(fileContents.substring(startIndex, fileContents.length)); + if (endMatches) { + endMarkerIndex = startIndex + endRegExp.lastIndex - endMatches[0].length; + + //Find the next line return based on the match position. + lineEndIndex = fileContents.indexOf("\n", endMarkerIndex); + if (lineEndIndex === -1) { + lineEndIndex = fileContents.length - 1; + } + + //Should we include the segment? + shouldInclude = ((type === "exclude" && !isTrue) || (type === "include" && isTrue)); + + //Remove the conditional comments, and optionally remove the content inside + //the conditional comments. + startLength = startIndex - foundIndex; + fileContents = fileContents.substring(0, foundIndex) + + (shouldInclude ? fileContents.substring(startIndex, endMarkerIndex) : "") + + fileContents.substring(lineEndIndex + 1, fileContents.length); + + //Move startIndex to foundIndex, since that is the new position in the file + //where we need to look for more conditionals in the next while loop pass. + startIndex = foundIndex; + } else { + throw "Error in file: " + + fileName + + ". Cannot find end marker for conditional comment: " + + conditionLine; + + } + } + } + } + + //If need to find all plugin resources to optimize, do that now, + //before namespacing, since the namespacing will change the API + //names. + //If there is a plugin collector, scan the file for plugin resources. + if (config.optimizeAllPluginResources && pluginCollector) { + try { + deps = parse.findDependencies(fileName, fileContents); + if (deps.length) { + for (i = 0; i < deps.length; i++) { + dep = deps[i]; + if (dep.indexOf('!') !== -1) { + moduleName = dep.split('!')[0]; + collectorMod = pluginCollector[moduleName]; + if (!collectorMod) { + collectorMod = pluginCollector[moduleName] = []; + } + collectorMod.push(dep); + } + } + } + } catch (eDep) { + logger.error('Parse error looking for plugin resources in ' + + fileName + ', skipping.'); + } + } + + //Strip amdefine use for node-shared modules. + if (!config.keepAmdefine) { + fileContents = fileContents.replace(pragma.amdefineRegExp, ''); + } + + //Do namespacing + if (onLifecycleName === 'OnSave' && config.namespace) { + fileContents = pragma.namespace(fileContents, config.namespace, onLifecycleName); + } + + + return pragma.removeStrict(fileContents, config); + } + }; + + return pragma; +}); +if(env === 'browser') { +/** + * @license Copyright (c) 2010-2014, The Dojo Foundation All Rights Reserved. + * Available via the MIT or new BSD license. + * see: http://github.com/jrburke/requirejs for details + */ + +/*jslint strict: false */ +/*global define: false */ + +define('browser/optimize', {}); + +} + +if(env === 'node') { +/** + * @license Copyright (c) 2010-2014, The Dojo Foundation All Rights Reserved. + * Available via the MIT or new BSD license. + * see: http://github.com/jrburke/requirejs for details + */ + +/*jslint strict: false */ +/*global define: false */ + +define('node/optimize', {}); + +} + +if(env === 'rhino') { +/** + * @license Copyright (c) 2010-2014, The Dojo Foundation All Rights Reserved. + * Available via the MIT or new BSD license. + * see: http://github.com/jrburke/requirejs for details + */ + +/*jslint sloppy: true, plusplus: true */ +/*global define, java, Packages, com */ + +define('rhino/optimize', ['logger', 'env!env/file'], function (logger, file) { + + //Add .reduce to Rhino so UglifyJS can run in Rhino, + //inspired by https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Array/reduce + //but rewritten for brevity, and to be good enough for use by UglifyJS. + if (!Array.prototype.reduce) { + Array.prototype.reduce = function (fn /*, initialValue */) { + var i = 0, + length = this.length, + accumulator; + + if (arguments.length >= 2) { + accumulator = arguments[1]; + } else { + if (length) { + while (!(i in this)) { + i++; + } + accumulator = this[i++]; + } + } + + for (; i < length; i++) { + if (i in this) { + accumulator = fn.call(undefined, accumulator, this[i], i, this); + } + } + + return accumulator; + }; + } + + var JSSourceFilefromCode, optimize, + mapRegExp = /"file":"[^"]+"/; + + //Bind to Closure compiler, but if it is not available, do not sweat it. + try { + // Try older closure compiler that worked on Java 6 + JSSourceFilefromCode = java.lang.Class.forName('com.google.javascript.jscomp.JSSourceFile').getMethod('fromCode', [java.lang.String, java.lang.String]); + } catch (e) { + try { + // Try for newer closure compiler that needs Java 7+ + JSSourceFilefromCode = java.lang.Class.forName('com.google.javascript.jscomp.SourceFile').getMethod('fromCode', [java.lang.String, java.lang.String]); + } catch (e) {} + } + + //Helper for closure compiler, because of weird Java-JavaScript interactions. + function closurefromCode(filename, content) { + return JSSourceFilefromCode.invoke(null, [filename, content]); + } + + + function getFileWriter(fileName, encoding) { + var outFile = new java.io.File(fileName), outWriter, parentDir; + + parentDir = outFile.getAbsoluteFile().getParentFile(); + if (!parentDir.exists()) { + if (!parentDir.mkdirs()) { + throw "Could not create directory: " + parentDir.getAbsolutePath(); + } + } + + if (encoding) { + outWriter = new java.io.OutputStreamWriter(new java.io.FileOutputStream(outFile), encoding); + } else { + outWriter = new java.io.OutputStreamWriter(new java.io.FileOutputStream(outFile)); + } + + return new java.io.BufferedWriter(outWriter); + } + + optimize = { + closure: function (fileName, fileContents, outFileName, keepLines, config) { + config = config || {}; + var result, mappings, optimized, compressed, baseName, writer, + outBaseName, outFileNameMap, outFileNameMapContent, + srcOutFileName, concatNameMap, + jscomp = Packages.com.google.javascript.jscomp, + flags = Packages.com.google.common.flags, + //Set up source input + jsSourceFile = closurefromCode(String(fileName), String(fileContents)), + sourceListArray = new java.util.ArrayList(), + options, option, FLAG_compilation_level, compiler, + Compiler = Packages.com.google.javascript.jscomp.Compiler, + CommandLineRunner = Packages.com.google.javascript.jscomp.CommandLineRunner; + + logger.trace("Minifying file: " + fileName); + + baseName = (new java.io.File(fileName)).getName(); + + //Set up options + options = new jscomp.CompilerOptions(); + for (option in config.CompilerOptions) { + // options are false by default and jslint wanted an if statement in this for loop + if (config.CompilerOptions[option]) { + options[option] = config.CompilerOptions[option]; + } + + } + options.prettyPrint = keepLines || options.prettyPrint; + + FLAG_compilation_level = jscomp.CompilationLevel[config.CompilationLevel || 'SIMPLE_OPTIMIZATIONS']; + FLAG_compilation_level.setOptionsForCompilationLevel(options); + + if (config.generateSourceMaps) { + mappings = new java.util.ArrayList(); + + mappings.add(new com.google.javascript.jscomp.SourceMap.LocationMapping(fileName, baseName + ".src.js")); + options.setSourceMapLocationMappings(mappings); + options.setSourceMapOutputPath(fileName + ".map"); + } + + //Trigger the compiler + Compiler.setLoggingLevel(Packages.java.util.logging.Level[config.loggingLevel || 'WARNING']); + compiler = new Compiler(); + + //fill the sourceArrrayList; we need the ArrayList because the only overload of compile + //accepting the getDefaultExterns return value (a List) also wants the sources as a List + sourceListArray.add(jsSourceFile); + + result = compiler.compile(CommandLineRunner.getDefaultExterns(), sourceListArray, options); + if (result.success) { + optimized = String(compiler.toSource()); + + if (config.generateSourceMaps && result.sourceMap && outFileName) { + outBaseName = (new java.io.File(outFileName)).getName(); + + srcOutFileName = outFileName + ".src.js"; + outFileNameMap = outFileName + ".map"; + + //If previous .map file exists, move it to the ".src.js" + //location. Need to update the sourceMappingURL part in the + //src.js file too. + if (file.exists(outFileNameMap)) { + concatNameMap = outFileNameMap.replace(/\.map$/, '.src.js.map'); + file.saveFile(concatNameMap, file.readFile(outFileNameMap)); + file.saveFile(srcOutFileName, + fileContents.replace(/\/\# sourceMappingURL=(.+).map/, + '/# sourceMappingURL=$1.src.js.map')); + } else { + file.saveUtf8File(srcOutFileName, fileContents); + } + + writer = getFileWriter(outFileNameMap, "utf-8"); + result.sourceMap.appendTo(writer, outFileName); + writer.close(); + + //Not sure how better to do this, but right now the .map file + //leaks the full OS path in the "file" property. Manually + //modify it to not do that. + file.saveFile(outFileNameMap, + file.readFile(outFileNameMap).replace(mapRegExp, '"file":"' + baseName + '"')); + + fileContents = optimized + "\n//# sourceMappingURL=" + outBaseName + ".map"; + } else { + fileContents = optimized; + } + return fileContents; + } else { + throw new Error('Cannot closure compile file: ' + fileName + '. Skipping it.'); + } + + return fileContents; + } + }; + + return optimize; +}); +} + +if(env === 'xpconnect') { +define('xpconnect/optimize', {}); +} +/** + * @license Copyright (c) 2010-2014, The Dojo Foundation All Rights Reserved. + * Available via the MIT or new BSD license. + * see: http://github.com/jrburke/requirejs for details + */ + +/*jslint plusplus: true, nomen: true, regexp: true */ +/*global define: false */ + +define('optimize', [ 'lang', 'logger', 'env!env/optimize', 'env!env/file', 'parse', + 'pragma', 'uglifyjs/index', 'uglifyjs2', + 'source-map'], +function (lang, logger, envOptimize, file, parse, + pragma, uglify, uglify2, + sourceMap) { + 'use strict'; + + var optimize, + cssImportRegExp = /\@import\s+(url\()?\s*([^);]+)\s*(\))?([\w, ]*)(;)?/ig, + cssCommentImportRegExp = /\/\*[^\*]*@import[^\*]*\*\//g, + cssUrlRegExp = /\url\(\s*([^\)]+)\s*\)?/g, + protocolRegExp = /^\w+:/, + SourceMapGenerator = sourceMap.SourceMapGenerator, + SourceMapConsumer =sourceMap.SourceMapConsumer; + + /** + * If an URL from a CSS url value contains start/end quotes, remove them. + * This is not done in the regexp, since my regexp fu is not that strong, + * and the CSS spec allows for ' and " in the URL if they are backslash escaped. + * @param {String} url + */ + function cleanCssUrlQuotes(url) { + //Make sure we are not ending in whitespace. + //Not very confident of the css regexps above that there will not be ending + //whitespace. + url = url.replace(/\s+$/, ""); + + if (url.charAt(0) === "'" || url.charAt(0) === "\"") { + url = url.substring(1, url.length - 1); + } + + return url; + } + + function fixCssUrlPaths(fileName, path, contents, cssPrefix) { + return contents.replace(cssUrlRegExp, function (fullMatch, urlMatch) { + var firstChar, hasProtocol, parts, i, + fixedUrlMatch = cleanCssUrlQuotes(urlMatch); + + fixedUrlMatch = fixedUrlMatch.replace(lang.backSlashRegExp, "/"); + + //Only do the work for relative URLs. Skip things that start with / or #, or have + //a protocol. + firstChar = fixedUrlMatch.charAt(0); + hasProtocol = protocolRegExp.test(fixedUrlMatch); + if (firstChar !== "/" && firstChar !== "#" && !hasProtocol) { + //It is a relative URL, tack on the cssPrefix and path prefix + urlMatch = cssPrefix + path + fixedUrlMatch; + } else if (!hasProtocol) { + logger.trace(fileName + "\n URL not a relative URL, skipping: " + urlMatch); + } + + //Collapse .. and . + parts = urlMatch.split("/"); + for (i = parts.length - 1; i > 0; i--) { + if (parts[i] === ".") { + parts.splice(i, 1); + } else if (parts[i] === "..") { + if (i !== 0 && parts[i - 1] !== "..") { + parts.splice(i - 1, 2); + i -= 1; + } + } + } + + return "url(" + parts.join("/") + ")"; + }); + } + + /** + * Inlines nested stylesheets that have @import calls in them. + * @param {String} fileName the file name + * @param {String} fileContents the file contents + * @param {String} cssImportIgnore comma delimited string of files to ignore + * @param {String} cssPrefix string to be prefixed before relative URLs + * @param {Object} included an object used to track the files already imported + */ + function flattenCss(fileName, fileContents, cssImportIgnore, cssPrefix, included, topLevel) { + //Find the last slash in the name. + fileName = fileName.replace(lang.backSlashRegExp, "/"); + var endIndex = fileName.lastIndexOf("/"), + //Make a file path based on the last slash. + //If no slash, so must be just a file name. Use empty string then. + filePath = (endIndex !== -1) ? fileName.substring(0, endIndex + 1) : "", + //store a list of merged files + importList = [], + skippedList = []; + + //First make a pass by removing any commented out @import calls. + fileContents = fileContents.replace(cssCommentImportRegExp, ''); + + //Make sure we have a delimited ignore list to make matching faster + if (cssImportIgnore && cssImportIgnore.charAt(cssImportIgnore.length - 1) !== ",") { + cssImportIgnore += ","; + } + + fileContents = fileContents.replace(cssImportRegExp, function (fullMatch, urlStart, importFileName, urlEnd, mediaTypes) { + //Only process media type "all" or empty media type rules. + if (mediaTypes && ((mediaTypes.replace(/^\s\s*/, '').replace(/\s\s*$/, '')) !== "all")) { + skippedList.push(fileName); + return fullMatch; + } + + importFileName = cleanCssUrlQuotes(importFileName); + + //Ignore the file import if it is part of an ignore list. + if (cssImportIgnore && cssImportIgnore.indexOf(importFileName + ",") !== -1) { + return fullMatch; + } + + //Make sure we have a unix path for the rest of the operation. + importFileName = importFileName.replace(lang.backSlashRegExp, "/"); + + try { + //if a relative path, then tack on the filePath. + //If it is not a relative path, then the readFile below will fail, + //and we will just skip that import. + var fullImportFileName = importFileName.charAt(0) === "/" ? importFileName : filePath + importFileName, + importContents = file.readFile(fullImportFileName), + importEndIndex, importPath, flat; + + //Skip the file if it has already been included. + if (included[fullImportFileName]) { + return ''; + } + included[fullImportFileName] = true; + + //Make sure to flatten any nested imports. + flat = flattenCss(fullImportFileName, importContents, cssImportIgnore, cssPrefix, included); + importContents = flat.fileContents; + + if (flat.importList.length) { + importList.push.apply(importList, flat.importList); + } + if (flat.skippedList.length) { + skippedList.push.apply(skippedList, flat.skippedList); + } + + //Make the full import path + importEndIndex = importFileName.lastIndexOf("/"); + + //Make a file path based on the last slash. + //If no slash, so must be just a file name. Use empty string then. + importPath = (importEndIndex !== -1) ? importFileName.substring(0, importEndIndex + 1) : ""; + + //fix url() on relative import (#5) + importPath = importPath.replace(/^\.\//, ''); + + //Modify URL paths to match the path represented by this file. + importContents = fixCssUrlPaths(importFileName, importPath, importContents, cssPrefix); + + importList.push(fullImportFileName); + return importContents; + } catch (e) { + logger.warn(fileName + "\n Cannot inline css import, skipping: " + importFileName); + return fullMatch; + } + }); + + if (cssPrefix && topLevel) { + //Modify URL paths to match the path represented by this file. + fileContents = fixCssUrlPaths(fileName, '', fileContents, cssPrefix); + } + + return { + importList : importList, + skippedList: skippedList, + fileContents : fileContents + }; + } + + optimize = { + /** + * Optimizes a file that contains JavaScript content. Optionally collects + * plugin resources mentioned in a file, and then passes the content + * through an minifier if one is specified via config.optimize. + * + * @param {String} fileName the name of the file to optimize + * @param {String} fileContents the contents to optimize. If this is + * a null value, then fileName will be used to read the fileContents. + * @param {String} outFileName the name of the file to use for the + * saved optimized content. + * @param {Object} config the build config object. + * @param {Array} [pluginCollector] storage for any plugin resources + * found. + */ + jsFile: function (fileName, fileContents, outFileName, config, pluginCollector) { + if (!fileContents) { + fileContents = file.readFile(fileName); + } + + fileContents = optimize.js(fileName, fileContents, outFileName, config, pluginCollector); + + file.saveUtf8File(outFileName, fileContents); + }, + + /** + * Optimizes a file that contains JavaScript content. Optionally collects + * plugin resources mentioned in a file, and then passes the content + * through an minifier if one is specified via config.optimize. + * + * @param {String} fileName the name of the file that matches the + * fileContents. + * @param {String} fileContents the string of JS to optimize. + * @param {Object} [config] the build config object. + * @param {Array} [pluginCollector] storage for any plugin resources + * found. + */ + js: function (fileName, fileContents, outFileName, config, pluginCollector) { + var optFunc, optConfig, + parts = (String(config.optimize)).split('.'), + optimizerName = parts[0], + keepLines = parts[1] === 'keepLines', + licenseContents = ''; + + config = config || {}; + + //Apply pragmas/namespace renaming + fileContents = pragma.process(fileName, fileContents, config, 'OnSave', pluginCollector); + + //Optimize the JS files if asked. + if (optimizerName && optimizerName !== 'none') { + optFunc = envOptimize[optimizerName] || optimize.optimizers[optimizerName]; + if (!optFunc) { + throw new Error('optimizer with name of "' + + optimizerName + + '" not found for this environment'); + } + + optConfig = config[optimizerName] || {}; + if (config.generateSourceMaps) { + optConfig.generateSourceMaps = !!config.generateSourceMaps; + optConfig._buildSourceMap = config._buildSourceMap; + } + + try { + if (config.preserveLicenseComments) { + //Pull out any license comments for prepending after optimization. + try { + licenseContents = parse.getLicenseComments(fileName, fileContents); + } catch (e) { + throw new Error('Cannot parse file: ' + fileName + ' for comments. Skipping it. Error is:\n' + e.toString()); + } + } + + fileContents = licenseContents + optFunc(fileName, + fileContents, + outFileName, + keepLines, + optConfig); + if (optConfig._buildSourceMap && optConfig._buildSourceMap !== config._buildSourceMap) { + config._buildSourceMap = optConfig._buildSourceMap; + } + } catch (e) { + if (config.throwWhen && config.throwWhen.optimize) { + throw e; + } else { + logger.error(e); + } + } + } else { + if (config._buildSourceMap) { + config._buildSourceMap = null; + } + } + + return fileContents; + }, + + /** + * Optimizes one CSS file, inlining @import calls, stripping comments, and + * optionally removes line returns. + * @param {String} fileName the path to the CSS file to optimize + * @param {String} outFileName the path to save the optimized file. + * @param {Object} config the config object with the optimizeCss and + * cssImportIgnore options. + */ + cssFile: function (fileName, outFileName, config) { + + //Read in the file. Make sure we have a JS string. + var originalFileContents = file.readFile(fileName), + flat = flattenCss(fileName, originalFileContents, config.cssImportIgnore, config.cssPrefix, {}, true), + //Do not use the flattened CSS if there was one that was skipped. + fileContents = flat.skippedList.length ? originalFileContents : flat.fileContents, + startIndex, endIndex, buildText, comment; + + if (flat.skippedList.length) { + logger.warn('Cannot inline @imports for ' + fileName + + ',\nthe following files had media queries in them:\n' + + flat.skippedList.join('\n')); + } + + //Do comment removal. + try { + if (config.optimizeCss.indexOf(".keepComments") === -1) { + startIndex = 0; + //Get rid of comments. + while ((startIndex = fileContents.indexOf("/*", startIndex)) !== -1) { + endIndex = fileContents.indexOf("*/", startIndex + 2); + if (endIndex === -1) { + throw "Improper comment in CSS file: " + fileName; + } + comment = fileContents.substring(startIndex, endIndex); + + if (config.preserveLicenseComments && + (comment.indexOf('license') !== -1 || + comment.indexOf('opyright') !== -1 || + comment.indexOf('(c)') !== -1)) { + //Keep the comment, just increment the startIndex + startIndex = endIndex; + } else { + fileContents = fileContents.substring(0, startIndex) + fileContents.substring(endIndex + 2, fileContents.length); + startIndex = 0; + } + } + } + //Get rid of newlines. + if (config.optimizeCss.indexOf(".keepLines") === -1) { + fileContents = fileContents.replace(/[\r\n]/g, " "); + fileContents = fileContents.replace(/\s+/g, " "); + fileContents = fileContents.replace(/\{\s/g, "{"); + fileContents = fileContents.replace(/\s\}/g, "}"); + } else { + //Remove multiple empty lines. + fileContents = fileContents.replace(/(\r\n)+/g, "\r\n"); + fileContents = fileContents.replace(/(\n)+/g, "\n"); + } + //Remove unnecessary whitespace + if (config.optimizeCss.indexOf(".keepWhitespace") === -1) { + //Remove leading and trailing whitespace from lines + fileContents = fileContents.replace(/^[ \t]+/gm, ""); + fileContents = fileContents.replace(/[ \t]+$/gm, ""); + //Remove whitespace after semicolon, colon, curly brackets and commas + fileContents = fileContents.replace(/(;|:|\{|}|,)[ \t]+/g, "$1"); + //Remove whitespace before opening curly brackets + fileContents = fileContents.replace(/[ \t]+(\{)/g, "$1"); + //Truncate double whitespace + fileContents = fileContents.replace(/([ \t])+/g, "$1"); + //Remove empty lines + fileContents = fileContents.replace(/^[ \t]*[\r\n]/gm,''); + } + } catch (e) { + fileContents = originalFileContents; + logger.error("Could not optimized CSS file: " + fileName + ", error: " + e); + } + + file.saveUtf8File(outFileName, fileContents); + + //text output to stdout and/or written to build.txt file + buildText = "\n"+ outFileName.replace(config.dir, "") +"\n----------------\n"; + flat.importList.push(fileName); + buildText += flat.importList.map(function(path){ + return path.replace(config.dir, ""); + }).join("\n"); + + return { + importList: flat.importList, + buildText: buildText +"\n" + }; + }, + + /** + * Optimizes CSS files, inlining @import calls, stripping comments, and + * optionally removes line returns. + * @param {String} startDir the path to the top level directory + * @param {Object} config the config object with the optimizeCss and + * cssImportIgnore options. + */ + css: function (startDir, config) { + var buildText = "", + importList = [], + shouldRemove = config.dir && config.removeCombined, + i, fileName, result, fileList; + if (config.optimizeCss.indexOf("standard") !== -1) { + fileList = file.getFilteredFileList(startDir, /\.css$/, true); + if (fileList) { + for (i = 0; i < fileList.length; i++) { + fileName = fileList[i]; + logger.trace("Optimizing (" + config.optimizeCss + ") CSS file: " + fileName); + result = optimize.cssFile(fileName, fileName, config); + buildText += result.buildText; + if (shouldRemove) { + result.importList.pop(); + importList = importList.concat(result.importList); + } + } + } + + if (shouldRemove) { + importList.forEach(function (path) { + if (file.exists(path)) { + file.deleteFile(path); + } + }); + } + } + return buildText; + }, + + optimizers: { + uglify: function (fileName, fileContents, outFileName, keepLines, config) { + var parser = uglify.parser, + processor = uglify.uglify, + ast, errMessage, errMatch; + + config = config || {}; + + logger.trace("Uglifying file: " + fileName); + + try { + ast = parser.parse(fileContents, config.strict_semicolons); + if (config.no_mangle !== true) { + ast = processor.ast_mangle(ast, config); + } + ast = processor.ast_squeeze(ast, config); + + fileContents = processor.gen_code(ast, config); + + if (config.max_line_length) { + fileContents = processor.split_lines(fileContents, config.max_line_length); + } + + //Add trailing semicolon to match uglifyjs command line version + fileContents += ';'; + } catch (e) { + errMessage = e.toString(); + errMatch = /\nError(\r)?\n/.exec(errMessage); + if (errMatch) { + errMessage = errMessage.substring(0, errMatch.index); + } + throw new Error('Cannot uglify file: ' + fileName + '. Skipping it. Error is:\n' + errMessage); + } + return fileContents; + }, + uglify2: function (fileName, fileContents, outFileName, keepLines, config) { + var result, existingMap, resultMap, finalMap, sourceIndex, + uconfig = {}, + existingMapPath = outFileName + '.map', + baseName = fileName && fileName.split('/').pop(); + + config = config || {}; + + lang.mixin(uconfig, config, true); + + uconfig.fromString = true; + + if (config.generateSourceMaps && (outFileName || config._buildSourceMap)) { + uconfig.outSourceMap = baseName; + + if (config._buildSourceMap) { + existingMap = JSON.parse(config._buildSourceMap); + uconfig.inSourceMap = existingMap; + } else if (file.exists(existingMapPath)) { + uconfig.inSourceMap = existingMapPath; + existingMap = JSON.parse(file.readFile(existingMapPath)); + } + } + + logger.trace("Uglify2 file: " + fileName); + + try { + //var tempContents = fileContents.replace(/\/\/\# sourceMappingURL=.*$/, ''); + result = uglify2.minify(fileContents, uconfig, baseName + '.src.js'); + if (uconfig.outSourceMap && result.map) { + resultMap = result.map; + if (existingMap) { + resultMap = JSON.parse(resultMap); + finalMap = SourceMapGenerator.fromSourceMap(new SourceMapConsumer(resultMap)); + finalMap.applySourceMap(new SourceMapConsumer(existingMap)); + resultMap = finalMap.toString(); + } else if (!config._buildSourceMap) { + file.saveFile(outFileName + '.src.js', fileContents); + } + + fileContents = result.code; + + if (config._buildSourceMap) { + config._buildSourceMap = resultMap; + } else { + file.saveFile(outFileName + '.map', resultMap); + fileContents += "\n//# sourceMappingURL=" + baseName + ".map"; + } + } else { + fileContents = result.code; + } + } catch (e) { + throw new Error('Cannot uglify2 file: ' + fileName + '. Skipping it. Error is:\n' + e.toString()); + } + return fileContents; + } + } + }; + + return optimize; +}); +/** + * @license RequireJS Copyright (c) 2010-2014, The Dojo Foundation All Rights Reserved. + * Available via the MIT or new BSD license. + * see: http://github.com/jrburke/requirejs for details + */ +/* + * This file patches require.js to communicate with the build system. + */ + +//Using sloppy since this uses eval for some code like plugins, +//which may not be strict mode compliant. So if use strict is used +//below they will have strict rules applied and may cause an error. +/*jslint sloppy: true, nomen: true, plusplus: true, regexp: true */ +/*global require, define: true */ + +//NOT asking for require as a dependency since the goal is to modify the +//global require below +define('requirePatch', [ 'env!env/file', 'pragma', 'parse', 'lang', 'logger', 'commonJs', 'prim'], function ( + file, + pragma, + parse, + lang, + logger, + commonJs, + prim +) { + + var allowRun = true, + hasProp = lang.hasProp, + falseProp = lang.falseProp, + getOwn = lang.getOwn, + // Used to strip out use strict from toString()'d functions for the + // shim config since they will explicitly want to not be bound by strict, + // but some envs, explicitly xpcshell, adds a use strict. + useStrictRegExp = /['"]use strict['"];/g; + + //Turn off throwing on resolution conflict, that was just an older prim + //idea about finding errors early, but does not comply with how promises + //should operate. + prim.hideResolutionConflict = true; + + //This method should be called when the patches to require should take hold. + return function () { + if (!allowRun) { + return; + } + allowRun = false; + + var layer, + pluginBuilderRegExp = /(["']?)pluginBuilder(["']?)\s*[=\:]\s*["']([^'"\s]+)["']/, + oldNewContext = require.s.newContext, + oldDef, + + //create local undefined values for module and exports, + //so that when files are evaled in this function they do not + //see the node values used for r.js + exports, + module; + + /** + * Reset "global" build caches that are kept around between + * build layer builds. Useful to do when there are multiple + * top level requirejs.optimize() calls. + */ + require._cacheReset = function () { + //Stored raw text caches, used by browser use. + require._cachedRawText = {}; + //Stored cached file contents for reuse in other layers. + require._cachedFileContents = {}; + //Store which cached files contain a require definition. + require._cachedDefinesRequireUrls = {}; + }; + require._cacheReset(); + + /** + * Makes sure the URL is something that can be supported by the + * optimization tool. + * @param {String} url + * @returns {Boolean} + */ + require._isSupportedBuildUrl = function (url) { + //Ignore URLs with protocols, hosts or question marks, means either network + //access is needed to fetch it or it is too dynamic. Note that + //on Windows, full paths are used for some urls, which include + //the drive, like c:/something, so need to test for something other + //than just a colon. + if (url.indexOf("://") === -1 && url.indexOf("?") === -1 && + url.indexOf('empty:') !== 0 && url.indexOf('//') !== 0) { + return true; + } else { + if (!layer.ignoredUrls[url]) { + if (url.indexOf('empty:') === -1) { + logger.info('Cannot optimize network URL, skipping: ' + url); + } + layer.ignoredUrls[url] = true; + } + return false; + } + }; + + function normalizeUrlWithBase(context, moduleName, url) { + //Adjust the URL if it was not transformed to use baseUrl. + if (require.jsExtRegExp.test(moduleName)) { + url = (context.config.dir || context.config.dirBaseUrl) + url; + } + return url; + } + + //Overrides the new context call to add existing tracking features. + require.s.newContext = function (name) { + var context = oldNewContext(name), + oldEnable = context.enable, + moduleProto = context.Module.prototype, + oldInit = moduleProto.init, + oldCallPlugin = moduleProto.callPlugin; + + //Only do this for the context used for building. + if (name === '_') { + //For build contexts, do everything sync + context.nextTick = function (fn) { + fn(); + }; + + context.needFullExec = {}; + context.fullExec = {}; + context.plugins = {}; + context.buildShimExports = {}; + + //Override the shim exports function generator to just + //spit out strings that can be used in the stringified + //build output. + context.makeShimExports = function (value) { + var fn; + if (context.config.wrapShim) { + fn = function () { + var str = 'return '; + // If specifies an export that is just a global + // name, no dot for a `this.` and such, then also + // attach to the global, for `var a = {}` files + // where the function closure would hide that from + // the global object. + if (value.exports && value.exports.indexOf('.') === -1) { + str += 'root.' + value.exports + ' = '; + } + + if (value.init) { + str += '(' + value.init.toString() + .replace(useStrictRegExp, '') + '.apply(this, arguments))'; + } + if (value.init && value.exports) { + str += ' || '; + } + if (value.exports) { + str += value.exports; + } + str += ';'; + return str; + }; + } else { + fn = function () { + return '(function (global) {\n' + + ' return function () {\n' + + ' var ret, fn;\n' + + (value.init ? + (' fn = ' + value.init.toString() + .replace(useStrictRegExp, '') + ';\n' + + ' ret = fn.apply(global, arguments);\n') : '') + + (value.exports ? + ' return ret || global.' + value.exports + ';\n' : + ' return ret;\n') + + ' };\n' + + '}(this))'; + }; + } + + return fn; + }; + + context.enable = function (depMap, parent) { + var id = depMap.id, + parentId = parent && parent.map.id, + needFullExec = context.needFullExec, + fullExec = context.fullExec, + mod = getOwn(context.registry, id); + + if (mod && !mod.defined) { + if (parentId && getOwn(needFullExec, parentId)) { + needFullExec[id] = depMap; + } + + } else if ((getOwn(needFullExec, id) && falseProp(fullExec, id)) || + (parentId && getOwn(needFullExec, parentId) && + falseProp(fullExec, id))) { + context.require.undef(id); + } + + return oldEnable.apply(context, arguments); + }; + + //Override load so that the file paths can be collected. + context.load = function (moduleName, url) { + /*jslint evil: true */ + var contents, pluginBuilderMatch, builderName, + shim, shimExports; + + //Do not mark the url as fetched if it is + //not an empty: URL, used by the optimizer. + //In that case we need to be sure to call + //load() for each module that is mapped to + //empty: so that dependencies are satisfied + //correctly. + if (url.indexOf('empty:') === 0) { + delete context.urlFetched[url]; + } + + //Only handle urls that can be inlined, so that means avoiding some + //URLs like ones that require network access or may be too dynamic, + //like JSONP + if (require._isSupportedBuildUrl(url)) { + //Adjust the URL if it was not transformed to use baseUrl. + url = normalizeUrlWithBase(context, moduleName, url); + + //Save the module name to path and path to module name mappings. + layer.buildPathMap[moduleName] = url; + layer.buildFileToModule[url] = moduleName; + + if (hasProp(context.plugins, moduleName)) { + //plugins need to have their source evaled as-is. + context.needFullExec[moduleName] = true; + } + + prim().start(function () { + if (hasProp(require._cachedFileContents, url) && + (falseProp(context.needFullExec, moduleName) || + getOwn(context.fullExec, moduleName))) { + contents = require._cachedFileContents[url]; + + //If it defines require, mark it so it can be hoisted. + //Done here and in the else below, before the + //else block removes code from the contents. + //Related to #263 + if (!layer.existingRequireUrl && require._cachedDefinesRequireUrls[url]) { + layer.existingRequireUrl = url; + } + } else { + //Load the file contents, process for conditionals, then + //evaluate it. + return require._cacheReadAsync(url).then(function (text) { + contents = text; + + if (context.config.cjsTranslate && + (!context.config.shim || !lang.hasProp(context.config.shim, moduleName))) { + contents = commonJs.convert(url, contents); + } + + //If there is a read filter, run it now. + if (context.config.onBuildRead) { + contents = context.config.onBuildRead(moduleName, url, contents); + } + + contents = pragma.process(url, contents, context.config, 'OnExecute'); + + //Find out if the file contains a require() definition. Need to know + //this so we can inject plugins right after it, but before they are needed, + //and to make sure this file is first, so that define calls work. + try { + if (!layer.existingRequireUrl && parse.definesRequire(url, contents)) { + layer.existingRequireUrl = url; + require._cachedDefinesRequireUrls[url] = true; + } + } catch (e1) { + throw new Error('Parse error using esprima ' + + 'for file: ' + url + '\n' + e1); + } + }).then(function () { + if (hasProp(context.plugins, moduleName)) { + //This is a loader plugin, check to see if it has a build extension, + //otherwise the plugin will act as the plugin builder too. + pluginBuilderMatch = pluginBuilderRegExp.exec(contents); + if (pluginBuilderMatch) { + //Load the plugin builder for the plugin contents. + builderName = context.makeModuleMap(pluginBuilderMatch[3], + context.makeModuleMap(moduleName), + null, + true).id; + return require._cacheReadAsync(context.nameToUrl(builderName)); + } + } + return contents; + }).then(function (text) { + contents = text; + + //Parse out the require and define calls. + //Do this even for plugins in case they have their own + //dependencies that may be separate to how the pluginBuilder works. + try { + if (falseProp(context.needFullExec, moduleName)) { + contents = parse(moduleName, url, contents, { + insertNeedsDefine: true, + has: context.config.has, + findNestedDependencies: context.config.findNestedDependencies + }); + } + } catch (e2) { + throw new Error('Parse error using esprima ' + + 'for file: ' + url + '\n' + e2); + } + + require._cachedFileContents[url] = contents; + }); + } + }).then(function () { + if (contents) { + eval(contents); + } + + try { + //If have a string shim config, and this is + //a fully executed module, try to see if + //it created a variable in this eval scope + if (getOwn(context.needFullExec, moduleName)) { + shim = getOwn(context.config.shim, moduleName); + if (shim && shim.exports) { + shimExports = eval(shim.exports); + if (typeof shimExports !== 'undefined') { + context.buildShimExports[moduleName] = shimExports; + } + } + } + + //Need to close out completion of this module + //so that listeners will get notified that it is available. + context.completeLoad(moduleName); + } catch (e) { + //Track which module could not complete loading. + if (!e.moduleTree) { + e.moduleTree = []; + } + e.moduleTree.push(moduleName); + throw e; + } + }).then(null, function (eOuter) { + + if (!eOuter.fileName) { + eOuter.fileName = url; + } + throw eOuter; + }).end(); + } else { + //With unsupported URLs still need to call completeLoad to + //finish loading. + context.completeLoad(moduleName); + } + }; + + //Marks module has having a name, and optionally executes the + //callback, but only if it meets certain criteria. + context.execCb = function (name, cb, args, exports) { + var buildShimExports = getOwn(layer.context.buildShimExports, name); + + if (buildShimExports) { + return buildShimExports; + } else if (cb.__requireJsBuild || getOwn(layer.context.needFullExec, name)) { + return cb.apply(exports, args); + } + return undefined; + }; + + moduleProto.init = function (depMaps) { + if (context.needFullExec[this.map.id]) { + lang.each(depMaps, lang.bind(this, function (depMap) { + if (typeof depMap === 'string') { + depMap = context.makeModuleMap(depMap, + (this.map.isDefine ? this.map : this.map.parentMap)); + } + + if (!context.fullExec[depMap.id]) { + context.require.undef(depMap.id); + } + })); + } + + return oldInit.apply(this, arguments); + }; + + moduleProto.callPlugin = function () { + var map = this.map, + pluginMap = context.makeModuleMap(map.prefix), + pluginId = pluginMap.id, + pluginMod = getOwn(context.registry, pluginId); + + context.plugins[pluginId] = true; + context.needFullExec[pluginId] = map; + + //If the module is not waiting to finish being defined, + //undef it and start over, to get full execution. + if (falseProp(context.fullExec, pluginId) && (!pluginMod || pluginMod.defined)) { + context.require.undef(pluginMap.id); + } + + return oldCallPlugin.apply(this, arguments); + }; + } + + return context; + }; + + //Clear up the existing context so that the newContext modifications + //above will be active. + delete require.s.contexts._; + + /** Reset state for each build layer pass. */ + require._buildReset = function () { + var oldContext = require.s.contexts._; + + //Clear up the existing context. + delete require.s.contexts._; + + //Set up new context, so the layer object can hold onto it. + require({}); + + layer = require._layer = { + buildPathMap: {}, + buildFileToModule: {}, + buildFilePaths: [], + pathAdded: {}, + modulesWithNames: {}, + needsDefine: {}, + existingRequireUrl: "", + ignoredUrls: {}, + context: require.s.contexts._ + }; + + //Return the previous context in case it is needed, like for + //the basic config object. + return oldContext; + }; + + require._buildReset(); + + //Override define() to catch modules that just define an object, so that + //a dummy define call is not put in the build file for them. They do + //not end up getting defined via context.execCb, so we need to catch them + //at the define call. + oldDef = define; + + //This function signature does not have to be exact, just match what we + //are looking for. + define = function (name) { + if (typeof name === "string" && falseProp(layer.needsDefine, name)) { + layer.modulesWithNames[name] = true; + } + return oldDef.apply(require, arguments); + }; + + define.amd = oldDef.amd; + + //Add some utilities for plugins + require._readFile = file.readFile; + require._fileExists = function (path) { + return file.exists(path); + }; + + //Called when execManager runs for a dependency. Used to figure out + //what order of execution. + require.onResourceLoad = function (context, map) { + var id = map.id, + url; + + // Fix up any maps that need to be normalized as part of the fullExec + // plumbing for plugins to participate in the build. + if (context.plugins && lang.hasProp(context.plugins, id)) { + lang.eachProp(context.needFullExec, function(value, prop) { + // For plugin entries themselves, they do not have a map + // value in needFullExec, just a "true" entry. + if (value !== true && value.prefix === id && value.unnormalized) { + var map = context.makeModuleMap(value.originalName, value.parentMap); + context.needFullExec[map.id] = map; + } + }); + } + + //If build needed a full execution, indicate it + //has been done now. But only do it if the context is tracking + //that. Only valid for the context used in a build, not for + //other contexts being run, like for useLib, plain requirejs + //use in node/rhino. + if (context.needFullExec && getOwn(context.needFullExec, id)) { + context.fullExec[id] = map; + } + + //A plugin. + if (map.prefix) { + if (falseProp(layer.pathAdded, id)) { + layer.buildFilePaths.push(id); + //For plugins the real path is not knowable, use the name + //for both module to file and file to module mappings. + layer.buildPathMap[id] = id; + layer.buildFileToModule[id] = id; + layer.modulesWithNames[id] = true; + layer.pathAdded[id] = true; + } + } else if (map.url && require._isSupportedBuildUrl(map.url)) { + //If the url has not been added to the layer yet, and it + //is from an actual file that was loaded, add it now. + url = normalizeUrlWithBase(context, id, map.url); + if (!layer.pathAdded[url] && getOwn(layer.buildPathMap, id)) { + //Remember the list of dependencies for this layer. + layer.buildFilePaths.push(url); + layer.pathAdded[url] = true; + } + } + }; + + //Called by output of the parse() function, when a file does not + //explicitly call define, probably just require, but the parse() + //function normalizes on define() for dependency mapping and file + //ordering works correctly. + require.needsDefine = function (moduleName) { + layer.needsDefine[moduleName] = true; + }; + }; +}); +/** + * @license RequireJS Copyright (c) 2010-2014, The Dojo Foundation All Rights Reserved. + * Available via the MIT or new BSD license. + * see: http://github.com/jrburke/requirejs for details + */ + +/*jslint */ +/*global define: false, console: false */ + +define('commonJs', ['env!env/file', 'parse'], function (file, parse) { + 'use strict'; + var commonJs = { + //Set to false if you do not want this file to log. Useful in environments + //like node where you want the work to happen without noise. + useLog: true, + + convertDir: function (commonJsPath, savePath) { + var fileList, i, + jsFileRegExp = /\.js$/, + fileName, convertedFileName, fileContents; + + //Get list of files to convert. + fileList = file.getFilteredFileList(commonJsPath, /\w/, true); + + //Normalize on front slashes and make sure the paths do not end in a slash. + commonJsPath = commonJsPath.replace(/\\/g, "/"); + savePath = savePath.replace(/\\/g, "/"); + if (commonJsPath.charAt(commonJsPath.length - 1) === "/") { + commonJsPath = commonJsPath.substring(0, commonJsPath.length - 1); + } + if (savePath.charAt(savePath.length - 1) === "/") { + savePath = savePath.substring(0, savePath.length - 1); + } + + //Cycle through all the JS files and convert them. + if (!fileList || !fileList.length) { + if (commonJs.useLog) { + if (commonJsPath === "convert") { + //A request just to convert one file. + console.log('\n\n' + commonJs.convert(savePath, file.readFile(savePath))); + } else { + console.log("No files to convert in directory: " + commonJsPath); + } + } + } else { + for (i = 0; i < fileList.length; i++) { + fileName = fileList[i]; + convertedFileName = fileName.replace(commonJsPath, savePath); + + //Handle JS files. + if (jsFileRegExp.test(fileName)) { + fileContents = file.readFile(fileName); + fileContents = commonJs.convert(fileName, fileContents); + file.saveUtf8File(convertedFileName, fileContents); + } else { + //Just copy the file over. + file.copyFile(fileName, convertedFileName, true); + } + } + } + }, + + /** + * Does the actual file conversion. + * + * @param {String} fileName the name of the file. + * + * @param {String} fileContents the contents of a file :) + * + * @returns {String} the converted contents + */ + convert: function (fileName, fileContents) { + //Strip out comments. + try { + var preamble = '', + commonJsProps = parse.usesCommonJs(fileName, fileContents); + + //First see if the module is not already RequireJS-formatted. + if (parse.usesAmdOrRequireJs(fileName, fileContents) || !commonJsProps) { + return fileContents; + } + + if (commonJsProps.dirname || commonJsProps.filename) { + preamble = 'var __filename = module.uri || "", ' + + '__dirname = __filename.substring(0, __filename.lastIndexOf("/") + 1); '; + } + + //Construct the wrapper boilerplate. + fileContents = 'define(function (require, exports, module) {' + + preamble + + fileContents + + '\n});\n'; + + } catch (e) { + console.log("commonJs.convert: COULD NOT CONVERT: " + fileName + ", so skipping it. Error was: " + e); + return fileContents; + } + + return fileContents; + } + }; + + return commonJs; +}); +/** + * @license Copyright (c) 2010-2014, The Dojo Foundation All Rights Reserved. + * Available via the MIT or new BSD license. + * see: http://github.com/jrburke/requirejs for details + */ + +/*jslint plusplus: true, nomen: true, regexp: true */ +/*global define, requirejs, java, process, console */ + + +define('build', function (require) { + 'use strict'; + + var build, + lang = require('lang'), + prim = require('prim'), + logger = require('logger'), + file = require('env!env/file'), + parse = require('parse'), + optimize = require('optimize'), + pragma = require('pragma'), + transform = require('transform'), + requirePatch = require('requirePatch'), + env = require('env'), + commonJs = require('commonJs'), + SourceMapGenerator = require('source-map/source-map-generator'), + hasProp = lang.hasProp, + getOwn = lang.getOwn, + falseProp = lang.falseProp, + endsWithSemiColonRegExp = /;\s*$/, + endsWithSlashRegExp = /[\/\\]$/, + resourceIsModuleIdRegExp = /^[\w\/\\\.]+$/; + + prim.nextTick = function (fn) { + fn(); + }; + + //Now map require to the outermost requirejs, now that we have + //local dependencies for this module. The rest of the require use is + //manipulating the requirejs loader. + require = requirejs; + + //Caching function for performance. Attached to + //require so it can be reused in requirePatch.js. _cachedRawText + //set up by requirePatch.js + require._cacheReadAsync = function (path, encoding) { + var d; + + if (lang.hasProp(require._cachedRawText, path)) { + d = prim(); + d.resolve(require._cachedRawText[path]); + return d.promise; + } else { + return file.readFileAsync(path, encoding).then(function (text) { + require._cachedRawText[path] = text; + return text; + }); + } + }; + + function makeBuildBaseConfig() { + return { + appDir: "", + pragmas: {}, + paths: {}, + optimize: "uglify", + optimizeCss: "standard.keepLines.keepWhitespace", + inlineText: true, + isBuild: true, + optimizeAllPluginResources: false, + findNestedDependencies: false, + preserveLicenseComments: true, + //By default, all files/directories are copied, unless + //they match this regexp, by default just excludes .folders + dirExclusionRegExp: file.dirExclusionRegExp, + _buildPathToModuleIndex: {} + }; + } + + /** + * Some JS may not be valid if concatenated with other JS, in particular + * the style of omitting semicolons and rely on ASI. Add a semicolon in + * those cases. + */ + function addSemiColon(text, config) { + if (config.skipSemiColonInsertion || endsWithSemiColonRegExp.test(text)) { + return text; + } else { + return text + ";"; + } + } + + function endsWithSlash(dirName) { + if (dirName.charAt(dirName.length - 1) !== "/") { + dirName += "/"; + } + return dirName; + } + + //Method used by plugin writeFile calls, defined up here to avoid + //jslint warning about "making a function in a loop". + function makeWriteFile(namespace, layer) { + function writeFile(name, contents) { + logger.trace('Saving plugin-optimized file: ' + name); + file.saveUtf8File(name, contents); + } + + writeFile.asModule = function (moduleName, fileName, contents) { + writeFile(fileName, + build.toTransport(namespace, moduleName, fileName, contents, layer)); + }; + + return writeFile; + } + + /** + * Main API entry point into the build. The args argument can either be + * an array of arguments (like the onese passed on a command-line), + * or it can be a JavaScript object that has the format of a build profile + * file. + * + * If it is an object, then in addition to the normal properties allowed in + * a build profile file, the object should contain one other property: + * + * The object could also contain a "buildFile" property, which is a string + * that is the file path to a build profile that contains the rest + * of the build profile directives. + * + * This function does not return a status, it should throw an error if + * there is a problem completing the build. + */ + build = function (args) { + var buildFile, cmdConfig, errorMsg, errorStack, stackMatch, errorTree, + i, j, errorMod, + stackRegExp = /( {4}at[^\n]+)\n/, + standardIndent = ' '; + + return prim().start(function () { + if (!args || lang.isArray(args)) { + if (!args || args.length < 1) { + logger.error("build.js buildProfile.js\n" + + "where buildProfile.js is the name of the build file (see example.build.js for hints on how to make a build file)."); + return undefined; + } + + //Next args can include a build file path as well as other build args. + //build file path comes first. If it does not contain an = then it is + //a build file path. Otherwise, just all build args. + if (args[0].indexOf("=") === -1) { + buildFile = args[0]; + args.splice(0, 1); + } + + //Remaining args are options to the build + cmdConfig = build.convertArrayToObject(args); + cmdConfig.buildFile = buildFile; + } else { + cmdConfig = args; + } + + return build._run(cmdConfig); + }).then(null, function (e) { + var err; + + errorMsg = e.toString(); + errorTree = e.moduleTree; + stackMatch = stackRegExp.exec(errorMsg); + + if (stackMatch) { + errorMsg += errorMsg.substring(0, stackMatch.index + stackMatch[0].length + 1); + } + + //If a module tree that shows what module triggered the error, + //print it out. + if (errorTree && errorTree.length > 0) { + errorMsg += '\nIn module tree:\n'; + + for (i = errorTree.length - 1; i > -1; i--) { + errorMod = errorTree[i]; + if (errorMod) { + for (j = errorTree.length - i; j > -1; j--) { + errorMsg += standardIndent; + } + errorMsg += errorMod + '\n'; + } + } + + logger.error(errorMsg); + } + + errorStack = e.stack; + + if (typeof args === 'string' && args.indexOf('stacktrace=true') !== -1) { + errorMsg += '\n' + errorStack; + } else { + if (!stackMatch && errorStack) { + //Just trim out the first "at" in the stack. + stackMatch = stackRegExp.exec(errorStack); + if (stackMatch) { + errorMsg += '\n' + stackMatch[0] || ''; + } + } + } + + err = new Error(errorMsg); + err.originalError = e; + throw err; + }); + }; + + build._run = function (cmdConfig) { + var buildPaths, fileName, fileNames, + paths, i, + baseConfig, config, + modules, srcPath, buildContext, + destPath, moduleMap, parentModuleMap, context, + resources, resource, plugin, fileContents, + pluginProcessed = {}, + buildFileContents = "", + pluginCollector = {}; + + return prim().start(function () { + var prop; + + //Can now run the patches to require.js to allow it to be used for + //build generation. Do it here instead of at the top of the module + //because we want normal require behavior to load the build tool + //then want to switch to build mode. + requirePatch(); + + config = build.createConfig(cmdConfig); + paths = config.paths; + + //Remove the previous build dir, in case it contains source transforms, + //like the ones done with onBuildRead and onBuildWrite. + if (config.dir && !config.keepBuildDir && file.exists(config.dir)) { + file.deleteFile(config.dir); + } + + if (!config.out && !config.cssIn) { + //This is not just a one-off file build but a full build profile, with + //lots of files to process. + + //First copy all the baseUrl content + file.copyDir((config.appDir || config.baseUrl), config.dir, /\w/, true); + + //Adjust baseUrl if config.appDir is in play, and set up build output paths. + buildPaths = {}; + if (config.appDir) { + //All the paths should be inside the appDir, so just adjust + //the paths to use the dirBaseUrl + for (prop in paths) { + if (hasProp(paths, prop)) { + buildPaths[prop] = paths[prop].replace(config.appDir, config.dir); + } + } + } else { + //If no appDir, then make sure to copy the other paths to this directory. + for (prop in paths) { + if (hasProp(paths, prop)) { + //Set up build path for each path prefix, but only do so + //if the path falls out of the current baseUrl + if (paths[prop].indexOf(config.baseUrl) === 0) { + buildPaths[prop] = paths[prop].replace(config.baseUrl, config.dirBaseUrl); + } else { + buildPaths[prop] = paths[prop] === 'empty:' ? 'empty:' : prop; + + //Make sure source path is fully formed with baseUrl, + //if it is a relative URL. + srcPath = paths[prop]; + if (srcPath.indexOf('/') !== 0 && srcPath.indexOf(':') === -1) { + srcPath = config.baseUrl + srcPath; + } + + destPath = config.dirBaseUrl + buildPaths[prop]; + + //Skip empty: paths + if (srcPath !== 'empty:') { + //If the srcPath is a directory, copy the whole directory. + if (file.exists(srcPath) && file.isDirectory(srcPath)) { + //Copy files to build area. Copy all files (the /\w/ regexp) + file.copyDir(srcPath, destPath, /\w/, true); + } else { + //Try a .js extension + srcPath += '.js'; + destPath += '.js'; + file.copyFile(srcPath, destPath); + } + } + } + } + } + } + } + + //Figure out source file location for each module layer. Do this by seeding require + //with source area configuration. This is needed so that later the module layers + //can be manually copied over to the source area, since the build may be + //require multiple times and the above copyDir call only copies newer files. + require({ + baseUrl: config.baseUrl, + paths: paths, + packagePaths: config.packagePaths, + packages: config.packages + }); + buildContext = require.s.contexts._; + modules = config.modules; + + if (modules) { + modules.forEach(function (module) { + if (module.name) { + module._sourcePath = buildContext.nameToUrl(module.name); + //If the module does not exist, and this is not a "new" module layer, + //as indicated by a true "create" property on the module, and + //it is not a plugin-loaded resource, and there is no + //'rawText' containing the module's source then throw an error. + if (!file.exists(module._sourcePath) && !module.create && + module.name.indexOf('!') === -1 && + (!config.rawText || !lang.hasProp(config.rawText, module.name))) { + throw new Error("ERROR: module path does not exist: " + + module._sourcePath + " for module named: " + module.name + + ". Path is relative to: " + file.absPath('.')); + } + } + }); + } + + if (config.out) { + //Just set up the _buildPath for the module layer. + require(config); + if (!config.cssIn) { + config.modules[0]._buildPath = typeof config.out === 'function' ? + 'FUNCTION' : config.out; + } + } else if (!config.cssIn) { + //Now set up the config for require to use the build area, and calculate the + //build file locations. Pass along any config info too. + baseConfig = { + baseUrl: config.dirBaseUrl, + paths: buildPaths + }; + + lang.mixin(baseConfig, config); + require(baseConfig); + + if (modules) { + modules.forEach(function (module) { + if (module.name) { + module._buildPath = buildContext.nameToUrl(module.name, null); + + //If buildPath and sourcePath are the same, throw since this + //would result in modifying source. This condition can happen + //with some more tricky paths: config and appDir/baseUrl + //setting, which is a sign of incorrect config. + if (module._buildPath === module._sourcePath) { + throw new Error('Module ID \'' + module.name + + '\' has a source path that is same as output path: ' + + module._sourcePath + + '. Stopping, config is malformed.'); + } + + if (!module.create) { + file.copyFile(module._sourcePath, module._buildPath); + } + } + }); + } + } + + //Run CSS optimizations before doing JS module tracing, to allow + //things like text loader plugins loading CSS to get the optimized + //CSS. + if (config.optimizeCss && config.optimizeCss !== "none" && config.dir) { + buildFileContents += optimize.css(config.dir, config); + } + }).then(function() { + baseConfig = lang.deeplikeCopy(require.s.contexts._.config); + }).then(function () { + var actions = []; + + if (modules) { + actions = modules.map(function (module, i) { + return function () { + //Save off buildPath to module index in a hash for quicker + //lookup later. + config._buildPathToModuleIndex[file.normalize(module._buildPath)] = i; + + //Call require to calculate dependencies. + return build.traceDependencies(module, config, baseConfig) + .then(function (layer) { + module.layer = layer; + }); + }; + }); + + return prim.serial(actions); + } + }).then(function () { + var actions; + + if (modules) { + //Now build up shadow layers for anything that should be excluded. + //Do this after tracing dependencies for each module, in case one + //of those modules end up being one of the excluded values. + actions = modules.map(function (module) { + return function () { + if (module.exclude) { + module.excludeLayers = []; + return prim.serial(module.exclude.map(function (exclude, i) { + return function () { + //See if it is already in the list of modules. + //If not trace dependencies for it. + var found = build.findBuildModule(exclude, modules); + if (found) { + module.excludeLayers[i] = found; + } else { + return build.traceDependencies({name: exclude}, config, baseConfig) + .then(function (layer) { + module.excludeLayers[i] = { layer: layer }; + }); + } + }; + })); + } + }; + }); + + return prim.serial(actions); + } + }).then(function () { + if (modules) { + return prim.serial(modules.map(function (module) { + return function () { + if (module.exclude) { + //module.exclude is an array of module names. For each one, + //get the nested dependencies for it via a matching entry + //in the module.excludeLayers array. + module.exclude.forEach(function (excludeModule, i) { + var excludeLayer = module.excludeLayers[i].layer, + map = excludeLayer.buildFileToModule; + excludeLayer.buildFilePaths.forEach(function(filePath){ + build.removeModulePath(map[filePath], filePath, module.layer); + }); + }); + } + if (module.excludeShallow) { + //module.excludeShallow is an array of module names. + //shallow exclusions are just that module itself, and not + //its nested dependencies. + module.excludeShallow.forEach(function (excludeShallowModule) { + var path = getOwn(module.layer.buildPathMap, excludeShallowModule); + if (path) { + build.removeModulePath(excludeShallowModule, path, module.layer); + } + }); + } + + //Flatten them and collect the build output for each module. + return build.flattenModule(module, module.layer, config).then(function (builtModule) { + var finalText, baseName; + //Save it to a temp file for now, in case there are other layers that + //contain optimized content that should not be included in later + //layer optimizations. See issue #56. + if (module._buildPath === 'FUNCTION') { + module._buildText = builtModule.text; + module._buildSourceMap = builtModule.sourceMap; + } else { + finalText = builtModule.text; + if (builtModule.sourceMap) { + baseName = module._buildPath.split('/'); + baseName = baseName.pop(); + finalText += '\n//# sourceMappingURL=' + baseName + '.map'; + file.saveUtf8File(module._buildPath + '.map', builtModule.sourceMap); + } + file.saveUtf8File(module._buildPath + '-temp', finalText); + + } + buildFileContents += builtModule.buildText; + }); + }; + })); + } + }).then(function () { + var moduleName, outOrigSourceMap; + if (modules) { + //Now move the build layers to their final position. + modules.forEach(function (module) { + var finalPath = module._buildPath; + if (finalPath !== 'FUNCTION') { + if (file.exists(finalPath)) { + file.deleteFile(finalPath); + } + file.renameFile(finalPath + '-temp', finalPath); + + //And finally, if removeCombined is specified, remove + //any of the files that were used in this layer. + //Be sure not to remove other build layers. + if (config.removeCombined && !config.out) { + module.layer.buildFilePaths.forEach(function (path) { + var isLayer = modules.some(function (mod) { + return mod._buildPath === path; + }), + relPath = build.makeRelativeFilePath(config.dir, path); + + if (file.exists(path) && + // not a build layer target + !isLayer && + // not outside the build directory + relPath.indexOf('..') !== 0) { + file.deleteFile(path); + } + }); + } + } + + //Signal layer is done + if (config.onModuleBundleComplete) { + config.onModuleBundleComplete(module.onCompleteData); + } + }); + } + + //If removeCombined in play, remove any empty directories that + //may now exist because of its use + if (config.removeCombined && !config.out && config.dir) { + file.deleteEmptyDirs(config.dir); + } + + //Do other optimizations. + if (config.out && !config.cssIn) { + //Just need to worry about one JS file. + fileName = config.modules[0]._buildPath; + if (fileName === 'FUNCTION') { + outOrigSourceMap = config.modules[0]._buildSourceMap; + config._buildSourceMap = outOrigSourceMap; + config.modules[0]._buildText = optimize.js((config.modules[0].name || + config.modules[0].include[0] || + fileName) + '.build.js', + config.modules[0]._buildText, + null, + config); + if (config._buildSourceMap && config._buildSourceMap !== outOrigSourceMap) { + config.modules[0]._buildSourceMap = config._buildSourceMap; + config._buildSourceMap = null; + } + } else { + optimize.jsFile(fileName, null, fileName, config); + } + } else if (!config.cssIn) { + //Normal optimizations across modules. + + //JS optimizations. + fileNames = file.getFilteredFileList(config.dir, /\.js$/, true); + fileNames.forEach(function (fileName) { + var cfg, override, moduleIndex; + + //Generate the module name from the config.dir root. + moduleName = fileName.replace(config.dir, ''); + //Get rid of the extension + moduleName = moduleName.substring(0, moduleName.length - 3); + + //If there is an override for a specific layer build module, + //and this file is that module, mix in the override for use + //by optimize.jsFile. + moduleIndex = getOwn(config._buildPathToModuleIndex, fileName); + //Normalize, since getOwn could have returned undefined + moduleIndex = moduleIndex === 0 || moduleIndex > 0 ? moduleIndex : -1; + + //Try to avoid extra work if the other files do not need to + //be read. Build layers should be processed at the very + //least for optimization. + if (moduleIndex > -1 || !config.skipDirOptimize || + config.normalizeDirDefines === "all" || + config.cjsTranslate) { + //Convert the file to transport format, but without a name + //inserted (by passing null for moduleName) since the files are + //standalone, one module per file. + fileContents = file.readFile(fileName); + + + //For builds, if wanting cjs translation, do it now, so that + //the individual modules can be loaded cross domain via + //plain script tags. + if (config.cjsTranslate && + (!config.shim || !lang.hasProp(config.shim, moduleName))) { + fileContents = commonJs.convert(fileName, fileContents); + } + + if (moduleIndex === -1) { + if (config.onBuildRead) { + fileContents = config.onBuildRead(moduleName, + fileName, + fileContents); + } + + //Only do transport normalization if this is not a build + //layer (since it was already normalized) and if + //normalizeDirDefines indicated all should be done. + if (config.normalizeDirDefines === "all") { + fileContents = build.toTransport(config.namespace, + null, + fileName, + fileContents); + } + + if (config.onBuildWrite) { + fileContents = config.onBuildWrite(moduleName, + fileName, + fileContents); + } + } + + override = moduleIndex > -1 ? + config.modules[moduleIndex].override : null; + if (override) { + cfg = build.createOverrideConfig(config, override); + } else { + cfg = config; + } + + if (moduleIndex > -1 || !config.skipDirOptimize) { + optimize.jsFile(fileName, fileContents, fileName, cfg, pluginCollector); + } + } + }); + + //Normalize all the plugin resources. + context = require.s.contexts._; + + for (moduleName in pluginCollector) { + if (hasProp(pluginCollector, moduleName)) { + parentModuleMap = context.makeModuleMap(moduleName); + resources = pluginCollector[moduleName]; + for (i = 0; i < resources.length; i++) { + resource = resources[i]; + moduleMap = context.makeModuleMap(resource, parentModuleMap); + if (falseProp(context.plugins, moduleMap.prefix)) { + //Set the value in context.plugins so it + //will be evaluated as a full plugin. + context.plugins[moduleMap.prefix] = true; + + //Do not bother if the plugin is not available. + if (!file.exists(require.toUrl(moduleMap.prefix + '.js'))) { + continue; + } + + //Rely on the require in the build environment + //to be synchronous + context.require([moduleMap.prefix]); + + //Now that the plugin is loaded, redo the moduleMap + //since the plugin will need to normalize part of the path. + moduleMap = context.makeModuleMap(resource, parentModuleMap); + } + + //Only bother with plugin resources that can be handled + //processed by the plugin, via support of the writeFile + //method. + if (falseProp(pluginProcessed, moduleMap.id)) { + //Only do the work if the plugin was really loaded. + //Using an internal access because the file may + //not really be loaded. + plugin = getOwn(context.defined, moduleMap.prefix); + if (plugin && plugin.writeFile) { + plugin.writeFile( + moduleMap.prefix, + moduleMap.name, + require, + makeWriteFile( + config.namespace + ), + context.config + ); + } + + pluginProcessed[moduleMap.id] = true; + } + } + + } + } + + //console.log('PLUGIN COLLECTOR: ' + JSON.stringify(pluginCollector, null, " ")); + + + //All module layers are done, write out the build.txt file. + file.saveUtf8File(config.dir + "build.txt", buildFileContents); + } + + //If just have one CSS file to optimize, do that here. + if (config.cssIn) { + buildFileContents += optimize.cssFile(config.cssIn, config.out, config).buildText; + } + + if (typeof config.out === 'function') { + config.out(config.modules[0]._buildText, config.modules[0]._buildSourceMap); + } + + //Print out what was built into which layers. + if (buildFileContents) { + logger.info(buildFileContents); + return buildFileContents; + } + + return ''; + }); + }; + + /** + * Converts command line args like "paths.foo=../some/path" + * result.paths = { foo: '../some/path' } where prop = paths, + * name = paths.foo and value = ../some/path, so it assumes the + * name=value splitting has already happened. + */ + function stringDotToObj(result, name, value) { + var parts = name.split('.'); + + parts.forEach(function (prop, i) { + if (i === parts.length - 1) { + result[prop] = value; + } else { + if (falseProp(result, prop)) { + result[prop] = {}; + } + result = result[prop]; + } + + }); + } + + build.objProps = { + paths: true, + wrap: true, + pragmas: true, + pragmasOnSave: true, + has: true, + hasOnSave: true, + uglify: true, + uglify2: true, + closure: true, + map: true, + throwWhen: true + }; + + build.hasDotPropMatch = function (prop) { + var dotProp, + index = prop.indexOf('.'); + + if (index !== -1) { + dotProp = prop.substring(0, index); + return hasProp(build.objProps, dotProp); + } + return false; + }; + + /** + * Converts an array that has String members of "name=value" + * into an object, where the properties on the object are the names in the array. + * Also converts the strings "true" and "false" to booleans for the values. + * member name/value pairs, and converts some comma-separated lists into + * arrays. + * @param {Array} ary + */ + build.convertArrayToObject = function (ary) { + var result = {}, i, separatorIndex, prop, value, + needArray = { + "include": true, + "exclude": true, + "excludeShallow": true, + "insertRequire": true, + "stubModules": true, + "deps": true, + "mainConfigFile": true + }; + + for (i = 0; i < ary.length; i++) { + separatorIndex = ary[i].indexOf("="); + if (separatorIndex === -1) { + throw "Malformed name/value pair: [" + ary[i] + "]. Format should be name=value"; + } + + value = ary[i].substring(separatorIndex + 1, ary[i].length); + if (value === "true") { + value = true; + } else if (value === "false") { + value = false; + } + + prop = ary[i].substring(0, separatorIndex); + + //Convert to array if necessary + if (getOwn(needArray, prop)) { + value = value.split(","); + } + + if (build.hasDotPropMatch(prop)) { + stringDotToObj(result, prop, value); + } else { + result[prop] = value; + } + } + return result; //Object + }; + + build.makeAbsPath = function (path, absFilePath) { + if (!absFilePath) { + return path; + } + + //Add abspath if necessary. If path starts with a slash or has a colon, + //then already is an abolute path. + if (path.indexOf('/') !== 0 && path.indexOf(':') === -1) { + path = absFilePath + + (absFilePath.charAt(absFilePath.length - 1) === '/' ? '' : '/') + + path; + path = file.normalize(path); + } + return path.replace(lang.backSlashRegExp, '/'); + }; + + build.makeAbsObject = function (props, obj, absFilePath) { + var i, prop; + if (obj) { + for (i = 0; i < props.length; i++) { + prop = props[i]; + if (hasProp(obj, prop) && typeof obj[prop] === 'string') { + obj[prop] = build.makeAbsPath(obj[prop], absFilePath); + } + } + } + }; + + /** + * For any path in a possible config, make it absolute relative + * to the absFilePath passed in. + */ + build.makeAbsConfig = function (config, absFilePath) { + var props, prop, i; + + props = ["appDir", "dir", "baseUrl"]; + for (i = 0; i < props.length; i++) { + prop = props[i]; + + if (getOwn(config, prop)) { + //Add abspath if necessary, make sure these paths end in + //slashes + if (prop === "baseUrl") { + config.originalBaseUrl = config.baseUrl; + if (config.appDir) { + //If baseUrl with an appDir, the baseUrl is relative to + //the appDir, *not* the absFilePath. appDir and dir are + //made absolute before baseUrl, so this will work. + config.baseUrl = build.makeAbsPath(config.originalBaseUrl, config.appDir); + } else { + //The dir output baseUrl is same as regular baseUrl, both + //relative to the absFilePath. + config.baseUrl = build.makeAbsPath(config[prop], absFilePath); + } + } else { + config[prop] = build.makeAbsPath(config[prop], absFilePath); + } + + config[prop] = endsWithSlash(config[prop]); + } + } + + build.makeAbsObject((config.out === "stdout" ? ["cssIn"] : ["out", "cssIn"]), + config, absFilePath); + build.makeAbsObject(["startFile", "endFile"], config.wrap, absFilePath); + }; + + /** + * Creates a relative path to targetPath from refPath. + * Only deals with file paths, not folders. If folders, + * make sure paths end in a trailing '/'. + */ + build.makeRelativeFilePath = function (refPath, targetPath) { + var i, dotLength, finalParts, length, targetParts, targetName, + refParts = refPath.split('/'), + hasEndSlash = endsWithSlashRegExp.test(targetPath), + dotParts = []; + + targetPath = file.normalize(targetPath); + if (hasEndSlash && !endsWithSlashRegExp.test(targetPath)) { + targetPath += '/'; + } + targetParts = targetPath.split('/'); + //Pull off file name + targetName = targetParts.pop(); + + //Also pop off the ref file name to make the matches against + //targetParts equivalent. + refParts.pop(); + + length = refParts.length; + + for (i = 0; i < length; i += 1) { + if (refParts[i] !== targetParts[i]) { + break; + } + } + + //Now i is the index in which they diverge. + finalParts = targetParts.slice(i); + + dotLength = length - i; + for (i = 0; i > -1 && i < dotLength; i += 1) { + dotParts.push('..'); + } + + return dotParts.join('/') + (dotParts.length ? '/' : '') + + finalParts.join('/') + (finalParts.length ? '/' : '') + + targetName; + }; + + build.nestedMix = { + paths: true, + has: true, + hasOnSave: true, + pragmas: true, + pragmasOnSave: true + }; + + /** + * Mixes additional source config into target config, and merges some + * nested config, like paths, correctly. + */ + function mixConfig(target, source, skipArrays) { + var prop, value, isArray, targetValue; + + for (prop in source) { + if (hasProp(source, prop)) { + //If the value of the property is a plain object, then + //allow a one-level-deep mixing of it. + value = source[prop]; + isArray = lang.isArray(value); + if (typeof value === 'object' && value && + !isArray && !lang.isFunction(value) && + !lang.isRegExp(value)) { + + // TODO: need to generalize this work, maybe also reuse + // the work done in requirejs configure, perhaps move to + // just a deep copy/merge overall. However, given the + // amount of observable change, wait for a dot release. + // This change is in relation to #645 + if (prop === 'map') { + if (!target.map) { + target.map = {}; + } + lang.deepMix(target.map, source.map); + } else { + target[prop] = lang.mixin({}, target[prop], value, true); + } + } else if (isArray) { + if (!skipArrays) { + // Some config, like packages, are arrays. For those, + // just merge the results. + targetValue = target[prop]; + if (lang.isArray(targetValue)) { + target[prop] = targetValue.concat(value); + } else { + target[prop] = value; + } + } + } else { + target[prop] = value; + } + } + } + + //Set up log level since it can affect if errors are thrown + //or caught and passed to errbacks while doing config setup. + if (lang.hasProp(target, 'logLevel')) { + logger.logLevel(target.logLevel); + } + } + + /** + * Converts a wrap.startFile or endFile to be start/end as a string. + * the startFile/endFile values can be arrays. + */ + function flattenWrapFile(wrap, keyName, absFilePath) { + var keyFileName = keyName + 'File'; + + if (typeof wrap[keyName] !== 'string' && wrap[keyFileName]) { + wrap[keyName] = ''; + if (typeof wrap[keyFileName] === 'string') { + wrap[keyFileName] = [wrap[keyFileName]]; + } + wrap[keyFileName].forEach(function (fileName) { + wrap[keyName] += (wrap[keyName] ? '\n' : '') + + file.readFile(build.makeAbsPath(fileName, absFilePath)); + }); + } else if (wrap[keyName] === null || wrap[keyName] === undefined) { + //Allow missing one, just set to empty string. + wrap[keyName] = ''; + } else if (typeof wrap[keyName] !== 'string') { + throw new Error('wrap.' + keyName + ' or wrap.' + keyFileName + ' malformed'); + } + } + + function normalizeWrapConfig(config, absFilePath) { + //Get any wrap text. + try { + if (config.wrap) { + if (config.wrap === true) { + //Use default values. + config.wrap = { + start: '(function () {', + end: '}());' + }; + } else { + flattenWrapFile(config.wrap, 'start', absFilePath); + flattenWrapFile(config.wrap, 'end', absFilePath); + } + } + } catch (wrapError) { + throw new Error('Malformed wrap config: ' + wrapError.toString()); + } + } + + /** + * Creates a config object for an optimization build. + * It will also read the build profile if it is available, to create + * the configuration. + * + * @param {Object} cfg config options that take priority + * over defaults and ones in the build file. These options could + * be from a command line, for instance. + * + * @param {Object} the created config object. + */ + build.createConfig = function (cfg) { + /*jslint evil: true */ + var buildFileContents, buildFileConfig, mainConfig, + mainConfigFile, mainConfigPath, buildFile, absFilePath, + config = {}, + buildBaseConfig = makeBuildBaseConfig(); + + //Make sure all paths are relative to current directory. + absFilePath = file.absPath('.'); + build.makeAbsConfig(cfg, absFilePath); + build.makeAbsConfig(buildBaseConfig, absFilePath); + + lang.mixin(config, buildBaseConfig); + lang.mixin(config, cfg, true); + + //Set up log level early since it can affect if errors are thrown + //or caught and passed to errbacks, even while constructing config. + if (lang.hasProp(config, 'logLevel')) { + logger.logLevel(config.logLevel); + } + + if (config.buildFile) { + //A build file exists, load it to get more config. + buildFile = file.absPath(config.buildFile); + + //Find the build file, and make sure it exists, if this is a build + //that has a build profile, and not just command line args with an in=path + if (!file.exists(buildFile)) { + throw new Error("ERROR: build file does not exist: " + buildFile); + } + + absFilePath = config.baseUrl = file.absPath(file.parent(buildFile)); + + //Load build file options. + buildFileContents = file.readFile(buildFile); + try { + //Be a bit lenient in the file ending in a ; or ending with + //a //# sourceMappingUrl comment, mostly for compiled languages + //that create a config, like typescript. + buildFileContents = buildFileContents + .replace(/\/\/\#[^\n\r]+[\n\r]*$/, '') + .trim() + .replace(/;$/, ''); + + buildFileConfig = eval("(" + buildFileContents + ")"); + build.makeAbsConfig(buildFileConfig, absFilePath); + + //Mix in the config now so that items in mainConfigFile can + //be resolved relative to them if necessary, like if appDir + //is set here, but the baseUrl is in mainConfigFile. Will + //re-mix in the same build config later after mainConfigFile + //is processed, since build config should take priority. + mixConfig(config, buildFileConfig); + } catch (e) { + throw new Error("Build file " + buildFile + " is malformed: " + e); + } + } + + mainConfigFile = config.mainConfigFile || (buildFileConfig && buildFileConfig.mainConfigFile); + if (mainConfigFile) { + if (typeof mainConfigFile === 'string') { + mainConfigFile = [mainConfigFile]; + } + + mainConfigFile.forEach(function (configFile) { + configFile = build.makeAbsPath(configFile, absFilePath); + if (!file.exists(configFile)) { + throw new Error(configFile + ' does not exist.'); + } + try { + mainConfig = parse.findConfig(file.readFile(configFile)).config; + } catch (configError) { + throw new Error('The config in mainConfigFile ' + + configFile + + ' cannot be used because it cannot be evaluated' + + ' correctly while running in the optimizer. Try only' + + ' using a config that is also valid JSON, or do not use' + + ' mainConfigFile and instead copy the config values needed' + + ' into a build file or command line arguments given to the optimizer.\n' + + 'Source error from parsing: ' + configFile + ': ' + configError); + } + if (mainConfig) { + mainConfigPath = configFile.substring(0, configFile.lastIndexOf('/')); + + //Add in some existing config, like appDir, since they can be + //used inside the configFile -- paths and baseUrl are + //relative to them. + if (config.appDir && !mainConfig.appDir) { + mainConfig.appDir = config.appDir; + } + + //If no baseUrl, then use the directory holding the main config. + if (!mainConfig.baseUrl) { + mainConfig.baseUrl = mainConfigPath; + } + + build.makeAbsConfig(mainConfig, mainConfigPath); + mixConfig(config, mainConfig); + } + }); + } + + //Mix in build file config, but only after mainConfig has been mixed in. + //Since this is a re-application, skip array merging. + if (buildFileConfig) { + mixConfig(config, buildFileConfig, true); + } + + //Re-apply the override config values. Command line + //args should take precedence over build file values. + //Since this is a re-application, skip array merging. + mixConfig(config, cfg, true); + + //Fix paths to full paths so that they can be adjusted consistently + //lately to be in the output area. + lang.eachProp(config.paths, function (value, prop) { + if (lang.isArray(value)) { + throw new Error('paths fallback not supported in optimizer. ' + + 'Please provide a build config path override ' + + 'for ' + prop); + } + config.paths[prop] = build.makeAbsPath(value, config.baseUrl); + }); + + //Set final output dir + if (hasProp(config, "baseUrl")) { + if (config.appDir) { + if (!config.originalBaseUrl) { + throw new Error('Please set a baseUrl in the build config'); + } + config.dirBaseUrl = build.makeAbsPath(config.originalBaseUrl, config.dir); + } else { + config.dirBaseUrl = config.dir || config.baseUrl; + } + //Make sure dirBaseUrl ends in a slash, since it is + //concatenated with other strings. + config.dirBaseUrl = endsWithSlash(config.dirBaseUrl); + } + + + //If out=stdout, write output to STDOUT instead of a file. + if (config.out && config.out === 'stdout') { + config.out = function (content) { + var e = env.get(); + if (e === 'rhino') { + var out = new java.io.PrintStream(java.lang.System.out, true, 'UTF-8'); + out.println(content); + } else if (e === 'node') { + process.stdout.setEncoding('utf8'); + process.stdout.write(content); + } else { + console.log(content); + } + }; + } + + //Check for errors in config + if (config.main) { + throw new Error('"main" passed as an option, but the ' + + 'supported option is called "name".'); + } + if (config.out && !config.name && !config.modules && !config.include && + !config.cssIn) { + throw new Error('Missing either a "name", "include" or "modules" ' + + 'option'); + } + if (config.cssIn) { + if (config.dir || config.appDir) { + throw new Error('cssIn is only for the output of single file ' + + 'CSS optimizations and is not compatible with "dir" or "appDir" configuration.'); + } + if (!config.out) { + throw new Error('"out" option missing.'); + } + } + if (!config.cssIn && !config.baseUrl) { + //Just use the current directory as the baseUrl + config.baseUrl = './'; + } + if (!config.out && !config.dir) { + throw new Error('Missing either an "out" or "dir" config value. ' + + 'If using "appDir" for a full project optimization, ' + + 'use "dir". If you want to optimize to one file, ' + + 'use "out".'); + } + if (config.appDir && config.out) { + throw new Error('"appDir" is not compatible with "out". Use "dir" ' + + 'instead. appDir is used to copy whole projects, ' + + 'where "out" with "baseUrl" is used to just ' + + 'optimize to one file.'); + } + if (config.out && config.dir) { + throw new Error('The "out" and "dir" options are incompatible.' + + ' Use "out" if you are targeting a single file' + + ' for optimization, and "dir" if you want the appDir' + + ' or baseUrl directories optimized.'); + } + + if (config.dir) { + // Make sure the output dir is not set to a parent of the + // source dir or the same dir, as it will result in source + // code deletion. + if (!config.allowSourceOverwrites && (config.dir === config.baseUrl || + config.dir === config.appDir || + (config.baseUrl && build.makeRelativeFilePath(config.dir, + config.baseUrl).indexOf('..') !== 0) || + (config.appDir && + build.makeRelativeFilePath(config.dir, config.appDir).indexOf('..') !== 0))) { + throw new Error('"dir" is set to a parent or same directory as' + + ' "appDir" or "baseUrl". This can result in' + + ' the deletion of source code. Stopping. If' + + ' you want to allow possible overwriting of' + + ' source code, set "allowSourceOverwrites"' + + ' to true in the build config, but do so at' + + ' your own risk. In that case, you may want' + + ' to also set "keepBuildDir" to true.'); + } + } + + if (config.insertRequire && !lang.isArray(config.insertRequire)) { + throw new Error('insertRequire should be a list of module IDs' + + ' to insert in to a require([]) call.'); + } + + if (config.generateSourceMaps) { + if (config.preserveLicenseComments && config.optimize !== 'none') { + throw new Error('Cannot use preserveLicenseComments and ' + + 'generateSourceMaps together. Either explcitly set ' + + 'preserveLicenseComments to false (default is true) or ' + + 'turn off generateSourceMaps. If you want source maps with ' + + 'license comments, see: ' + + 'http://requirejs.org/docs/errors.html#sourcemapcomments'); + } else if (config.optimize !== 'none' && + config.optimize !== 'closure' && + config.optimize !== 'uglify2') { + //Allow optimize: none to pass, since it is useful when toggling + //minification on and off to debug something, and it implicitly + //works, since it does not need a source map. + throw new Error('optimize: "' + config.optimize + + '" does not support generateSourceMaps.'); + } + } + + if ((config.name || config.include) && !config.modules) { + //Just need to build one file, but may be part of a whole appDir/ + //baseUrl copy, but specified on the command line, so cannot do + //the modules array setup. So create a modules section in that + //case. + config.modules = [ + { + name: config.name, + out: config.out, + create: config.create, + include: config.include, + exclude: config.exclude, + excludeShallow: config.excludeShallow, + insertRequire: config.insertRequire, + stubModules: config.stubModules + } + ]; + delete config.stubModules; + } else if (config.modules && config.out) { + throw new Error('If the "modules" option is used, then there ' + + 'should be a "dir" option set and "out" should ' + + 'not be used since "out" is only for single file ' + + 'optimization output.'); + } else if (config.modules && config.name) { + throw new Error('"name" and "modules" options are incompatible. ' + + 'Either use "name" if doing a single file ' + + 'optimization, or "modules" if you want to target ' + + 'more than one file for optimization.'); + } + + if (config.out && !config.cssIn) { + //Just one file to optimize. + + //Does not have a build file, so set up some defaults. + //Optimizing CSS should not be allowed, unless explicitly + //asked for on command line. In that case the only task is + //to optimize a CSS file. + if (!cfg.optimizeCss) { + config.optimizeCss = "none"; + } + } + + //Normalize cssPrefix + if (config.cssPrefix) { + //Make sure cssPrefix ends in a slash + config.cssPrefix = endsWithSlash(config.cssPrefix); + } else { + config.cssPrefix = ''; + } + + //Cycle through modules and normalize + if (config.modules && config.modules.length) { + config.modules.forEach(function (mod) { + + //Combine any local stubModules with global values. + if (config.stubModules) { + mod.stubModules = config.stubModules.concat(mod.stubModules || []); + } + + //Create a hash lookup for the stubModules config to make lookup + //cheaper later. + if (mod.stubModules) { + mod.stubModules._byName = {}; + mod.stubModules.forEach(function (id) { + mod.stubModules._byName[id] = true; + }); + } + + // Legacy command support, which allowed a single string ID + // for include. + if (typeof mod.include === 'string') { + mod.include = [mod.include]; + } + + //Allow wrap config in overrides, but normalize it. + if (mod.override) { + normalizeWrapConfig(mod.override, absFilePath); + } + }); + } + + normalizeWrapConfig(config, absFilePath); + + //Do final input verification + if (config.context) { + throw new Error('The build argument "context" is not supported' + + ' in a build. It should only be used in web' + + ' pages.'); + } + + //Set up normalizeDirDefines. If not explicitly set, if optimize "none", + //set to "skip" otherwise set to "all". + if (!hasProp(config, 'normalizeDirDefines')) { + if (config.optimize === 'none' || config.skipDirOptimize) { + config.normalizeDirDefines = 'skip'; + } else { + config.normalizeDirDefines = 'all'; + } + } + + //Set file.fileExclusionRegExp if desired + if (hasProp(config, 'fileExclusionRegExp')) { + if (typeof config.fileExclusionRegExp === "string") { + file.exclusionRegExp = new RegExp(config.fileExclusionRegExp); + } else { + file.exclusionRegExp = config.fileExclusionRegExp; + } + } else if (hasProp(config, 'dirExclusionRegExp')) { + //Set file.dirExclusionRegExp if desired, this is the old + //name for fileExclusionRegExp before 1.0.2. Support for backwards + //compatibility + file.exclusionRegExp = config.dirExclusionRegExp; + } + + //Track the deps, but in a different key, so that they are not loaded + //as part of config seeding before all config is in play (#648). Was + //going to merge this in with "include", but include is added after + //the "name" target. To preserve what r.js has done previously, make + //sure "deps" comes before the "name". + if (config.deps) { + config._depsInclude = config.deps; + } + + + //Remove things that may cause problems in the build. + //deps already merged above + delete config.deps; + delete config.jQuery; + delete config.enforceDefine; + delete config.urlArgs; + + return config; + }; + + /** + * finds the module being built/optimized with the given moduleName, + * or returns null. + * @param {String} moduleName + * @param {Array} modules + * @returns {Object} the module object from the build profile, or null. + */ + build.findBuildModule = function (moduleName, modules) { + var i, module; + for (i = 0; i < modules.length; i++) { + module = modules[i]; + if (module.name === moduleName) { + return module; + } + } + return null; + }; + + /** + * Removes a module name and path from a layer, if it is supposed to be + * excluded from the layer. + * @param {String} moduleName the name of the module + * @param {String} path the file path for the module + * @param {Object} layer the layer to remove the module/path from + */ + build.removeModulePath = function (module, path, layer) { + var index = layer.buildFilePaths.indexOf(path); + if (index !== -1) { + layer.buildFilePaths.splice(index, 1); + } + }; + + /** + * Uses the module build config object to trace the dependencies for the + * given module. + * + * @param {Object} module the module object from the build config info. + * @param {Object} config the build config object. + * @param {Object} [baseLoaderConfig] the base loader config to use for env resets. + * + * @returns {Object} layer information about what paths and modules should + * be in the flattened module. + */ + build.traceDependencies = function (module, config, baseLoaderConfig) { + var include, override, layer, context, oldContext, + rawTextByIds, + syncChecks = { + rhino: true, + node: true, + xpconnect: true + }, + deferred = prim(); + + //Reset some state set up in requirePatch.js, and clean up require's + //current context. + oldContext = require._buildReset(); + + //Grab the reset layer and context after the reset, but keep the + //old config to reuse in the new context. + layer = require._layer; + context = layer.context; + + //Put back basic config, use a fresh object for it. + if (baseLoaderConfig) { + require(lang.deeplikeCopy(baseLoaderConfig)); + } + + logger.trace("\nTracing dependencies for: " + (module.name || + (typeof module.out === 'function' ? 'FUNCTION' : module.out))); + include = config._depsInclude || []; + include = include.concat(module.name && !module.create ? [module.name] : []); + if (module.include) { + include = include.concat(module.include); + } + + //If there are overrides to basic config, set that up now.; + if (module.override) { + if (baseLoaderConfig) { + override = build.createOverrideConfig(baseLoaderConfig, module.override); + } else { + override = lang.deeplikeCopy(module.override); + } + require(override); + } + + //Now, populate the rawText cache with any values explicitly passed in + //via config. + rawTextByIds = require.s.contexts._.config.rawText; + if (rawTextByIds) { + lang.eachProp(rawTextByIds, function (contents, id) { + var url = require.toUrl(id) + '.js'; + require._cachedRawText[url] = contents; + }); + } + + + //Configure the callbacks to be called. + deferred.reject.__requireJsBuild = true; + + //Use a wrapping function so can check for errors. + function includeFinished(value) { + //If a sync build environment, check for errors here, instead of + //in the then callback below, since some errors, like two IDs pointed + //to same URL but only one anon ID will leave the loader in an + //unresolved state since a setTimeout cannot be used to check for + //timeout. + var hasError = false; + if (syncChecks[env.get()]) { + try { + build.checkForErrors(context); + } catch (e) { + hasError = true; + deferred.reject(e); + } + } + + if (!hasError) { + deferred.resolve(value); + } + } + includeFinished.__requireJsBuild = true; + + //Figure out module layer dependencies by calling require to do the work. + require(include, includeFinished, deferred.reject); + + // If a sync env, then with the "two IDs to same anon module path" + // issue, the require never completes, need to check for errors + // here. + if (syncChecks[env.get()]) { + build.checkForErrors(context); + } + + return deferred.promise.then(function () { + //Reset config + if (module.override && baseLoaderConfig) { + require(lang.deeplikeCopy(baseLoaderConfig)); + } + + build.checkForErrors(context); + + return layer; + }); + }; + + build.checkForErrors = function (context) { + //Check to see if it all loaded. If not, then throw, and give + //a message on what is left. + var id, prop, mod, idParts, pluginId, pluginResources, + errMessage = '', + failedPluginMap = {}, + failedPluginIds = [], + errIds = [], + errUrlMap = {}, + errUrlConflicts = {}, + hasErrUrl = false, + hasUndefined = false, + defined = context.defined, + registry = context.registry; + + function populateErrUrlMap(id, errUrl, skipNew) { + // Loader plugins do not have an errUrl, so skip them. + if (!errUrl) { + return; + } + + if (!skipNew) { + errIds.push(id); + } + + if (errUrlMap[errUrl]) { + hasErrUrl = true; + //This error module has the same URL as another + //error module, could be misconfiguration. + if (!errUrlConflicts[errUrl]) { + errUrlConflicts[errUrl] = []; + //Store the original module that had the same URL. + errUrlConflicts[errUrl].push(errUrlMap[errUrl]); + } + errUrlConflicts[errUrl].push(id); + } else if (!skipNew) { + errUrlMap[errUrl] = id; + } + } + + for (id in registry) { + if (hasProp(registry, id) && id.indexOf('_@r') !== 0) { + hasUndefined = true; + mod = getOwn(registry, id); + idParts = id.split('!'); + pluginId = idParts[0]; + + if (id.indexOf('_unnormalized') === -1 && mod && mod.enabled) { + populateErrUrlMap(id, mod.map.url); + } + + //Look for plugins that did not call load() + + if (idParts.length > 1) { + if (falseProp(failedPluginMap, pluginId)) { + failedPluginIds.push(pluginId); + } + pluginResources = failedPluginMap[pluginId]; + if (!pluginResources) { + pluginResources = failedPluginMap[pluginId] = []; + } + pluginResources.push(id + (mod.error ? ': ' + mod.error : '')); + } + } + } + + // If have some modules that are not defined/stuck in the registry, + // then check defined modules for URL overlap. + if (hasUndefined) { + for (id in defined) { + if (hasProp(defined, id) && id.indexOf('!') === -1) { + populateErrUrlMap(id, require.toUrl(id) + '.js', true); + } + } + } + + if (errIds.length || failedPluginIds.length) { + if (failedPluginIds.length) { + errMessage += 'Loader plugin' + + (failedPluginIds.length === 1 ? '' : 's') + + ' did not call ' + + 'the load callback in the build:\n' + + failedPluginIds.map(function (pluginId) { + var pluginResources = failedPluginMap[pluginId]; + return pluginId + ':\n ' + pluginResources.join('\n '); + }).join('\n') + '\n'; + } + errMessage += 'Module loading did not complete for: ' + errIds.join(', '); + + if (hasErrUrl) { + errMessage += '\nThe following modules share the same URL. This ' + + 'could be a misconfiguration if that URL only has ' + + 'one anonymous module in it:'; + for (prop in errUrlConflicts) { + if (hasProp(errUrlConflicts, prop)) { + errMessage += '\n' + prop + ': ' + + errUrlConflicts[prop].join(', '); + } + } + } + throw new Error(errMessage); + } + }; + + build.createOverrideConfig = function (config, override) { + var cfg = lang.deeplikeCopy(config), + oride = lang.deeplikeCopy(override); + + lang.eachProp(oride, function (value, prop) { + if (hasProp(build.objProps, prop)) { + //An object property, merge keys. Start a new object + //so that source object in config does not get modified. + cfg[prop] = {}; + lang.mixin(cfg[prop], config[prop], true); + lang.mixin(cfg[prop], override[prop], true); + } else { + cfg[prop] = override[prop]; + } + }); + + return cfg; + }; + + /** + * Uses the module build config object to create an flattened version + * of the module, with deep dependencies included. + * + * @param {Object} module the module object from the build config info. + * + * @param {Object} layer the layer object returned from build.traceDependencies. + * + * @param {Object} the build config object. + * + * @returns {Object} with two properties: "text", the text of the flattened + * module, and "buildText", a string of text representing which files were + * included in the flattened module text. + */ + build.flattenModule = function (module, layer, config) { + var fileContents, sourceMapGenerator, + sourceMapBase, + buildFileContents = ''; + + return prim().start(function () { + var reqIndex, currContents, fileForSourceMap, + moduleName, shim, packageName, + parts, builder, writeApi, + namespace, namespaceWithDot, stubModulesByName, + context = layer.context, + onLayerEnds = [], + onLayerEndAdded = {}, + pkgsMainMap = {}; + + //Use override settings, particularly for pragmas + //Do this before the var readings since it reads config values. + if (module.override) { + config = build.createOverrideConfig(config, module.override); + } + + namespace = config.namespace || ''; + namespaceWithDot = namespace ? namespace + '.' : ''; + stubModulesByName = (module.stubModules && module.stubModules._byName) || {}; + + //Start build output for the module. + module.onCompleteData = { + name: module.name, + path: (config.dir ? module._buildPath.replace(config.dir, "") : module._buildPath), + included: [] + }; + + buildFileContents += "\n" + + module.onCompleteData.path + + "\n----------------\n"; + + //If there was an existing file with require in it, hoist to the top. + if (layer.existingRequireUrl) { + reqIndex = layer.buildFilePaths.indexOf(layer.existingRequireUrl); + if (reqIndex !== -1) { + layer.buildFilePaths.splice(reqIndex, 1); + layer.buildFilePaths.unshift(layer.existingRequireUrl); + } + } + + if (config.generateSourceMaps) { + sourceMapBase = config.dir || config.baseUrl; + fileForSourceMap = module._buildPath === 'FUNCTION' ? + (module.name || module.include[0] || 'FUNCTION') + '.build.js' : + module._buildPath.replace(sourceMapBase, ''); + sourceMapGenerator = new SourceMapGenerator.SourceMapGenerator({ + file: fileForSourceMap + }); + } + + //Create a reverse lookup for packages main module IDs to their package + //names, useful for knowing when to write out define() package main ID + //adapters. + lang.eachProp(layer.context.config.pkgs, function(value, prop) { + pkgsMainMap[value] = prop; + }); + + //Write the built module to disk, and build up the build output. + fileContents = config.wrap ? config.wrap.start : ""; + return prim.serial(layer.buildFilePaths.map(function (path) { + return function () { + var lineCount, + singleContents = ''; + + moduleName = layer.buildFileToModule[path]; + + //If the moduleName is a package main, then hold on to the + //packageName in case an adapter needs to be written. + packageName = getOwn(pkgsMainMap, moduleName); + + return prim().start(function () { + //Figure out if the module is a result of a build plugin, and if so, + //then delegate to that plugin. + parts = context.makeModuleMap(moduleName); + builder = parts.prefix && getOwn(context.defined, parts.prefix); + if (builder) { + if (builder.onLayerEnd && falseProp(onLayerEndAdded, parts.prefix)) { + onLayerEnds.push(builder); + onLayerEndAdded[parts.prefix] = true; + } + + if (builder.write) { + writeApi = function (input) { + singleContents += "\n" + addSemiColon(input, config); + if (config.onBuildWrite) { + singleContents = config.onBuildWrite(moduleName, path, singleContents); + } + }; + writeApi.asModule = function (moduleName, input) { + singleContents += "\n" + + addSemiColon(build.toTransport(namespace, moduleName, path, input, layer, { + useSourceUrl: layer.context.config.useSourceUrl + }), config); + if (config.onBuildWrite) { + singleContents = config.onBuildWrite(moduleName, path, singleContents); + } + }; + builder.write(parts.prefix, parts.name, writeApi); + } + return; + } else { + return prim().start(function () { + if (hasProp(stubModulesByName, moduleName)) { + //Just want to insert a simple module definition instead + //of the source module. Useful for plugins that inline + //all their resources. + if (hasProp(layer.context.plugins, moduleName)) { + //Slightly different content for plugins, to indicate + //that dynamic loading will not work. + return 'define({load: function(id){throw new Error("Dynamic load not allowed: " + id);}});'; + } else { + return 'define({});'; + } + } else { + return require._cacheReadAsync(path); + } + }).then(function (text) { + var hasPackageName; + + currContents = text; + + if (config.cjsTranslate && + (!config.shim || !lang.hasProp(config.shim, moduleName))) { + currContents = commonJs.convert(path, currContents); + } + + if (config.onBuildRead) { + currContents = config.onBuildRead(moduleName, path, currContents); + } + + if (packageName) { + hasPackageName = (packageName === parse.getNamedDefine(currContents)); + } + + if (namespace) { + currContents = pragma.namespace(currContents, namespace); + } + + currContents = build.toTransport(namespace, moduleName, path, currContents, layer, { + useSourceUrl: config.useSourceUrl + }); + + if (packageName && !hasPackageName) { + currContents = addSemiColon(currContents, config) + '\n'; + currContents += namespaceWithDot + "define('" + + packageName + "', ['" + moduleName + + "'], function (main) { return main; });\n"; + } + + if (config.onBuildWrite) { + currContents = config.onBuildWrite(moduleName, path, currContents); + } + + //Semicolon is for files that are not well formed when + //concatenated with other content. + singleContents += addSemiColon(currContents, config); + }); + } + }).then(function () { + var refPath, pluginId, resourcePath, + sourceMapPath, sourceMapLineNumber, + shortPath = path.replace(config.dir, ""); + + module.onCompleteData.included.push(shortPath); + buildFileContents += shortPath + "\n"; + + //Some files may not have declared a require module, and if so, + //put in a placeholder call so the require does not try to load them + //after the module is processed. + //If we have a name, but no defined module, then add in the placeholder. + if (moduleName && falseProp(layer.modulesWithNames, moduleName) && !config.skipModuleInsertion) { + shim = config.shim && (getOwn(config.shim, moduleName) || (packageName && getOwn(config.shim, packageName))); + if (shim) { + if (config.wrapShim) { + singleContents = '(function(root) {\n' + + namespaceWithDot + 'define("' + moduleName + '", ' + + (shim.deps && shim.deps.length ? + build.makeJsArrayString(shim.deps) + ', ' : '[], ') + + 'function() {\n' + + ' return (function() {\n' + + singleContents + + // Start with a \n in case last line is a comment + // in the singleContents, like a sourceURL comment. + '\n' + (shim.exportsFn ? shim.exportsFn() : '') + + '\n' + + ' }).apply(root, arguments);\n' + + '});\n' + + '}(this));\n'; + } else { + singleContents += '\n' + namespaceWithDot + 'define("' + moduleName + '", ' + + (shim.deps && shim.deps.length ? + build.makeJsArrayString(shim.deps) + ', ' : '') + + (shim.exportsFn ? shim.exportsFn() : 'function(){}') + + ');\n'; + } + } else { + singleContents += '\n' + namespaceWithDot + 'define("' + moduleName + '", function(){});\n'; + } + } + + //Add line break at end of file, instead of at beginning, + //so source map line numbers stay correct, but still allow + //for some space separation between files in case ASI issues + //for concatenation would cause an error otherwise. + singleContents += '\n'; + + //Add to the source map + if (sourceMapGenerator) { + refPath = config.out ? config.baseUrl : module._buildPath; + parts = path.split('!'); + if (parts.length === 1) { + //Not a plugin resource, fix the path + sourceMapPath = build.makeRelativeFilePath(refPath, path); + } else { + //Plugin resource. If it looks like just a plugin + //followed by a module ID, pull off the plugin + //and put it at the end of the name, otherwise + //just leave it alone. + pluginId = parts.shift(); + resourcePath = parts.join('!'); + if (resourceIsModuleIdRegExp.test(resourcePath)) { + sourceMapPath = build.makeRelativeFilePath(refPath, require.toUrl(resourcePath)) + + '!' + pluginId; + } else { + sourceMapPath = path; + } + } + + sourceMapLineNumber = fileContents.split('\n').length - 1; + lineCount = singleContents.split('\n').length; + for (var i = 1; i <= lineCount; i += 1) { + sourceMapGenerator.addMapping({ + generated: { + line: sourceMapLineNumber + i, + column: 0 + }, + original: { + line: i, + column: 0 + }, + source: sourceMapPath + }); + } + + //Store the content of the original in the source + //map since other transforms later like minification + //can mess up translating back to the original + //source. + sourceMapGenerator.setSourceContent(sourceMapPath, singleContents); + } + + //Add the file to the final contents + fileContents += singleContents; + }); + }; + })).then(function () { + if (onLayerEnds.length) { + onLayerEnds.forEach(function (builder) { + var path; + if (typeof module.out === 'string') { + path = module.out; + } else if (typeof module._buildPath === 'string') { + path = module._buildPath; + } + builder.onLayerEnd(function (input) { + fileContents += "\n" + addSemiColon(input, config); + }, { + name: module.name, + path: path + }); + }); + } + + if (module.create) { + //The ID is for a created layer. Write out + //a module definition for it in case the + //built file is used with enforceDefine + //(#432) + fileContents += '\n' + namespaceWithDot + 'define("' + module.name + '", function(){});\n'; + } + + //Add a require at the end to kick start module execution, if that + //was desired. Usually this is only specified when using small shim + //loaders like almond. + if (module.insertRequire) { + fileContents += '\n' + namespaceWithDot + 'require(["' + module.insertRequire.join('", "') + '"]);\n'; + } + }); + }).then(function () { + return { + text: config.wrap ? + fileContents + config.wrap.end : + fileContents, + buildText: buildFileContents, + sourceMap: sourceMapGenerator ? + JSON.stringify(sourceMapGenerator.toJSON(), null, ' ') : + undefined + }; + }); + }; + + //Converts an JS array of strings to a string representation. + //Not using JSON.stringify() for Rhino's sake. + build.makeJsArrayString = function (ary) { + return '["' + ary.map(function (item) { + //Escape any double quotes, backslashes + return lang.jsEscape(item); + }).join('","') + '"]'; + }; + + build.toTransport = function (namespace, moduleName, path, contents, layer, options) { + var baseUrl = layer && layer.context.config.baseUrl; + + function onFound(info) { + //Only mark this module as having a name if not a named module, + //or if a named module and the name matches expectations. + if (layer && (info.needsId || info.foundId === moduleName)) { + layer.modulesWithNames[moduleName] = true; + } + } + + //Convert path to be a local one to the baseUrl, useful for + //useSourceUrl. + if (baseUrl) { + path = path.replace(baseUrl, ''); + } + + return transform.toTransport(namespace, moduleName, path, contents, onFound, options); + }; + + return build; +}); + + } + + + /** + * Sets the default baseUrl for requirejs to be directory of top level + * script. + */ + function setBaseUrl(fileName) { + //Use the file name's directory as the baseUrl if available. + dir = fileName.replace(/\\/g, '/'); + if (dir.indexOf('/') !== -1) { + dir = dir.split('/'); + dir.pop(); + dir = dir.join('/'); + //Make sure dir is JS-escaped, since it will be part of a JS string. + exec("require({baseUrl: '" + dir.replace(/[\\"']/g, '\\$&') + "'});"); + } + } + + function createRjsApi() { + //Create a method that will run the optimzer given an object + //config. + requirejs.optimize = function (config, callback, errback) { + if (!loadedOptimizedLib) { + loadLib(); + loadedOptimizedLib = true; + } + + //Create the function that will be called once build modules + //have been loaded. + var runBuild = function (build, logger, quit) { + //Make sure config has a log level, and if not, + //make it "silent" by default. + config.logLevel = config.hasOwnProperty('logLevel') ? + config.logLevel : logger.SILENT; + + //Reset build internals first in case this is part + //of a long-running server process that could have + //exceptioned out in a bad state. It is only defined + //after the first call though. + if (requirejs._buildReset) { + requirejs._buildReset(); + requirejs._cacheReset(); + } + + function done(result) { + //And clean up, in case something else triggers + //a build in another pathway. + if (requirejs._buildReset) { + requirejs._buildReset(); + requirejs._cacheReset(); + } + + // Ensure errors get propagated to the errback + if (result instanceof Error) { + throw result; + } + + return result; + } + + errback = errback || function (err) { + // Using console here since logger may have + // turned off error logging. Since quit is + // called want to be sure a message is printed. + console.log(err); + quit(1); + }; + + build(config).then(done, done).then(callback, errback); + }; + + requirejs({ + context: 'build' + }, ['build', 'logger', 'env!env/quit'], runBuild); + }; + + requirejs.tools = { + useLib: function (contextName, callback) { + if (!callback) { + callback = contextName; + contextName = 'uselib'; + } + + if (!useLibLoaded[contextName]) { + loadLib(); + useLibLoaded[contextName] = true; + } + + var req = requirejs({ + context: contextName + }); + + req(['build'], function () { + callback(req); + }); + } + }; + + requirejs.define = define; + } + + //If in Node, and included via a require('requirejs'), just export and + //THROW IT ON THE GROUND! + if (env === 'node' && reqMain !== module) { + setBaseUrl(path.resolve(reqMain ? reqMain.filename : '.')); + + createRjsApi(); + + module.exports = requirejs; + return; + } else if (env === 'browser') { + //Only option is to use the API. + setBaseUrl(location.href); + createRjsApi(); + return; + } else if ((env === 'rhino' || env === 'xpconnect') && + //User sets up requirejsAsLib variable to indicate it is loaded + //via load() to be used as a library. + typeof requirejsAsLib !== 'undefined' && requirejsAsLib) { + //This script is loaded via rhino's load() method, expose the + //API and get out. + setBaseUrl(fileName); + createRjsApi(); + return; + } + + if (commandOption === 'o') { + //Do the optimizer work. + loadLib(); + + /** + * @license Copyright (c) 2010-2014, The Dojo Foundation All Rights Reserved. + * Available via the MIT or new BSD license. + * see: http://github.com/jrburke/requirejs for details + */ + +/* + * Create a build.js file that has the build options you want and pass that + * build file to this file to do the build. See example.build.js for more information. + */ + +/*jslint strict: false, nomen: false */ +/*global require: false */ + +require({ + baseUrl: require.s.contexts._.config.baseUrl, + //Use a separate context than the default context so that the + //build can use the default context. + context: 'build', + catchError: { + define: true + } +}, ['env!env/args', 'env!env/quit', 'logger', 'build'], +function (args, quit, logger, build) { + build(args).then(function () {}, function (err) { + logger.error(err); + quit(1); + }); +}); + + + } else if (commandOption === 'v') { + console.log('r.js: ' + version + + ', RequireJS: ' + this.requirejsVars.require.version + + ', UglifyJS2: 2.4.16, UglifyJS: 1.3.4'); + } else if (commandOption === 'convert') { + loadLib(); + + this.requirejsVars.require(['env!env/args', 'commonJs', 'env!env/print'], + function (args, commonJs, print) { + + var srcDir, outDir; + srcDir = args[0]; + outDir = args[1]; + + if (!srcDir || !outDir) { + print('Usage: path/to/commonjs/modules output/dir'); + return; + } + + commonJs.convertDir(args[0], args[1]); + }); + } else { + //Just run an app + + //Load the bundled libraries for use in the app. + if (commandOption === 'lib') { + loadLib(); + } + + setBaseUrl(fileName); + + if (exists(fileName)) { + exec(readFile(fileName), fileName); + } else { + showHelp(); + } + } + +}((typeof console !== 'undefined' ? console : undefined), + (typeof Packages !== 'undefined' || (typeof window === 'undefined' && + typeof Components !== 'undefined' && Components.interfaces) ? + Array.prototype.slice.call(arguments, 0) : []), + (typeof readFile !== 'undefined' ? readFile : undefined))); diff --git a/src/Quartz.Web/App/scripts/require.js b/src/Quartz.Web/App/scripts/require.js new file mode 100644 index 000000000..babfa9ad3 --- /dev/null +++ b/src/Quartz.Web/App/scripts/require.js @@ -0,0 +1,2083 @@ +/** vim: et:ts=4:sw=4:sts=4 + * @license RequireJS 2.1.17 Copyright (c) 2010-2015, The Dojo Foundation All Rights Reserved. + * Available via the MIT or new BSD license. + * see: http://github.com/jrburke/requirejs for details + */ +//Not using strict: uneven strict support in browsers, #392, and causes +//problems with requirejs.exec()/transpiler plugins that may not be strict. +/*jslint regexp: true, nomen: true, sloppy: true */ +/*global window, navigator, document, importScripts, setTimeout, opera */ + +var requirejs, require, define; +(function (global) { + var req, s, head, baseElement, dataMain, src, + interactiveScript, currentlyAddingScript, mainScript, subPath, + version = '2.1.17', + commentRegExp = /(\/\*([\s\S]*?)\*\/|([^:]|^)\/\/(.*)$)/mg, + cjsRequireRegExp = /[^.]\s*require\s*\(\s*["']([^'"\s]+)["']\s*\)/g, + jsSuffixRegExp = /\.js$/, + currDirRegExp = /^\.\//, + op = Object.prototype, + ostring = op.toString, + hasOwn = op.hasOwnProperty, + ap = Array.prototype, + apsp = ap.splice, + isBrowser = !!(typeof window !== 'undefined' && typeof navigator !== 'undefined' && window.document), + isWebWorker = !isBrowser && typeof importScripts !== 'undefined', + //PS3 indicates loaded and complete, but need to wait for complete + //specifically. Sequence is 'loading', 'loaded', execution, + // then 'complete'. The UA check is unfortunate, but not sure how + //to feature test w/o causing perf issues. + readyRegExp = isBrowser && navigator.platform === 'PLAYSTATION 3' ? + /^complete$/ : /^(complete|loaded)$/, + defContextName = '_', + //Oh the tragedy, detecting opera. See the usage of isOpera for reason. + isOpera = typeof opera !== 'undefined' && opera.toString() === '[object Opera]', + contexts = {}, + cfg = {}, + globalDefQueue = [], + useInteractive = false; + + function isFunction(it) { + return ostring.call(it) === '[object Function]'; + } + + function isArray(it) { + return ostring.call(it) === '[object Array]'; + } + + /** + * Helper function for iterating over an array. If the func returns + * a true value, it will break out of the loop. + */ + function each(ary, func) { + if (ary) { + var i; + for (i = 0; i < ary.length; i += 1) { + if (ary[i] && func(ary[i], i, ary)) { + break; + } + } + } + } + + /** + * Helper function for iterating over an array backwards. If the func + * returns a true value, it will break out of the loop. + */ + function eachReverse(ary, func) { + if (ary) { + var i; + for (i = ary.length - 1; i > -1; i -= 1) { + if (ary[i] && func(ary[i], i, ary)) { + break; + } + } + } + } + + function hasProp(obj, prop) { + return hasOwn.call(obj, prop); + } + + function getOwn(obj, prop) { + return hasProp(obj, prop) && obj[prop]; + } + + /** + * Cycles over properties in an object and calls a function for each + * property value. If the function returns a truthy value, then the + * iteration is stopped. + */ + function eachProp(obj, func) { + var prop; + for (prop in obj) { + if (hasProp(obj, prop)) { + if (func(obj[prop], prop)) { + break; + } + } + } + } + + /** + * Simple function to mix in properties from source into target, + * but only if target does not already have a property of the same name. + */ + function mixin(target, source, force, deepStringMixin) { + if (source) { + eachProp(source, function (value, prop) { + if (force || !hasProp(target, prop)) { + if (deepStringMixin && typeof value === 'object' && value && + !isArray(value) && !isFunction(value) && + !(value instanceof RegExp)) { + + if (!target[prop]) { + target[prop] = {}; + } + mixin(target[prop], value, force, deepStringMixin); + } else { + target[prop] = value; + } + } + }); + } + return target; + } + + //Similar to Function.prototype.bind, but the 'this' object is specified + //first, since it is easier to read/figure out what 'this' will be. + function bind(obj, fn) { + return function () { + return fn.apply(obj, arguments); + }; + } + + function scripts() { + return document.getElementsByTagName('script'); + } + + function defaultOnError(err) { + throw err; + } + + //Allow getting a global that is expressed in + //dot notation, like 'a.b.c'. + function getGlobal(value) { + if (!value) { + return value; + } + var g = global; + each(value.split('.'), function (part) { + g = g[part]; + }); + return g; + } + + /** + * Constructs an error with a pointer to an URL with more information. + * @param {String} id the error ID that maps to an ID on a web page. + * @param {String} message human readable error. + * @param {Error} [err] the original error, if there is one. + * + * @returns {Error} + */ + function makeError(id, msg, err, requireModules) { + var e = new Error(msg + '\nhttp://requirejs.org/docs/errors.html#' + id); + e.requireType = id; + e.requireModules = requireModules; + if (err) { + e.originalError = err; + } + return e; + } + + if (typeof define !== 'undefined') { + //If a define is already in play via another AMD loader, + //do not overwrite. + return; + } + + if (typeof requirejs !== 'undefined') { + if (isFunction(requirejs)) { + //Do not overwrite an existing requirejs instance. + return; + } + cfg = requirejs; + requirejs = undefined; + } + + //Allow for a require config object + if (typeof require !== 'undefined' && !isFunction(require)) { + //assume it is a config object. + cfg = require; + require = undefined; + } + + function newContext(contextName) { + var inCheckLoaded, Module, context, handlers, + checkLoadedTimeoutId, + config = { + //Defaults. Do not set a default for map + //config to speed up normalize(), which + //will run faster if there is no default. + waitSeconds: 7, + baseUrl: './', + paths: {}, + bundles: {}, + pkgs: {}, + shim: {}, + config: {} + }, + registry = {}, + //registry of just enabled modules, to speed + //cycle breaking code when lots of modules + //are registered, but not activated. + enabledRegistry = {}, + undefEvents = {}, + defQueue = [], + defined = {}, + urlFetched = {}, + bundlesMap = {}, + requireCounter = 1, + unnormalizedCounter = 1; + + /** + * Trims the . and .. from an array of path segments. + * It will keep a leading path segment if a .. will become + * the first path segment, to help with module name lookups, + * which act like paths, but can be remapped. But the end result, + * all paths that use this function should look normalized. + * NOTE: this method MODIFIES the input array. + * @param {Array} ary the array of path segments. + */ + function trimDots(ary) { + var i, part; + for (i = 0; i < ary.length; i++) { + part = ary[i]; + if (part === '.') { + ary.splice(i, 1); + i -= 1; + } else if (part === '..') { + // If at the start, or previous value is still .., + // keep them so that when converted to a path it may + // still work when converted to a path, even though + // as an ID it is less than ideal. In larger point + // releases, may be better to just kick out an error. + if (i === 0 || (i === 1 && ary[2] === '..') || ary[i - 1] === '..') { + continue; + } else if (i > 0) { + ary.splice(i - 1, 2); + i -= 2; + } + } + } + } + + /** + * Given a relative module name, like ./something, normalize it to + * a real name that can be mapped to a path. + * @param {String} name the relative name + * @param {String} baseName a real name that the name arg is relative + * to. + * @param {Boolean} applyMap apply the map config to the value. Should + * only be done if this normalization is for a dependency ID. + * @returns {String} normalized name + */ + function normalize(name, baseName, applyMap) { + var pkgMain, mapValue, nameParts, i, j, nameSegment, lastIndex, + foundMap, foundI, foundStarMap, starI, normalizedBaseParts, + baseParts = (baseName && baseName.split('/')), + map = config.map, + starMap = map && map['*']; + + //Adjust any relative paths. + if (name) { + name = name.split('/'); + lastIndex = name.length - 1; + + // If wanting node ID compatibility, strip .js from end + // of IDs. Have to do this here, and not in nameToUrl + // because node allows either .js or non .js to map + // to same file. + if (config.nodeIdCompat && jsSuffixRegExp.test(name[lastIndex])) { + name[lastIndex] = name[lastIndex].replace(jsSuffixRegExp, ''); + } + + // Starts with a '.' so need the baseName + if (name[0].charAt(0) === '.' && baseParts) { + //Convert baseName to array, and lop off the last part, + //so that . matches that 'directory' and not name of the baseName's + //module. For instance, baseName of 'one/two/three', maps to + //'one/two/three.js', but we want the directory, 'one/two' for + //this normalization. + normalizedBaseParts = baseParts.slice(0, baseParts.length - 1); + name = normalizedBaseParts.concat(name); + } + + trimDots(name); + name = name.join('/'); + } + + //Apply map config if available. + if (applyMap && map && (baseParts || starMap)) { + nameParts = name.split('/'); + + outerLoop: for (i = nameParts.length; i > 0; i -= 1) { + nameSegment = nameParts.slice(0, i).join('/'); + + if (baseParts) { + //Find the longest baseName segment match in the config. + //So, do joins on the biggest to smallest lengths of baseParts. + for (j = baseParts.length; j > 0; j -= 1) { + mapValue = getOwn(map, baseParts.slice(0, j).join('/')); + + //baseName segment has config, find if it has one for + //this name. + if (mapValue) { + mapValue = getOwn(mapValue, nameSegment); + if (mapValue) { + //Match, update name to the new value. + foundMap = mapValue; + foundI = i; + break outerLoop; + } + } + } + } + + //Check for a star map match, but just hold on to it, + //if there is a shorter segment match later in a matching + //config, then favor over this star map. + if (!foundStarMap && starMap && getOwn(starMap, nameSegment)) { + foundStarMap = getOwn(starMap, nameSegment); + starI = i; + } + } + + if (!foundMap && foundStarMap) { + foundMap = foundStarMap; + foundI = starI; + } + + if (foundMap) { + nameParts.splice(0, foundI, foundMap); + name = nameParts.join('/'); + } + } + + // If the name points to a package's name, use + // the package main instead. + pkgMain = getOwn(config.pkgs, name); + + return pkgMain ? pkgMain : name; + } + + function removeScript(name) { + if (isBrowser) { + each(scripts(), function (scriptNode) { + if (scriptNode.getAttribute('data-requiremodule') === name && + scriptNode.getAttribute('data-requirecontext') === context.contextName) { + scriptNode.parentNode.removeChild(scriptNode); + return true; + } + }); + } + } + + function hasPathFallback(id) { + var pathConfig = getOwn(config.paths, id); + if (pathConfig && isArray(pathConfig) && pathConfig.length > 1) { + //Pop off the first array value, since it failed, and + //retry + pathConfig.shift(); + context.require.undef(id); + + //Custom require that does not do map translation, since + //ID is "absolute", already mapped/resolved. + context.makeRequire(null, { + skipMap: true + })([id]); + + return true; + } + } + + //Turns a plugin!resource to [plugin, resource] + //with the plugin being undefined if the name + //did not have a plugin prefix. + function splitPrefix(name) { + var prefix, + index = name ? name.indexOf('!') : -1; + if (index > -1) { + prefix = name.substring(0, index); + name = name.substring(index + 1, name.length); + } + return [prefix, name]; + } + + /** + * Creates a module mapping that includes plugin prefix, module + * name, and path. If parentModuleMap is provided it will + * also normalize the name via require.normalize() + * + * @param {String} name the module name + * @param {String} [parentModuleMap] parent module map + * for the module name, used to resolve relative names. + * @param {Boolean} isNormalized: is the ID already normalized. + * This is true if this call is done for a define() module ID. + * @param {Boolean} applyMap: apply the map config to the ID. + * Should only be true if this map is for a dependency. + * + * @returns {Object} + */ + function makeModuleMap(name, parentModuleMap, isNormalized, applyMap) { + var url, pluginModule, suffix, nameParts, + prefix = null, + parentName = parentModuleMap ? parentModuleMap.name : null, + originalName = name, + isDefine = true, + normalizedName = ''; + + //If no name, then it means it is a require call, generate an + //internal name. + if (!name) { + isDefine = false; + name = '_@r' + (requireCounter += 1); + } + + nameParts = splitPrefix(name); + prefix = nameParts[0]; + name = nameParts[1]; + + if (prefix) { + prefix = normalize(prefix, parentName, applyMap); + pluginModule = getOwn(defined, prefix); + } + + //Account for relative paths if there is a base name. + if (name) { + if (prefix) { + if (pluginModule && pluginModule.normalize) { + //Plugin is loaded, use its normalize method. + normalizedName = pluginModule.normalize(name, function (name) { + return normalize(name, parentName, applyMap); + }); + } else { + // If nested plugin references, then do not try to + // normalize, as it will not normalize correctly. This + // places a restriction on resourceIds, and the longer + // term solution is not to normalize until plugins are + // loaded and all normalizations to allow for async + // loading of a loader plugin. But for now, fixes the + // common uses. Details in #1131 + normalizedName = name.indexOf('!') === -1 ? + normalize(name, parentName, applyMap) : + name; + } + } else { + //A regular module. + normalizedName = normalize(name, parentName, applyMap); + + //Normalized name may be a plugin ID due to map config + //application in normalize. The map config values must + //already be normalized, so do not need to redo that part. + nameParts = splitPrefix(normalizedName); + prefix = nameParts[0]; + normalizedName = nameParts[1]; + isNormalized = true; + + url = context.nameToUrl(normalizedName); + } + } + + //If the id is a plugin id that cannot be determined if it needs + //normalization, stamp it with a unique ID so two matching relative + //ids that may conflict can be separate. + suffix = prefix && !pluginModule && !isNormalized ? + '_unnormalized' + (unnormalizedCounter += 1) : + ''; + + return { + prefix: prefix, + name: normalizedName, + parentMap: parentModuleMap, + unnormalized: !!suffix, + url: url, + originalName: originalName, + isDefine: isDefine, + id: (prefix ? + prefix + '!' + normalizedName : + normalizedName) + suffix + }; + } + + function getModule(depMap) { + var id = depMap.id, + mod = getOwn(registry, id); + + if (!mod) { + mod = registry[id] = new context.Module(depMap); + } + + return mod; + } + + function on(depMap, name, fn) { + var id = depMap.id, + mod = getOwn(registry, id); + + if (hasProp(defined, id) && + (!mod || mod.defineEmitComplete)) { + if (name === 'defined') { + fn(defined[id]); + } + } else { + mod = getModule(depMap); + if (mod.error && name === 'error') { + fn(mod.error); + } else { + mod.on(name, fn); + } + } + } + + function onError(err, errback) { + var ids = err.requireModules, + notified = false; + + if (errback) { + errback(err); + } else { + each(ids, function (id) { + var mod = getOwn(registry, id); + if (mod) { + //Set error on module, so it skips timeout checks. + mod.error = err; + if (mod.events.error) { + notified = true; + mod.emit('error', err); + } + } + }); + + if (!notified) { + req.onError(err); + } + } + } + + /** + * Internal method to transfer globalQueue items to this context's + * defQueue. + */ + function takeGlobalQueue() { + //Push all the globalDefQueue items into the context's defQueue + if (globalDefQueue.length) { + //Array splice in the values since the context code has a + //local var ref to defQueue, so cannot just reassign the one + //on context. + apsp.apply(defQueue, + [defQueue.length, 0].concat(globalDefQueue)); + globalDefQueue = []; + } + } + + handlers = { + 'require': function (mod) { + if (mod.require) { + return mod.require; + } else { + return (mod.require = context.makeRequire(mod.map)); + } + }, + 'exports': function (mod) { + mod.usingExports = true; + if (mod.map.isDefine) { + if (mod.exports) { + return (defined[mod.map.id] = mod.exports); + } else { + return (mod.exports = defined[mod.map.id] = {}); + } + } + }, + 'module': function (mod) { + if (mod.module) { + return mod.module; + } else { + return (mod.module = { + id: mod.map.id, + uri: mod.map.url, + config: function () { + return getOwn(config.config, mod.map.id) || {}; + }, + exports: mod.exports || (mod.exports = {}) + }); + } + } + }; + + function cleanRegistry(id) { + //Clean up machinery used for waiting modules. + delete registry[id]; + delete enabledRegistry[id]; + } + + function breakCycle(mod, traced, processed) { + var id = mod.map.id; + + if (mod.error) { + mod.emit('error', mod.error); + } else { + traced[id] = true; + each(mod.depMaps, function (depMap, i) { + var depId = depMap.id, + dep = getOwn(registry, depId); + + //Only force things that have not completed + //being defined, so still in the registry, + //and only if it has not been matched up + //in the module already. + if (dep && !mod.depMatched[i] && !processed[depId]) { + if (getOwn(traced, depId)) { + mod.defineDep(i, defined[depId]); + mod.check(); //pass false? + } else { + breakCycle(dep, traced, processed); + } + } + }); + processed[id] = true; + } + } + + function checkLoaded() { + var err, usingPathFallback, + waitInterval = config.waitSeconds * 1000, + //It is possible to disable the wait interval by using waitSeconds of 0. + expired = waitInterval && (context.startTime + waitInterval) < new Date().getTime(), + noLoads = [], + reqCalls = [], + stillLoading = false, + needCycleCheck = true; + + //Do not bother if this call was a result of a cycle break. + if (inCheckLoaded) { + return; + } + + inCheckLoaded = true; + + //Figure out the state of all the modules. + eachProp(enabledRegistry, function (mod) { + var map = mod.map, + modId = map.id; + + //Skip things that are not enabled or in error state. + if (!mod.enabled) { + return; + } + + if (!map.isDefine) { + reqCalls.push(mod); + } + + if (!mod.error) { + //If the module should be executed, and it has not + //been inited and time is up, remember it. + if (!mod.inited && expired) { + if (hasPathFallback(modId)) { + usingPathFallback = true; + stillLoading = true; + } else { + noLoads.push(modId); + removeScript(modId); + } + } else if (!mod.inited && mod.fetched && map.isDefine) { + stillLoading = true; + if (!map.prefix) { + //No reason to keep looking for unfinished + //loading. If the only stillLoading is a + //plugin resource though, keep going, + //because it may be that a plugin resource + //is waiting on a non-plugin cycle. + return (needCycleCheck = false); + } + } + } + }); + + if (expired && noLoads.length) { + //If wait time expired, throw error of unloaded modules. + err = makeError('timeout', 'Load timeout for modules: ' + noLoads, null, noLoads); + err.contextName = context.contextName; + return onError(err); + } + + //Not expired, check for a cycle. + if (needCycleCheck) { + each(reqCalls, function (mod) { + breakCycle(mod, {}, {}); + }); + } + + //If still waiting on loads, and the waiting load is something + //other than a plugin resource, or there are still outstanding + //scripts, then just try back later. + if ((!expired || usingPathFallback) && stillLoading) { + //Something is still waiting to load. Wait for it, but only + //if a timeout is not already in effect. + if ((isBrowser || isWebWorker) && !checkLoadedTimeoutId) { + checkLoadedTimeoutId = setTimeout(function () { + checkLoadedTimeoutId = 0; + checkLoaded(); + }, 50); + } + } + + inCheckLoaded = false; + } + + Module = function (map) { + this.events = getOwn(undefEvents, map.id) || {}; + this.map = map; + this.shim = getOwn(config.shim, map.id); + this.depExports = []; + this.depMaps = []; + this.depMatched = []; + this.pluginMaps = {}; + this.depCount = 0; + + /* this.exports this.factory + this.depMaps = [], + this.enabled, this.fetched + */ + }; + + Module.prototype = { + init: function (depMaps, factory, errback, options) { + options = options || {}; + + //Do not do more inits if already done. Can happen if there + //are multiple define calls for the same module. That is not + //a normal, common case, but it is also not unexpected. + if (this.inited) { + return; + } + + this.factory = factory; + + if (errback) { + //Register for errors on this module. + this.on('error', errback); + } else if (this.events.error) { + //If no errback already, but there are error listeners + //on this module, set up an errback to pass to the deps. + errback = bind(this, function (err) { + this.emit('error', err); + }); + } + + //Do a copy of the dependency array, so that + //source inputs are not modified. For example + //"shim" deps are passed in here directly, and + //doing a direct modification of the depMaps array + //would affect that config. + this.depMaps = depMaps && depMaps.slice(0); + + this.errback = errback; + + //Indicate this module has be initialized + this.inited = true; + + this.ignore = options.ignore; + + //Could have option to init this module in enabled mode, + //or could have been previously marked as enabled. However, + //the dependencies are not known until init is called. So + //if enabled previously, now trigger dependencies as enabled. + if (options.enabled || this.enabled) { + //Enable this module and dependencies. + //Will call this.check() + this.enable(); + } else { + this.check(); + } + }, + + defineDep: function (i, depExports) { + //Because of cycles, defined callback for a given + //export can be called more than once. + if (!this.depMatched[i]) { + this.depMatched[i] = true; + this.depCount -= 1; + this.depExports[i] = depExports; + } + }, + + fetch: function () { + if (this.fetched) { + return; + } + this.fetched = true; + + context.startTime = (new Date()).getTime(); + + var map = this.map; + + //If the manager is for a plugin managed resource, + //ask the plugin to load it now. + if (this.shim) { + context.makeRequire(this.map, { + enableBuildCallback: true + })(this.shim.deps || [], bind(this, function () { + return map.prefix ? this.callPlugin() : this.load(); + })); + } else { + //Regular dependency. + return map.prefix ? this.callPlugin() : this.load(); + } + }, + + load: function () { + var url = this.map.url; + + //Regular dependency. + if (!urlFetched[url]) { + urlFetched[url] = true; + context.load(this.map.id, url); + } + }, + + /** + * Checks if the module is ready to define itself, and if so, + * define it. + */ + check: function () { + if (!this.enabled || this.enabling) { + return; + } + + var err, cjsModule, + id = this.map.id, + depExports = this.depExports, + exports = this.exports, + factory = this.factory; + + if (!this.inited) { + this.fetch(); + } else if (this.error) { + this.emit('error', this.error); + } else if (!this.defining) { + //The factory could trigger another require call + //that would result in checking this module to + //define itself again. If already in the process + //of doing that, skip this work. + this.defining = true; + + if (this.depCount < 1 && !this.defined) { + if (isFunction(factory)) { + //If there is an error listener, favor passing + //to that instead of throwing an error. However, + //only do it for define()'d modules. require + //errbacks should not be called for failures in + //their callbacks (#699). However if a global + //onError is set, use that. + if ((this.events.error && this.map.isDefine) || + req.onError !== defaultOnError) { + try { + exports = context.execCb(id, factory, depExports, exports); + } catch (e) { + err = e; + } + } else { + exports = context.execCb(id, factory, depExports, exports); + } + + // Favor return value over exports. If node/cjs in play, + // then will not have a return value anyway. Favor + // module.exports assignment over exports object. + if (this.map.isDefine && exports === undefined) { + cjsModule = this.module; + if (cjsModule) { + exports = cjsModule.exports; + } else if (this.usingExports) { + //exports already set the defined value. + exports = this.exports; + } + } + + if (err) { + err.requireMap = this.map; + err.requireModules = this.map.isDefine ? [this.map.id] : null; + err.requireType = this.map.isDefine ? 'define' : 'require'; + return onError((this.error = err)); + } + + } else { + //Just a literal value + exports = factory; + } + + this.exports = exports; + + if (this.map.isDefine && !this.ignore) { + defined[id] = exports; + + if (req.onResourceLoad) { + req.onResourceLoad(context, this.map, this.depMaps); + } + } + + //Clean up + cleanRegistry(id); + + this.defined = true; + } + + //Finished the define stage. Allow calling check again + //to allow define notifications below in the case of a + //cycle. + this.defining = false; + + if (this.defined && !this.defineEmitted) { + this.defineEmitted = true; + this.emit('defined', this.exports); + this.defineEmitComplete = true; + } + + } + }, + + callPlugin: function () { + var map = this.map, + id = map.id, + //Map already normalized the prefix. + pluginMap = makeModuleMap(map.prefix); + + //Mark this as a dependency for this plugin, so it + //can be traced for cycles. + this.depMaps.push(pluginMap); + + on(pluginMap, 'defined', bind(this, function (plugin) { + var load, normalizedMap, normalizedMod, + bundleId = getOwn(bundlesMap, this.map.id), + name = this.map.name, + parentName = this.map.parentMap ? this.map.parentMap.name : null, + localRequire = context.makeRequire(map.parentMap, { + enableBuildCallback: true + }); + + //If current map is not normalized, wait for that + //normalized name to load instead of continuing. + if (this.map.unnormalized) { + //Normalize the ID if the plugin allows it. + if (plugin.normalize) { + name = plugin.normalize(name, function (name) { + return normalize(name, parentName, true); + }) || ''; + } + + //prefix and name should already be normalized, no need + //for applying map config again either. + normalizedMap = makeModuleMap(map.prefix + '!' + name, + this.map.parentMap); + on(normalizedMap, + 'defined', bind(this, function (value) { + this.init([], function () { return value; }, null, { + enabled: true, + ignore: true + }); + })); + + normalizedMod = getOwn(registry, normalizedMap.id); + if (normalizedMod) { + //Mark this as a dependency for this plugin, so it + //can be traced for cycles. + this.depMaps.push(normalizedMap); + + if (this.events.error) { + normalizedMod.on('error', bind(this, function (err) { + this.emit('error', err); + })); + } + normalizedMod.enable(); + } + + return; + } + + //If a paths config, then just load that file instead to + //resolve the plugin, as it is built into that paths layer. + if (bundleId) { + this.map.url = context.nameToUrl(bundleId); + this.load(); + return; + } + + load = bind(this, function (value) { + this.init([], function () { return value; }, null, { + enabled: true + }); + }); + + load.error = bind(this, function (err) { + this.inited = true; + this.error = err; + err.requireModules = [id]; + + //Remove temp unnormalized modules for this module, + //since they will never be resolved otherwise now. + eachProp(registry, function (mod) { + if (mod.map.id.indexOf(id + '_unnormalized') === 0) { + cleanRegistry(mod.map.id); + } + }); + + onError(err); + }); + + //Allow plugins to load other code without having to know the + //context or how to 'complete' the load. + load.fromText = bind(this, function (text, textAlt) { + /*jslint evil: true */ + var moduleName = map.name, + moduleMap = makeModuleMap(moduleName), + hasInteractive = useInteractive; + + //As of 2.1.0, support just passing the text, to reinforce + //fromText only being called once per resource. Still + //support old style of passing moduleName but discard + //that moduleName in favor of the internal ref. + if (textAlt) { + text = textAlt; + } + + //Turn off interactive script matching for IE for any define + //calls in the text, then turn it back on at the end. + if (hasInteractive) { + useInteractive = false; + } + + //Prime the system by creating a module instance for + //it. + getModule(moduleMap); + + //Transfer any config to this other module. + if (hasProp(config.config, id)) { + config.config[moduleName] = config.config[id]; + } + + try { + req.exec(text); + } catch (e) { + return onError(makeError('fromtexteval', + 'fromText eval for ' + id + + ' failed: ' + e, + e, + [id])); + } + + if (hasInteractive) { + useInteractive = true; + } + + //Mark this as a dependency for the plugin + //resource + this.depMaps.push(moduleMap); + + //Support anonymous modules. + context.completeLoad(moduleName); + + //Bind the value of that module to the value for this + //resource ID. + localRequire([moduleName], load); + }); + + //Use parentName here since the plugin's name is not reliable, + //could be some weird string with no path that actually wants to + //reference the parentName's path. + plugin.load(map.name, localRequire, load, config); + })); + + context.enable(pluginMap, this); + this.pluginMaps[pluginMap.id] = pluginMap; + }, + + enable: function () { + enabledRegistry[this.map.id] = this; + this.enabled = true; + + //Set flag mentioning that the module is enabling, + //so that immediate calls to the defined callbacks + //for dependencies do not trigger inadvertent load + //with the depCount still being zero. + this.enabling = true; + + //Enable each dependency + each(this.depMaps, bind(this, function (depMap, i) { + var id, mod, handler; + + if (typeof depMap === 'string') { + //Dependency needs to be converted to a depMap + //and wired up to this module. + depMap = makeModuleMap(depMap, + (this.map.isDefine ? this.map : this.map.parentMap), + false, + !this.skipMap); + this.depMaps[i] = depMap; + + handler = getOwn(handlers, depMap.id); + + if (handler) { + this.depExports[i] = handler(this); + return; + } + + this.depCount += 1; + + on(depMap, 'defined', bind(this, function (depExports) { + this.defineDep(i, depExports); + this.check(); + })); + + if (this.errback) { + on(depMap, 'error', bind(this, this.errback)); + } else if (this.events.error) { + // No direct errback on this module, but something + // else is listening for errors, so be sure to + // propagate the error correctly. + on(depMap, 'error', bind(this, function(err) { + this.emit('error', err); + })); + } + } + + id = depMap.id; + mod = registry[id]; + + //Skip special modules like 'require', 'exports', 'module' + //Also, don't call enable if it is already enabled, + //important in circular dependency cases. + if (!hasProp(handlers, id) && mod && !mod.enabled) { + context.enable(depMap, this); + } + })); + + //Enable each plugin that is used in + //a dependency + eachProp(this.pluginMaps, bind(this, function (pluginMap) { + var mod = getOwn(registry, pluginMap.id); + if (mod && !mod.enabled) { + context.enable(pluginMap, this); + } + })); + + this.enabling = false; + + this.check(); + }, + + on: function (name, cb) { + var cbs = this.events[name]; + if (!cbs) { + cbs = this.events[name] = []; + } + cbs.push(cb); + }, + + emit: function (name, evt) { + each(this.events[name], function (cb) { + cb(evt); + }); + if (name === 'error') { + //Now that the error handler was triggered, remove + //the listeners, since this broken Module instance + //can stay around for a while in the registry. + delete this.events[name]; + } + } + }; + + function callGetModule(args) { + //Skip modules already defined. + if (!hasProp(defined, args[0])) { + getModule(makeModuleMap(args[0], null, true)).init(args[1], args[2]); + } + } + + function removeListener(node, func, name, ieName) { + //Favor detachEvent because of IE9 + //issue, see attachEvent/addEventListener comment elsewhere + //in this file. + if (node.detachEvent && !isOpera) { + //Probably IE. If not it will throw an error, which will be + //useful to know. + if (ieName) { + node.detachEvent(ieName, func); + } + } else { + node.removeEventListener(name, func, false); + } + } + + /** + * Given an event from a script node, get the requirejs info from it, + * and then removes the event listeners on the node. + * @param {Event} evt + * @returns {Object} + */ + function getScriptData(evt) { + //Using currentTarget instead of target for Firefox 2.0's sake. Not + //all old browsers will be supported, but this one was easy enough + //to support and still makes sense. + var node = evt.currentTarget || evt.srcElement; + + //Remove the listeners once here. + removeListener(node, context.onScriptLoad, 'load', 'onreadystatechange'); + removeListener(node, context.onScriptError, 'error'); + + return { + node: node, + id: node && node.getAttribute('data-requiremodule') + }; + } + + function intakeDefines() { + var args; + + //Any defined modules in the global queue, intake them now. + takeGlobalQueue(); + + //Make sure any remaining defQueue items get properly processed. + while (defQueue.length) { + args = defQueue.shift(); + if (args[0] === null) { + return onError(makeError('mismatch', 'Mismatched anonymous define() module: ' + args[args.length - 1])); + } else { + //args are id, deps, factory. Should be normalized by the + //define() function. + callGetModule(args); + } + } + } + + context = { + config: config, + contextName: contextName, + registry: registry, + defined: defined, + urlFetched: urlFetched, + defQueue: defQueue, + Module: Module, + makeModuleMap: makeModuleMap, + nextTick: req.nextTick, + onError: onError, + + /** + * Set a configuration for the context. + * @param {Object} cfg config object to integrate. + */ + configure: function (cfg) { + //Make sure the baseUrl ends in a slash. + if (cfg.baseUrl) { + if (cfg.baseUrl.charAt(cfg.baseUrl.length - 1) !== '/') { + cfg.baseUrl += '/'; + } + } + + //Save off the paths since they require special processing, + //they are additive. + var shim = config.shim, + objs = { + paths: true, + bundles: true, + config: true, + map: true + }; + + eachProp(cfg, function (value, prop) { + if (objs[prop]) { + if (!config[prop]) { + config[prop] = {}; + } + mixin(config[prop], value, true, true); + } else { + config[prop] = value; + } + }); + + //Reverse map the bundles + if (cfg.bundles) { + eachProp(cfg.bundles, function (value, prop) { + each(value, function (v) { + if (v !== prop) { + bundlesMap[v] = prop; + } + }); + }); + } + + //Merge shim + if (cfg.shim) { + eachProp(cfg.shim, function (value, id) { + //Normalize the structure + if (isArray(value)) { + value = { + deps: value + }; + } + if ((value.exports || value.init) && !value.exportsFn) { + value.exportsFn = context.makeShimExports(value); + } + shim[id] = value; + }); + config.shim = shim; + } + + //Adjust packages if necessary. + if (cfg.packages) { + each(cfg.packages, function (pkgObj) { + var location, name; + + pkgObj = typeof pkgObj === 'string' ? { name: pkgObj } : pkgObj; + + name = pkgObj.name; + location = pkgObj.location; + if (location) { + config.paths[name] = pkgObj.location; + } + + //Save pointer to main module ID for pkg name. + //Remove leading dot in main, so main paths are normalized, + //and remove any trailing .js, since different package + //envs have different conventions: some use a module name, + //some use a file name. + config.pkgs[name] = pkgObj.name + '/' + (pkgObj.main || 'main') + .replace(currDirRegExp, '') + .replace(jsSuffixRegExp, ''); + }); + } + + //If there are any "waiting to execute" modules in the registry, + //update the maps for them, since their info, like URLs to load, + //may have changed. + eachProp(registry, function (mod, id) { + //If module already has init called, since it is too + //late to modify them, and ignore unnormalized ones + //since they are transient. + if (!mod.inited && !mod.map.unnormalized) { + mod.map = makeModuleMap(id); + } + }); + + //If a deps array or a config callback is specified, then call + //require with those args. This is useful when require is defined as a + //config object before require.js is loaded. + if (cfg.deps || cfg.callback) { + context.require(cfg.deps || [], cfg.callback); + } + }, + + makeShimExports: function (value) { + function fn() { + var ret; + if (value.init) { + ret = value.init.apply(global, arguments); + } + return ret || (value.exports && getGlobal(value.exports)); + } + return fn; + }, + + makeRequire: function (relMap, options) { + options = options || {}; + + function localRequire(deps, callback, errback) { + var id, map, requireMod; + + if (options.enableBuildCallback && callback && isFunction(callback)) { + callback.__requireJsBuild = true; + } + + if (typeof deps === 'string') { + if (isFunction(callback)) { + //Invalid call + return onError(makeError('requireargs', 'Invalid require call'), errback); + } + + //If require|exports|module are requested, get the + //value for them from the special handlers. Caveat: + //this only works while module is being defined. + if (relMap && hasProp(handlers, deps)) { + return handlers[deps](registry[relMap.id]); + } + + //Synchronous access to one module. If require.get is + //available (as in the Node adapter), prefer that. + if (req.get) { + return req.get(context, deps, relMap, localRequire); + } + + //Normalize module name, if it contains . or .. + map = makeModuleMap(deps, relMap, false, true); + id = map.id; + + if (!hasProp(defined, id)) { + return onError(makeError('notloaded', 'Module name "' + + id + + '" has not been loaded yet for context: ' + + contextName + + (relMap ? '' : '. Use require([])'))); + } + return defined[id]; + } + + //Grab defines waiting in the global queue. + intakeDefines(); + + //Mark all the dependencies as needing to be loaded. + context.nextTick(function () { + //Some defines could have been added since the + //require call, collect them. + intakeDefines(); + + requireMod = getModule(makeModuleMap(null, relMap)); + + //Store if map config should be applied to this require + //call for dependencies. + requireMod.skipMap = options.skipMap; + + requireMod.init(deps, callback, errback, { + enabled: true + }); + + checkLoaded(); + }); + + return localRequire; + } + + mixin(localRequire, { + isBrowser: isBrowser, + + /** + * Converts a module name + .extension into an URL path. + * *Requires* the use of a module name. It does not support using + * plain URLs like nameToUrl. + */ + toUrl: function (moduleNamePlusExt) { + var ext, + index = moduleNamePlusExt.lastIndexOf('.'), + segment = moduleNamePlusExt.split('/')[0], + isRelative = segment === '.' || segment === '..'; + + //Have a file extension alias, and it is not the + //dots from a relative path. + if (index !== -1 && (!isRelative || index > 1)) { + ext = moduleNamePlusExt.substring(index, moduleNamePlusExt.length); + moduleNamePlusExt = moduleNamePlusExt.substring(0, index); + } + + return context.nameToUrl(normalize(moduleNamePlusExt, + relMap && relMap.id, true), ext, true); + }, + + defined: function (id) { + return hasProp(defined, makeModuleMap(id, relMap, false, true).id); + }, + + specified: function (id) { + id = makeModuleMap(id, relMap, false, true).id; + return hasProp(defined, id) || hasProp(registry, id); + } + }); + + //Only allow undef on top level require calls + if (!relMap) { + localRequire.undef = function (id) { + //Bind any waiting define() calls to this context, + //fix for #408 + takeGlobalQueue(); + + var map = makeModuleMap(id, relMap, true), + mod = getOwn(registry, id); + + removeScript(id); + + delete defined[id]; + delete urlFetched[map.url]; + delete undefEvents[id]; + + //Clean queued defines too. Go backwards + //in array so that the splices do not + //mess up the iteration. + eachReverse(defQueue, function(args, i) { + if(args[0] === id) { + defQueue.splice(i, 1); + } + }); + + if (mod) { + //Hold on to listeners in case the + //module will be attempted to be reloaded + //using a different config. + if (mod.events.defined) { + undefEvents[id] = mod.events; + } + + cleanRegistry(id); + } + }; + } + + return localRequire; + }, + + /** + * Called to enable a module if it is still in the registry + * awaiting enablement. A second arg, parent, the parent module, + * is passed in for context, when this method is overridden by + * the optimizer. Not shown here to keep code compact. + */ + enable: function (depMap) { + var mod = getOwn(registry, depMap.id); + if (mod) { + getModule(depMap).enable(); + } + }, + + /** + * Internal method used by environment adapters to complete a load event. + * A load event could be a script load or just a load pass from a synchronous + * load call. + * @param {String} moduleName the name of the module to potentially complete. + */ + completeLoad: function (moduleName) { + var found, args, mod, + shim = getOwn(config.shim, moduleName) || {}, + shExports = shim.exports; + + takeGlobalQueue(); + + while (defQueue.length) { + args = defQueue.shift(); + if (args[0] === null) { + args[0] = moduleName; + //If already found an anonymous module and bound it + //to this name, then this is some other anon module + //waiting for its completeLoad to fire. + if (found) { + break; + } + found = true; + } else if (args[0] === moduleName) { + //Found matching define call for this script! + found = true; + } + + callGetModule(args); + } + + //Do this after the cycle of callGetModule in case the result + //of those calls/init calls changes the registry. + mod = getOwn(registry, moduleName); + + if (!found && !hasProp(defined, moduleName) && mod && !mod.inited) { + if (config.enforceDefine && (!shExports || !getGlobal(shExports))) { + if (hasPathFallback(moduleName)) { + return; + } else { + return onError(makeError('nodefine', + 'No define call for ' + moduleName, + null, + [moduleName])); + } + } else { + //A script that does not call define(), so just simulate + //the call for it. + callGetModule([moduleName, (shim.deps || []), shim.exportsFn]); + } + } + + checkLoaded(); + }, + + /** + * Converts a module name to a file path. Supports cases where + * moduleName may actually be just an URL. + * Note that it **does not** call normalize on the moduleName, + * it is assumed to have already been normalized. This is an + * internal API, not a public one. Use toUrl for the public API. + */ + nameToUrl: function (moduleName, ext, skipExt) { + var paths, syms, i, parentModule, url, + parentPath, bundleId, + pkgMain = getOwn(config.pkgs, moduleName); + + if (pkgMain) { + moduleName = pkgMain; + } + + bundleId = getOwn(bundlesMap, moduleName); + + if (bundleId) { + return context.nameToUrl(bundleId, ext, skipExt); + } + + //If a colon is in the URL, it indicates a protocol is used and it is just + //an URL to a file, or if it starts with a slash, contains a query arg (i.e. ?) + //or ends with .js, then assume the user meant to use an url and not a module id. + //The slash is important for protocol-less URLs as well as full paths. + if (req.jsExtRegExp.test(moduleName)) { + //Just a plain path, not module name lookup, so just return it. + //Add extension if it is included. This is a bit wonky, only non-.js things pass + //an extension, this method probably needs to be reworked. + url = moduleName + (ext || ''); + } else { + //A module that needs to be converted to a path. + paths = config.paths; + + syms = moduleName.split('/'); + //For each module name segment, see if there is a path + //registered for it. Start with most specific name + //and work up from it. + for (i = syms.length; i > 0; i -= 1) { + parentModule = syms.slice(0, i).join('/'); + + parentPath = getOwn(paths, parentModule); + if (parentPath) { + //If an array, it means there are a few choices, + //Choose the one that is desired + if (isArray(parentPath)) { + parentPath = parentPath[0]; + } + syms.splice(0, i, parentPath); + break; + } + } + + //Join the path parts together, then figure out if baseUrl is needed. + url = syms.join('/'); + url += (ext || (/^data\:|\?/.test(url) || skipExt ? '' : '.js')); + url = (url.charAt(0) === '/' || url.match(/^[\w\+\.\-]+:/) ? '' : config.baseUrl) + url; + } + + return config.urlArgs ? url + + ((url.indexOf('?') === -1 ? '?' : '&') + + config.urlArgs) : url; + }, + + //Delegates to req.load. Broken out as a separate function to + //allow overriding in the optimizer. + load: function (id, url) { + req.load(context, id, url); + }, + + /** + * Executes a module callback function. Broken out as a separate function + * solely to allow the build system to sequence the files in the built + * layer in the right sequence. + * + * @private + */ + execCb: function (name, callback, args, exports) { + return callback.apply(exports, args); + }, + + /** + * callback for script loads, used to check status of loading. + * + * @param {Event} evt the event from the browser for the script + * that was loaded. + */ + onScriptLoad: function (evt) { + //Using currentTarget instead of target for Firefox 2.0's sake. Not + //all old browsers will be supported, but this one was easy enough + //to support and still makes sense. + if (evt.type === 'load' || + (readyRegExp.test((evt.currentTarget || evt.srcElement).readyState))) { + //Reset interactive script so a script node is not held onto for + //to long. + interactiveScript = null; + + //Pull out the name of the module and the context. + var data = getScriptData(evt); + context.completeLoad(data.id); + } + }, + + /** + * Callback for script errors. + */ + onScriptError: function (evt) { + var data = getScriptData(evt); + if (!hasPathFallback(data.id)) { + return onError(makeError('scripterror', 'Script error for: ' + data.id, evt, [data.id])); + } + } + }; + + context.require = context.makeRequire(); + return context; + } + + /** + * Main entry point. + * + * If the only argument to require is a string, then the module that + * is represented by that string is fetched for the appropriate context. + * + * If the first argument is an array, then it will be treated as an array + * of dependency string names to fetch. An optional function callback can + * be specified to execute when all of those dependencies are available. + * + * Make a local req variable to help Caja compliance (it assumes things + * on a require that are not standardized), and to give a short + * name for minification/local scope use. + */ + req = requirejs = function (deps, callback, errback, optional) { + + //Find the right context, use default + var context, config, + contextName = defContextName; + + // Determine if have config object in the call. + if (!isArray(deps) && typeof deps !== 'string') { + // deps is a config object + config = deps; + if (isArray(callback)) { + // Adjust args if there are dependencies + deps = callback; + callback = errback; + errback = optional; + } else { + deps = []; + } + } + + if (config && config.context) { + contextName = config.context; + } + + context = getOwn(contexts, contextName); + if (!context) { + context = contexts[contextName] = req.s.newContext(contextName); + } + + if (config) { + context.configure(config); + } + + return context.require(deps, callback, errback); + }; + + /** + * Support require.config() to make it easier to cooperate with other + * AMD loaders on globally agreed names. + */ + req.config = function (config) { + return req(config); + }; + + /** + * Execute something after the current tick + * of the event loop. Override for other envs + * that have a better solution than setTimeout. + * @param {Function} fn function to execute later. + */ + req.nextTick = typeof setTimeout !== 'undefined' ? function (fn) { + setTimeout(fn, 4); + } : function (fn) { fn(); }; + + /** + * Export require as a global, but only if it does not already exist. + */ + if (!require) { + require = req; + } + + req.version = version; + + //Used to filter out dependencies that are already paths. + req.jsExtRegExp = /^\/|:|\?|\.js$/; + req.isBrowser = isBrowser; + s = req.s = { + contexts: contexts, + newContext: newContext + }; + + //Create default context. + req({}); + + //Exports some context-sensitive methods on global require. + each([ + 'toUrl', + 'undef', + 'defined', + 'specified' + ], function (prop) { + //Reference from contexts instead of early binding to default context, + //so that during builds, the latest instance of the default context + //with its config gets used. + req[prop] = function () { + var ctx = contexts[defContextName]; + return ctx.require[prop].apply(ctx, arguments); + }; + }); + + if (isBrowser) { + head = s.head = document.getElementsByTagName('head')[0]; + //If BASE tag is in play, using appendChild is a problem for IE6. + //When that browser dies, this can be removed. Details in this jQuery bug: + //http://dev.jquery.com/ticket/2709 + baseElement = document.getElementsByTagName('base')[0]; + if (baseElement) { + head = s.head = baseElement.parentNode; + } + } + + /** + * Any errors that require explicitly generates will be passed to this + * function. Intercept/override it if you want custom error handling. + * @param {Error} err the error object. + */ + req.onError = defaultOnError; + + /** + * Creates the node for the load command. Only used in browser envs. + */ + req.createNode = function (config, moduleName, url) { + var node = config.xhtml ? + document.createElementNS('http://www.w3.org/1999/xhtml', 'html:script') : + document.createElement('script'); + node.type = config.scriptType || 'text/javascript'; + node.charset = 'utf-8'; + node.async = true; + return node; + }; + + /** + * Does the request to load a module for the browser case. + * Make this a separate function to allow other environments + * to override it. + * + * @param {Object} context the require context to find state. + * @param {String} moduleName the name of the module. + * @param {Object} url the URL to the module. + */ + req.load = function (context, moduleName, url) { + var config = (context && context.config) || {}, + node; + if (isBrowser) { + //In the browser so use a script tag + node = req.createNode(config, moduleName, url); + + node.setAttribute('data-requirecontext', context.contextName); + node.setAttribute('data-requiremodule', moduleName); + + //Set up load listener. Test attachEvent first because IE9 has + //a subtle issue in its addEventListener and script onload firings + //that do not match the behavior of all other browsers with + //addEventListener support, which fire the onload event for a + //script right after the script execution. See: + //https://connect.microsoft.com/IE/feedback/details/648057/script-onload-event-is-not-fired-immediately-after-script-execution + //UNFORTUNATELY Opera implements attachEvent but does not follow the script + //script execution mode. + if (node.attachEvent && + //Check if node.attachEvent is artificially added by custom script or + //natively supported by browser + //read https://github.com/jrburke/requirejs/issues/187 + //if we can NOT find [native code] then it must NOT natively supported. + //in IE8, node.attachEvent does not have toString() + //Note the test for "[native code" with no closing brace, see: + //https://github.com/jrburke/requirejs/issues/273 + !(node.attachEvent.toString && node.attachEvent.toString().indexOf('[native code') < 0) && + !isOpera) { + //Probably IE. IE (at least 6-8) do not fire + //script onload right after executing the script, so + //we cannot tie the anonymous define call to a name. + //However, IE reports the script as being in 'interactive' + //readyState at the time of the define call. + useInteractive = true; + + node.attachEvent('onreadystatechange', context.onScriptLoad); + //It would be great to add an error handler here to catch + //404s in IE9+. However, onreadystatechange will fire before + //the error handler, so that does not help. If addEventListener + //is used, then IE will fire error before load, but we cannot + //use that pathway given the connect.microsoft.com issue + //mentioned above about not doing the 'script execute, + //then fire the script load event listener before execute + //next script' that other browsers do. + //Best hope: IE10 fixes the issues, + //and then destroys all installs of IE 6-9. + //node.attachEvent('onerror', context.onScriptError); + } else { + node.addEventListener('load', context.onScriptLoad, false); + node.addEventListener('error', context.onScriptError, false); + } + node.src = url; + + //For some cache cases in IE 6-8, the script executes before the end + //of the appendChild execution, so to tie an anonymous define + //call to the module name (which is stored on the node), hold on + //to a reference to this node, but clear after the DOM insertion. + currentlyAddingScript = node; + if (baseElement) { + head.insertBefore(node, baseElement); + } else { + head.appendChild(node); + } + currentlyAddingScript = null; + + return node; + } else if (isWebWorker) { + try { + //In a web worker, use importScripts. This is not a very + //efficient use of importScripts, importScripts will block until + //its script is downloaded and evaluated. However, if web workers + //are in play, the expectation that a build has been done so that + //only one script needs to be loaded anyway. This may need to be + //reevaluated if other use cases become common. + importScripts(url); + + //Account for anonymous modules + context.completeLoad(moduleName); + } catch (e) { + context.onError(makeError('importscripts', + 'importScripts failed for ' + + moduleName + ' at ' + url, + e, + [moduleName])); + } + } + }; + + function getInteractiveScript() { + if (interactiveScript && interactiveScript.readyState === 'interactive') { + return interactiveScript; + } + + eachReverse(scripts(), function (script) { + if (script.readyState === 'interactive') { + return (interactiveScript = script); + } + }); + return interactiveScript; + } + + //Look for a data-main script attribute, which could also adjust the baseUrl. + if (isBrowser && !cfg.skipDataMain) { + //Figure out baseUrl. Get it from the script tag with require.js in it. + eachReverse(scripts(), function (script) { + //Set the 'head' where we can append children by + //using the script's parent. + if (!head) { + head = script.parentNode; + } + + //Look for a data-main attribute to set main script for the page + //to load. If it is there, the path to data main becomes the + //baseUrl, if it is not already set. + dataMain = script.getAttribute('data-main'); + if (dataMain) { + //Preserve dataMain in case it is a path (i.e. contains '?') + mainScript = dataMain; + + //Set final baseUrl if there is not already an explicit one. + if (!cfg.baseUrl) { + //Pull off the directory of data-main for use as the + //baseUrl. + src = mainScript.split('/'); + mainScript = src.pop(); + subPath = src.length ? src.join('/') + '/' : './'; + + cfg.baseUrl = subPath; + } + + //Strip off any trailing .js since mainScript is now + //like a module name. + mainScript = mainScript.replace(jsSuffixRegExp, ''); + + //If mainScript is still a path, fall back to dataMain + if (req.jsExtRegExp.test(mainScript)) { + mainScript = dataMain; + } + + //Put the data-main script in the files to load. + cfg.deps = cfg.deps ? cfg.deps.concat(mainScript) : [mainScript]; + + return true; + } + }); + } + + /** + * The function that handles definitions of modules. Differs from + * require() in that a string for the module should be the first argument, + * and the function to execute after dependencies are loaded should + * return a value to define the module corresponding to the first argument's + * name. + */ + define = function (name, deps, callback) { + var node, context; + + //Allow for anonymous modules + if (typeof name !== 'string') { + //Adjust args appropriately + callback = deps; + deps = name; + name = null; + } + + //This module may not have dependencies + if (!isArray(deps)) { + callback = deps; + deps = null; + } + + //If no name, and callback is a function, then figure out if it a + //CommonJS thing with dependencies. + if (!deps && isFunction(callback)) { + deps = []; + //Remove comments from the callback string, + //look for require calls, and pull them into the dependencies, + //but only if there are function args. + if (callback.length) { + callback + .toString() + .replace(commentRegExp, '') + .replace(cjsRequireRegExp, function (match, dep) { + deps.push(dep); + }); + + //May be a CommonJS thing even without require calls, but still + //could use exports, and module. Avoid doing exports and module + //work though if it just needs require. + //REQUIRES the function to expect the CommonJS variables in the + //order listed below. + deps = (callback.length === 1 ? ['require'] : ['require', 'exports', 'module']).concat(deps); + } + } + + //If in IE 6-8 and hit an anonymous define() call, do the interactive + //work. + if (useInteractive) { + node = currentlyAddingScript || getInteractiveScript(); + if (node) { + if (!name) { + name = node.getAttribute('data-requiremodule'); + } + context = contexts[node.getAttribute('data-requirecontext')]; + } + } + + //Always save off evaluating the def call until the script onload handler. + //This allows multiple modules to be in a file without prematurely + //tracing dependencies, and allows for anonymous module support, + //where the module name is not known until the script onload event + //occurs. If no context, use the global queue, and get it processed + //in the onscript load callback. + (context ? context.defQueue : globalDefQueue).push([name, deps, callback]); + }; + + define.amd = { + jQuery: true + }; + + + /** + * Executes the text. Normally just uses eval, but can be modified + * to use a better, environment-specific call. Only used for transpiling + * loader plugins, not for plain JS modules. + * @param {String} text the text to execute/evaluate. + */ + req.exec = function (text) { + /*jslint evil: true */ + return eval(text); + }; + + //Set up with config info. + req(cfg); +}(this)); diff --git a/src/Quartz.Web/App/scripts/signalr/jquery-2.1.3.intellisense.js b/src/Quartz.Web/App/scripts/signalr/jquery-2.1.3.intellisense.js new file mode 100644 index 000000000..a88b6c6e3 --- /dev/null +++ b/src/Quartz.Web/App/scripts/signalr/jquery-2.1.3.intellisense.js @@ -0,0 +1,2670 @@ +intellisense.annotate(jQuery, { + 'ajax': function() { + /// + /// Perform an asynchronous HTTP (Ajax) request. + /// A string containing the URL to which the request is sent. + /// A set of key/value pairs that configure the Ajax request. All settings are optional. A default can be set for any option with $.ajaxSetup(). See jQuery.ajax( settings ) below for a complete list of all settings. + /// + /// + /// + /// Perform an asynchronous HTTP (Ajax) request. + /// A set of key/value pairs that configure the Ajax request. All settings are optional. A default can be set for any option with $.ajaxSetup(). + /// + /// + }, + 'ajaxPrefilter': function() { + /// + /// Handle custom Ajax options or modify existing options before each request is sent and before they are processed by $.ajax(). + /// An optional string containing one or more space-separated dataTypes + /// A handler to set default values for future Ajax requests. + /// + }, + 'ajaxSetup': function() { + /// + /// Set default values for future Ajax requests. Its use is not recommended. + /// A set of key/value pairs that configure the default Ajax request. All options are optional. + /// + }, + 'ajaxTransport': function() { + /// + /// Creates an object that handles the actual transmission of Ajax data. + /// A string identifying the data type to use + /// A handler to return the new transport object to use with the data type provided in the first argument. + /// + }, + 'boxModel': function() { + /// Deprecated in jQuery 1.3 (see jQuery.support). States if the current page, in the user's browser, is being rendered using the W3C CSS Box Model. + /// + }, + 'browser': function() { + /// Contains flags for the useragent, read from navigator.userAgent. This property was removed in jQuery 1.9 and is available only through the jQuery.migrate plugin. Please try to use feature detection instead. + /// + }, + 'browser.version': function() { + /// The version number of the rendering engine for the user's browser. This property was removed in jQuery 1.9 and is available only through the jQuery.migrate plugin. + /// + }, + 'Callbacks': function() { + /// + /// A multi-purpose callbacks list object that provides a powerful way to manage callback lists. + /// An optional list of space-separated flags that change how the callback list behaves. + /// + /// + }, + 'contains': function() { + /// + /// Check to see if a DOM element is a descendant of another DOM element. + /// The DOM element that may contain the other element. + /// The DOM element that may be contained by (a descendant of) the other element. + /// + /// + }, + 'cssHooks': function() { + /// Hook directly into jQuery to override how particular CSS properties are retrieved or set, normalize CSS property naming, or create custom properties. + /// + }, + 'data': function() { + /// + /// Returns value at named data store for the element, as set by jQuery.data(element, name, value), or the full data store for the element. + /// The DOM element to query for the data. + /// Name of the data stored. + /// + /// + /// + /// Returns value at named data store for the element, as set by jQuery.data(element, name, value), or the full data store for the element. + /// The DOM element to query for the data. + /// + /// + }, + 'Deferred': function() { + /// + /// A constructor function that returns a chainable utility object with methods to register multiple callbacks into callback queues, invoke callback queues, and relay the success or failure state of any synchronous or asynchronous function. + /// A function that is called just before the constructor returns. + /// + /// + }, + 'dequeue': function() { + /// + /// Execute the next function on the queue for the matched element. + /// A DOM element from which to remove and execute a queued function. + /// A string containing the name of the queue. Defaults to fx, the standard effects queue. + /// + }, + 'each': function() { + /// + /// A generic iterator function, which can be used to seamlessly iterate over both objects and arrays. Arrays and array-like objects with a length property (such as a function's arguments object) are iterated by numeric index, from 0 to length-1. Other objects are iterated via their named properties. + /// The object or array to iterate over. + /// The function that will be executed on every object. + /// + /// + }, + 'error': function() { + /// + /// Takes a string and throws an exception containing it. + /// The message to send out. + /// + }, + 'extend': function() { + /// + /// Merge the contents of two or more objects together into the first object. + /// An object that will receive the new properties if additional objects are passed in or that will extend the jQuery namespace if it is the sole argument. + /// An object containing additional properties to merge in. + /// Additional objects containing properties to merge in. + /// + /// + /// + /// Merge the contents of two or more objects together into the first object. + /// If true, the merge becomes recursive (aka. deep copy). + /// The object to extend. It will receive the new properties. + /// An object containing additional properties to merge in. + /// Additional objects containing properties to merge in. + /// + /// + }, + 'fn.extend': function() { + /// + /// Merge the contents of an object onto the jQuery prototype to provide new jQuery instance methods. + /// An object to merge onto the jQuery prototype. + /// + /// + }, + 'get': function() { + /// + /// Load data from the server using a HTTP GET request. + /// A string containing the URL to which the request is sent. + /// A plain object or string that is sent to the server with the request. + /// A callback function that is executed if the request succeeds. + /// The type of data expected from the server. Default: Intelligent Guess (xml, json, script, or html). + /// + /// + }, + 'getJSON': function() { + /// + /// Load JSON-encoded data from the server using a GET HTTP request. + /// A string containing the URL to which the request is sent. + /// A plain object or string that is sent to the server with the request. + /// A callback function that is executed if the request succeeds. + /// + /// + }, + 'getScript': function() { + /// + /// Load a JavaScript file from the server using a GET HTTP request, then execute it. + /// A string containing the URL to which the request is sent. + /// A callback function that is executed if the request succeeds. + /// + /// + }, + 'globalEval': function() { + /// + /// Execute some JavaScript code globally. + /// The JavaScript code to execute. + /// + }, + 'grep': function() { + /// + /// Finds the elements of an array which satisfy a filter function. The original array is not affected. + /// The array to search through. + /// The function to process each item against. The first argument to the function is the item, and the second argument is the index. The function should return a Boolean value. this will be the global window object. + /// If "invert" is false, or not provided, then the function returns an array consisting of all elements for which "callback" returns true. If "invert" is true, then the function returns an array consisting of all elements for which "callback" returns false. + /// + /// + }, + 'hasData': function() { + /// + /// Determine whether an element has any jQuery data associated with it. + /// A DOM element to be checked for data. + /// + /// + }, + 'holdReady': function() { + /// + /// Holds or releases the execution of jQuery's ready event. + /// Indicates whether the ready hold is being requested or released + /// + }, + 'inArray': function() { + /// + /// Search for a specified value within an array and return its index (or -1 if not found). + /// The value to search for. + /// An array through which to search. + /// The index of the array at which to begin the search. The default is 0, which will search the whole array. + /// + /// + }, + 'isArray': function() { + /// + /// Determine whether the argument is an array. + /// Object to test whether or not it is an array. + /// + /// + }, + 'isEmptyObject': function() { + /// + /// Check to see if an object is empty (contains no enumerable properties). + /// The object that will be checked to see if it's empty. + /// + /// + }, + 'isFunction': function() { + /// + /// Determine if the argument passed is a Javascript function object. + /// Object to test whether or not it is a function. + /// + /// + }, + 'isNumeric': function() { + /// + /// Determines whether its argument is a number. + /// The value to be tested. + /// + /// + }, + 'isPlainObject': function() { + /// + /// Check to see if an object is a plain object (created using "{}" or "new Object"). + /// The object that will be checked to see if it's a plain object. + /// + /// + }, + 'isWindow': function() { + /// + /// Determine whether the argument is a window. + /// Object to test whether or not it is a window. + /// + /// + }, + 'isXMLDoc': function() { + /// + /// Check to see if a DOM node is within an XML document (or is an XML document). + /// The DOM node that will be checked to see if it's in an XML document. + /// + /// + }, + 'makeArray': function() { + /// + /// Convert an array-like object into a true JavaScript array. + /// Any object to turn into a native Array. + /// + /// + }, + 'map': function() { + /// + /// Translate all items in an array or object to new array of items. + /// The Array to translate. + /// The function to process each item against. The first argument to the function is the array item, the second argument is the index in array The function can return any value. Within the function, this refers to the global (window) object. + /// + /// + /// + /// Translate all items in an array or object to new array of items. + /// The Array or Object to translate. + /// The function to process each item against. The first argument to the function is the value; the second argument is the index or key of the array or object property. The function can return any value to add to the array. A returned array will be flattened into the resulting array. Within the function, this refers to the global (window) object. + /// + /// + }, + 'merge': function() { + /// + /// Merge the contents of two arrays together into the first array. + /// The first array to merge, the elements of second added. + /// The second array to merge into the first, unaltered. + /// + /// + }, + 'noConflict': function() { + /// + /// Relinquish jQuery's control of the $ variable. + /// A Boolean indicating whether to remove all jQuery variables from the global scope (including jQuery itself). + /// + /// + }, + 'noop': function() { + /// An empty function. + }, + 'now': function() { + /// Return a number representing the current time. + /// + }, + 'param': function() { + /// + /// Create a serialized representation of an array or object, suitable for use in a URL query string or Ajax request. + /// An array or object to serialize. + /// + /// + /// + /// Create a serialized representation of an array or object, suitable for use in a URL query string or Ajax request. + /// An array or object to serialize. + /// A Boolean indicating whether to perform a traditional "shallow" serialization. + /// + /// + }, + 'parseHTML': function() { + /// + /// Parses a string into an array of DOM nodes. + /// HTML string to be parsed + /// Document element to serve as the context in which the HTML fragment will be created + /// A Boolean indicating whether to include scripts passed in the HTML string + /// + /// + }, + 'parseJSON': function() { + /// + /// Takes a well-formed JSON string and returns the resulting JavaScript object. + /// The JSON string to parse. + /// + /// + }, + 'parseXML': function() { + /// + /// Parses a string into an XML document. + /// a well-formed XML string to be parsed + /// + /// + }, + 'post': function() { + /// + /// Load data from the server using a HTTP POST request. + /// A string containing the URL to which the request is sent. + /// A plain object or string that is sent to the server with the request. + /// A callback function that is executed if the request succeeds. Required if dataType is provided, but can be null in that case. + /// The type of data expected from the server. Default: Intelligent Guess (xml, json, script, text, html). + /// + /// + }, + 'proxy': function() { + /// + /// Takes a function and returns a new one that will always have a particular context. + /// The function whose context will be changed. + /// The object to which the context (this) of the function should be set. + /// + /// + /// + /// Takes a function and returns a new one that will always have a particular context. + /// The object to which the context of the function should be set. + /// The name of the function whose context will be changed (should be a property of the context object). + /// + /// + /// + /// Takes a function and returns a new one that will always have a particular context. + /// The function whose context will be changed. + /// The object to which the context (this) of the function should be set. + /// Any number of arguments to be passed to the function referenced in the function argument. + /// + /// + /// + /// Takes a function and returns a new one that will always have a particular context. + /// The object to which the context of the function should be set. + /// The name of the function whose context will be changed (should be a property of the context object). + /// Any number of arguments to be passed to the function named in the name argument. + /// + /// + }, + 'queue': function() { + /// + /// Manipulate the queue of functions to be executed on the matched element. + /// A DOM element where the array of queued functions is attached. + /// A string containing the name of the queue. Defaults to fx, the standard effects queue. + /// An array of functions to replace the current queue contents. + /// + /// + /// + /// Manipulate the queue of functions to be executed on the matched element. + /// A DOM element on which to add a queued function. + /// A string containing the name of the queue. Defaults to fx, the standard effects queue. + /// The new function to add to the queue. + /// + /// + }, + 'removeData': function() { + /// + /// Remove a previously-stored piece of data. + /// A DOM element from which to remove data. + /// A string naming the piece of data to remove. + /// + /// + }, + 'sub': function() { + /// Creates a new copy of jQuery whose properties and methods can be modified without affecting the original jQuery object. + /// + }, + 'support': function() { + /// A collection of properties that represent the presence of different browser features or bugs. Primarily intended for jQuery's internal use; specific properties may be removed when they are no longer needed internally to improve page startup performance. + /// + }, + 'trim': function() { + /// + /// Remove the whitespace from the beginning and end of a string. + /// The string to trim. + /// + /// + }, + 'type': function() { + /// + /// Determine the internal JavaScript [[Class]] of an object. + /// Object to get the internal JavaScript [[Class]] of. + /// + /// + }, + 'unique': function() { + /// + /// Sorts an array of DOM elements, in place, with the duplicates removed. Note that this only works on arrays of DOM elements, not strings or numbers. + /// The Array of DOM elements. + /// + /// + }, + 'when': function() { + /// + /// Provides a way to execute callback functions based on one or more objects, usually Deferred objects that represent asynchronous events. + /// One or more Deferred objects, or plain JavaScript objects. + /// + /// + }, +}); + +var _1228819969 = jQuery.Callbacks; +jQuery.Callbacks = function(flags) { +var _object = _1228819969(flags); +intellisense.annotate(_object, { + 'add': function() { + /// + /// Add a callback or a collection of callbacks to a callback list. + /// A function, or array of functions, that are to be added to the callback list. + /// + /// + }, + 'disable': function() { + /// Disable a callback list from doing anything more. + /// + }, + 'disabled': function() { + /// Determine if the callbacks list has been disabled. + /// + }, + 'empty': function() { + /// Remove all of the callbacks from a list. + /// + }, + 'fire': function() { + /// + /// Call all of the callbacks with the given arguments + /// The argument or list of arguments to pass back to the callback list. + /// + /// + }, + 'fired': function() { + /// Determine if the callbacks have already been called at least once. + /// + }, + 'fireWith': function() { + /// + /// Call all callbacks in a list with the given context and arguments. + /// A reference to the context in which the callbacks in the list should be fired. + /// An argument, or array of arguments, to pass to the callbacks in the list. + /// + /// + }, + 'has': function() { + /// + /// Determine whether a supplied callback is in a list + /// The callback to search for. + /// + /// + }, + 'lock': function() { + /// Lock a callback list in its current state. + /// + }, + 'locked': function() { + /// Determine if the callbacks list has been locked. + /// + }, + 'remove': function() { + /// + /// Remove a callback or a collection of callbacks from a callback list. + /// A function, or array of functions, that are to be removed from the callback list. + /// + /// + }, +}); + +return _object; +}; +intellisense.redirectDefinition(jQuery.Callbacks, _1228819969); + +var _731531622 = jQuery.Deferred; +jQuery.Deferred = function(func) { +var _object = _731531622(func); +intellisense.annotate(_object, { + 'always': function() { + /// + /// Add handlers to be called when the Deferred object is either resolved or rejected. + /// A function, or array of functions, that is called when the Deferred is resolved or rejected. + /// Optional additional functions, or arrays of functions, that are called when the Deferred is resolved or rejected. + /// + /// + }, + 'done': function() { + /// + /// Add handlers to be called when the Deferred object is resolved. + /// A function, or array of functions, that are called when the Deferred is resolved. + /// Optional additional functions, or arrays of functions, that are called when the Deferred is resolved. + /// + /// + }, + 'fail': function() { + /// + /// Add handlers to be called when the Deferred object is rejected. + /// A function, or array of functions, that are called when the Deferred is rejected. + /// Optional additional functions, or arrays of functions, that are called when the Deferred is rejected. + /// + /// + }, + 'isRejected': function() { + /// Determine whether a Deferred object has been rejected. + /// + }, + 'isResolved': function() { + /// Determine whether a Deferred object has been resolved. + /// + }, + 'notify': function() { + /// + /// Call the progressCallbacks on a Deferred object with the given args. + /// Optional arguments that are passed to the progressCallbacks. + /// + /// + }, + 'notifyWith': function() { + /// + /// Call the progressCallbacks on a Deferred object with the given context and args. + /// Context passed to the progressCallbacks as the this object. + /// Optional arguments that are passed to the progressCallbacks. + /// + /// + }, + 'pipe': function() { + /// + /// Utility method to filter and/or chain Deferreds. + /// An optional function that is called when the Deferred is resolved. + /// An optional function that is called when the Deferred is rejected. + /// + /// + /// + /// Utility method to filter and/or chain Deferreds. + /// An optional function that is called when the Deferred is resolved. + /// An optional function that is called when the Deferred is rejected. + /// An optional function that is called when progress notifications are sent to the Deferred. + /// + /// + }, + 'progress': function() { + /// + /// Add handlers to be called when the Deferred object generates progress notifications. + /// A function, or array of functions, to be called when the Deferred generates progress notifications. + /// + /// + }, + 'promise': function() { + /// + /// Return a Deferred's Promise object. + /// Object onto which the promise methods have to be attached + /// + /// + }, + 'reject': function() { + /// + /// Reject a Deferred object and call any failCallbacks with the given args. + /// Optional arguments that are passed to the failCallbacks. + /// + /// + }, + 'rejectWith': function() { + /// + /// Reject a Deferred object and call any failCallbacks with the given context and args. + /// Context passed to the failCallbacks as the this object. + /// An optional array of arguments that are passed to the failCallbacks. + /// + /// + }, + 'resolve': function() { + /// + /// Resolve a Deferred object and call any doneCallbacks with the given args. + /// Optional arguments that are passed to the doneCallbacks. + /// + /// + }, + 'resolveWith': function() { + /// + /// Resolve a Deferred object and call any doneCallbacks with the given context and args. + /// Context passed to the doneCallbacks as the this object. + /// An optional array of arguments that are passed to the doneCallbacks. + /// + /// + }, + 'state': function() { + /// Determine the current state of a Deferred object. + /// + }, + 'then': function() { + /// + /// Add handlers to be called when the Deferred object is resolved, rejected, or still in progress. + /// A function that is called when the Deferred is resolved. + /// An optional function that is called when the Deferred is rejected. + /// An optional function that is called when progress notifications are sent to the Deferred. + /// + /// + /// + /// Add handlers to be called when the Deferred object is resolved, rejected, or still in progress. + /// A function, or array of functions, called when the Deferred is resolved. + /// A function, or array of functions, called when the Deferred is rejected. + /// + /// + /// + /// Add handlers to be called when the Deferred object is resolved, rejected, or still in progress. + /// A function, or array of functions, called when the Deferred is resolved. + /// A function, or array of functions, called when the Deferred is rejected. + /// A function, or array of functions, called when the Deferred notifies progress. + /// + /// + }, +}); + +return _object; +}; +intellisense.redirectDefinition(jQuery.Callbacks, _731531622); + +intellisense.annotate(jQuery.Event.prototype, { + 'currentTarget': function() { + /// The current DOM element within the event bubbling phase. + /// + }, + 'data': function() { + /// An optional object of data passed to an event method when the current executing handler is bound. + /// + }, + 'delegateTarget': function() { + /// The element where the currently-called jQuery event handler was attached. + /// + }, + 'isDefaultPrevented': function() { + /// Returns whether event.preventDefault() was ever called on this event object. + /// + }, + 'isImmediatePropagationStopped': function() { + /// Returns whether event.stopImmediatePropagation() was ever called on this event object. + /// + }, + 'isPropagationStopped': function() { + /// Returns whether event.stopPropagation() was ever called on this event object. + /// + }, + 'metaKey': function() { + /// Indicates whether the META key was pressed when the event fired. + /// + }, + 'namespace': function() { + /// The namespace specified when the event was triggered. + /// + }, + 'pageX': function() { + /// The mouse position relative to the left edge of the document. + /// + }, + 'pageY': function() { + /// The mouse position relative to the top edge of the document. + /// + }, + 'preventDefault': function() { + /// If this method is called, the default action of the event will not be triggered. + }, + 'relatedTarget': function() { + /// The other DOM element involved in the event, if any. + /// + }, + 'result': function() { + /// The last value returned by an event handler that was triggered by this event, unless the value was undefined. + /// + }, + 'stopImmediatePropagation': function() { + /// Keeps the rest of the handlers from being executed and prevents the event from bubbling up the DOM tree. + }, + 'stopPropagation': function() { + /// Prevents the event from bubbling up the DOM tree, preventing any parent handlers from being notified of the event. + }, + 'target': function() { + /// The DOM element that initiated the event. + /// + }, + 'timeStamp': function() { + /// The difference in milliseconds between the time the browser created the event and January 1, 1970. + /// + }, + 'type': function() { + /// Describes the nature of the event. + /// + }, + 'which': function() { + /// For key or mouse events, this property indicates the specific key or button that was pressed. + /// + }, +}); + +intellisense.annotate(jQuery.fn, { + 'add': function() { + /// + /// Add elements to the set of matched elements. + /// A string representing a selector expression to find additional elements to add to the set of matched elements. + /// + /// + /// + /// Add elements to the set of matched elements. + /// One or more elements to add to the set of matched elements. + /// + /// + /// + /// Add elements to the set of matched elements. + /// An HTML fragment to add to the set of matched elements. + /// + /// + /// + /// Add elements to the set of matched elements. + /// An existing jQuery object to add to the set of matched elements. + /// + /// + /// + /// Add elements to the set of matched elements. + /// A string representing a selector expression to find additional elements to add to the set of matched elements. + /// The point in the document at which the selector should begin matching; similar to the context argument of the $(selector, context) method. + /// + /// + }, + 'addBack': function() { + /// + /// Add the previous set of elements on the stack to the current set, optionally filtered by a selector. + /// A string containing a selector expression to match the current set of elements against. + /// + /// + }, + 'addClass': function() { + /// + /// Adds the specified class(es) to each of the set of matched elements. + /// One or more space-separated classes to be added to the class attribute of each matched element. + /// + /// + /// + /// Adds the specified class(es) to each of the set of matched elements. + /// A function returning one or more space-separated class names to be added to the existing class name(s). Receives the index position of the element in the set and the existing class name(s) as arguments. Within the function, this refers to the current element in the set. + /// + /// + }, + 'after': function() { + /// + /// Insert content, specified by the parameter, after each element in the set of matched elements. + /// HTML string, DOM element, or jQuery object to insert after each element in the set of matched elements. + /// One or more additional DOM elements, arrays of elements, HTML strings, or jQuery objects to insert after each element in the set of matched elements. + /// + /// + /// + /// Insert content, specified by the parameter, after each element in the set of matched elements. + /// A function that returns an HTML string, DOM element(s), or jQuery object to insert after each element in the set of matched elements. Receives the index position of the element in the set as an argument. Within the function, this refers to the current element in the set. + /// + /// + }, + 'ajaxComplete': function() { + /// + /// Register a handler to be called when Ajax requests complete. This is an AjaxEvent. + /// The function to be invoked. + /// + /// + }, + 'ajaxError': function() { + /// + /// Register a handler to be called when Ajax requests complete with an error. This is an Ajax Event. + /// The function to be invoked. + /// + /// + }, + 'ajaxSend': function() { + /// + /// Attach a function to be executed before an Ajax request is sent. This is an Ajax Event. + /// The function to be invoked. + /// + /// + }, + 'ajaxStart': function() { + /// + /// Register a handler to be called when the first Ajax request begins. This is an Ajax Event. + /// The function to be invoked. + /// + /// + }, + 'ajaxStop': function() { + /// + /// Register a handler to be called when all Ajax requests have completed. This is an Ajax Event. + /// The function to be invoked. + /// + /// + }, + 'ajaxSuccess': function() { + /// + /// Attach a function to be executed whenever an Ajax request completes successfully. This is an Ajax Event. + /// The function to be invoked. + /// + /// + }, + 'all': function() { + /// Selects all elements. + }, + 'andSelf': function() { + /// Add the previous set of elements on the stack to the current set. + /// + }, + 'animate': function() { + /// + /// Perform a custom animation of a set of CSS properties. + /// An object of CSS properties and values that the animation will move toward. + /// A string or number determining how long the animation will run. + /// A string indicating which easing function to use for the transition. + /// A function to call once the animation is complete. + /// + /// + /// + /// Perform a custom animation of a set of CSS properties. + /// An object of CSS properties and values that the animation will move toward. + /// A map of additional options to pass to the method. + /// + /// + }, + 'animated': function() { + /// Select all elements that are in the progress of an animation at the time the selector is run. + }, + 'append': function() { + /// + /// Insert content, specified by the parameter, to the end of each element in the set of matched elements. + /// DOM element, HTML string, or jQuery object to insert at the end of each element in the set of matched elements. + /// One or more additional DOM elements, arrays of elements, HTML strings, or jQuery objects to insert at the end of each element in the set of matched elements. + /// + /// + /// + /// Insert content, specified by the parameter, to the end of each element in the set of matched elements. + /// A function that returns an HTML string, DOM element(s), or jQuery object to insert at the end of each element in the set of matched elements. Receives the index position of the element in the set and the old HTML value of the element as arguments. Within the function, this refers to the current element in the set. + /// + /// + }, + 'appendTo': function() { + /// + /// Insert every element in the set of matched elements to the end of the target. + /// A selector, element, HTML string, or jQuery object; the matched set of elements will be inserted at the end of the element(s) specified by this parameter. + /// + /// + }, + 'attr': function() { + /// + /// Set one or more attributes for the set of matched elements. + /// The name of the attribute to set. + /// A value to set for the attribute. + /// + /// + /// + /// Set one or more attributes for the set of matched elements. + /// An object of attribute-value pairs to set. + /// + /// + /// + /// Set one or more attributes for the set of matched elements. + /// The name of the attribute to set. + /// A function returning the value to set. this is the current element. Receives the index position of the element in the set and the old attribute value as arguments. + /// + /// + }, + 'attributeContains': function() { + /// + /// Selects elements that have the specified attribute with a value containing the a given substring. + /// An attribute name. + /// An attribute value. Can be either an unquoted single word or a quoted string. + /// + }, + 'attributeContainsPrefix': function() { + /// + /// Selects elements that have the specified attribute with a value either equal to a given string or starting with that string followed by a hyphen (-). + /// An attribute name. + /// An attribute value. Can be either an unquoted single word or a quoted string. + /// + }, + 'attributeContainsWord': function() { + /// + /// Selects elements that have the specified attribute with a value containing a given word, delimited by spaces. + /// An attribute name. + /// An attribute value. Can be either an unquoted single word or a quoted string. + /// + }, + 'attributeEndsWith': function() { + /// + /// Selects elements that have the specified attribute with a value ending exactly with a given string. The comparison is case sensitive. + /// An attribute name. + /// An attribute value. Can be either an unquoted single word or a quoted string. + /// + }, + 'attributeEquals': function() { + /// + /// Selects elements that have the specified attribute with a value exactly equal to a certain value. + /// An attribute name. + /// An attribute value. Can be either an unquoted single word or a quoted string. + /// + }, + 'attributeHas': function() { + /// + /// Selects elements that have the specified attribute, with any value. + /// An attribute name. + /// + }, + 'attributeMultiple': function() { + /// + /// Matches elements that match all of the specified attribute filters. + /// An attribute filter. + /// Another attribute filter, reducing the selection even more + /// As many more attribute filters as necessary + /// + }, + 'attributeNotEqual': function() { + /// + /// Select elements that either don't have the specified attribute, or do have the specified attribute but not with a certain value. + /// An attribute name. + /// An attribute value. Can be either an unquoted single word or a quoted string. + /// + }, + 'attributeStartsWith': function() { + /// + /// Selects elements that have the specified attribute with a value beginning exactly with a given string. + /// An attribute name. + /// An attribute value. Can be either an unquoted single word or a quoted string. + /// + }, + 'before': function() { + /// + /// Insert content, specified by the parameter, before each element in the set of matched elements. + /// HTML string, DOM element, or jQuery object to insert before each element in the set of matched elements. + /// One or more additional DOM elements, arrays of elements, HTML strings, or jQuery objects to insert before each element in the set of matched elements. + /// + /// + /// + /// Insert content, specified by the parameter, before each element in the set of matched elements. + /// A function that returns an HTML string, DOM element(s), or jQuery object to insert before each element in the set of matched elements. Receives the index position of the element in the set as an argument. Within the function, this refers to the current element in the set. + /// + /// + }, + 'bind': function() { + /// + /// Attach a handler to an event for the elements. + /// A string containing one or more DOM event types, such as "click" or "submit," or custom event names. + /// An object containing data that will be passed to the event handler. + /// A function to execute each time the event is triggered. + /// + /// + /// + /// Attach a handler to an event for the elements. + /// A string containing one or more DOM event types, such as "click" or "submit," or custom event names. + /// An object containing data that will be passed to the event handler. + /// Setting the third argument to false will attach a function that prevents the default action from occurring and stops the event from bubbling. The default is true. + /// + /// + /// + /// Attach a handler to an event for the elements. + /// An object containing one or more DOM event types and functions to execute for them. + /// + /// + }, + 'blur': function() { + /// + /// Bind an event handler to the "blur" JavaScript event, or trigger that event on an element. + /// A function to execute each time the event is triggered. + /// + /// + /// + /// Bind an event handler to the "blur" JavaScript event, or trigger that event on an element. + /// An object containing data that will be passed to the event handler. + /// A function to execute each time the event is triggered. + /// + /// + }, + 'button': function() { + /// Selects all button elements and elements of type button. + }, + 'change': function() { + /// + /// Bind an event handler to the "change" JavaScript event, or trigger that event on an element. + /// A function to execute each time the event is triggered. + /// + /// + /// + /// Bind an event handler to the "change" JavaScript event, or trigger that event on an element. + /// An object containing data that will be passed to the event handler. + /// A function to execute each time the event is triggered. + /// + /// + }, + 'checkbox': function() { + /// Selects all elements of type checkbox. + }, + 'checked': function() { + /// Matches all elements that are checked or selected. + }, + 'child': function() { + /// + /// Selects all direct child elements specified by "child" of elements specified by "parent". + /// Any valid selector. + /// A selector to filter the child elements. + /// + }, + 'children': function() { + /// + /// Get the children of each element in the set of matched elements, optionally filtered by a selector. + /// A string containing a selector expression to match elements against. + /// + /// + }, + 'class': function() { + /// + /// Selects all elements with the given class. + /// A class to search for. An element can have multiple classes; only one of them must match. + /// + }, + 'clearQueue': function() { + /// + /// Remove from the queue all items that have not yet been run. + /// A string containing the name of the queue. Defaults to fx, the standard effects queue. + /// + /// + }, + 'click': function() { + /// + /// Bind an event handler to the "click" JavaScript event, or trigger that event on an element. + /// A function to execute each time the event is triggered. + /// + /// + /// + /// Bind an event handler to the "click" JavaScript event, or trigger that event on an element. + /// An object containing data that will be passed to the event handler. + /// A function to execute each time the event is triggered. + /// + /// + }, + 'clone': function() { + /// + /// Create a deep copy of the set of matched elements. + /// A Boolean indicating whether event handlers should be copied along with the elements. As of jQuery 1.4, element data will be copied as well. + /// + /// + /// + /// Create a deep copy of the set of matched elements. + /// A Boolean indicating whether event handlers and data should be copied along with the elements. The default value is false. *In jQuery 1.5.0 the default value was incorrectly true; it was changed back to false in 1.5.1 and up. + /// A Boolean indicating whether event handlers and data for all children of the cloned element should be copied. By default its value matches the first argument's value (which defaults to false). + /// + /// + }, + 'closest': function() { + /// + /// For each element in the set, get the first element that matches the selector by testing the element itself and traversing up through its ancestors in the DOM tree. + /// A string containing a selector expression to match elements against. + /// + /// + /// + /// For each element in the set, get the first element that matches the selector by testing the element itself and traversing up through its ancestors in the DOM tree. + /// A string containing a selector expression to match elements against. + /// A DOM element within which a matching element may be found. If no context is passed in then the context of the jQuery set will be used instead. + /// + /// + /// + /// For each element in the set, get the first element that matches the selector by testing the element itself and traversing up through its ancestors in the DOM tree. + /// A jQuery object to match elements against. + /// + /// + /// + /// For each element in the set, get the first element that matches the selector by testing the element itself and traversing up through its ancestors in the DOM tree. + /// An element to match elements against. + /// + /// + }, + 'contains': function() { + /// + /// Select all elements that contain the specified text. + /// A string of text to look for. It's case sensitive. + /// + }, + 'contents': function() { + /// Get the children of each element in the set of matched elements, including text and comment nodes. + /// + }, + 'context': function() { + /// The DOM node context originally passed to jQuery(); if none was passed then context will likely be the document. + /// + }, + 'css': function() { + /// + /// Set one or more CSS properties for the set of matched elements. + /// A CSS property name. + /// A value to set for the property. + /// + /// + /// + /// Set one or more CSS properties for the set of matched elements. + /// A CSS property name. + /// A function returning the value to set. this is the current element. Receives the index position of the element in the set and the old value as arguments. + /// + /// + /// + /// Set one or more CSS properties for the set of matched elements. + /// An object of property-value pairs to set. + /// + /// + }, + 'data': function() { + /// + /// Store arbitrary data associated with the matched elements. + /// A string naming the piece of data to set. + /// The new data value; it can be any Javascript type including Array or Object. + /// + /// + /// + /// Store arbitrary data associated with the matched elements. + /// An object of key-value pairs of data to update. + /// + /// + }, + 'dblclick': function() { + /// + /// Bind an event handler to the "dblclick" JavaScript event, or trigger that event on an element. + /// A function to execute each time the event is triggered. + /// + /// + /// + /// Bind an event handler to the "dblclick" JavaScript event, or trigger that event on an element. + /// An object containing data that will be passed to the event handler. + /// A function to execute each time the event is triggered. + /// + /// + }, + 'delay': function() { + /// + /// Set a timer to delay execution of subsequent items in the queue. + /// An integer indicating the number of milliseconds to delay execution of the next item in the queue. + /// A string containing the name of the queue. Defaults to fx, the standard effects queue. + /// + /// + }, + 'delegate': function() { + /// + /// Attach a handler to one or more events for all elements that match the selector, now or in the future, based on a specific set of root elements. + /// A selector to filter the elements that trigger the event. + /// A string containing one or more space-separated JavaScript event types, such as "click" or "keydown," or custom event names. + /// A function to execute at the time the event is triggered. + /// + /// + /// + /// Attach a handler to one or more events for all elements that match the selector, now or in the future, based on a specific set of root elements. + /// A selector to filter the elements that trigger the event. + /// A string containing one or more space-separated JavaScript event types, such as "click" or "keydown," or custom event names. + /// An object containing data that will be passed to the event handler. + /// A function to execute at the time the event is triggered. + /// + /// + /// + /// Attach a handler to one or more events for all elements that match the selector, now or in the future, based on a specific set of root elements. + /// A selector to filter the elements that trigger the event. + /// A plain object of one or more event types and functions to execute for them. + /// + /// + }, + 'dequeue': function() { + /// + /// Execute the next function on the queue for the matched elements. + /// A string containing the name of the queue. Defaults to fx, the standard effects queue. + /// + /// + }, + 'descendant': function() { + /// + /// Selects all elements that are descendants of a given ancestor. + /// Any valid selector. + /// A selector to filter the descendant elements. + /// + }, + 'detach': function() { + /// + /// Remove the set of matched elements from the DOM. + /// A selector expression that filters the set of matched elements to be removed. + /// + /// + }, + 'die': function() { + /// + /// Remove event handlers previously attached using .live() from the elements. + /// A string containing a JavaScript event type, such as click or keydown. + /// The function that is no longer to be executed. + /// + /// + /// + /// Remove event handlers previously attached using .live() from the elements. + /// A plain object of one or more event types, such as click or keydown and their corresponding functions that are no longer to be executed. + /// + /// + }, + 'disabled': function() { + /// Selects all elements that are disabled. + }, + 'each': function() { + /// + /// Iterate over a jQuery object, executing a function for each matched element. + /// A function to execute for each matched element. + /// + /// + }, + 'element': function() { + /// + /// Selects all elements with the given tag name. + /// An element to search for. Refers to the tagName of DOM nodes. + /// + }, + 'empty': function() { + /// Select all elements that have no children (including text nodes). + }, + 'enabled': function() { + /// Selects all elements that are enabled. + }, + 'end': function() { + /// End the most recent filtering operation in the current chain and return the set of matched elements to its previous state. + /// + }, + 'eq': function() { + /// + /// Select the element at index n within the matched set. + /// Zero-based index of the element to match. + /// + /// + /// Select the element at index n within the matched set. + /// Zero-based index of the element to match, counting backwards from the last element. + /// + }, + 'error': function() { + /// + /// Bind an event handler to the "error" JavaScript event. + /// A function to execute when the event is triggered. + /// + /// + /// + /// Bind an event handler to the "error" JavaScript event. + /// An object containing data that will be passed to the event handler. + /// A function to execute each time the event is triggered. + /// + /// + }, + 'even': function() { + /// Selects even elements, zero-indexed. See also odd. + }, + 'fadeIn': function() { + /// + /// Display the matched elements by fading them to opaque. + /// A string or number determining how long the animation will run. + /// A function to call once the animation is complete. + /// + /// + /// + /// Display the matched elements by fading them to opaque. + /// A map of additional options to pass to the method. + /// + /// + /// + /// Display the matched elements by fading them to opaque. + /// A string or number determining how long the animation will run. + /// A string indicating which easing function to use for the transition. + /// A function to call once the animation is complete. + /// + /// + }, + 'fadeOut': function() { + /// + /// Hide the matched elements by fading them to transparent. + /// A string or number determining how long the animation will run. + /// A function to call once the animation is complete. + /// + /// + /// + /// Hide the matched elements by fading them to transparent. + /// A map of additional options to pass to the method. + /// + /// + /// + /// Hide the matched elements by fading them to transparent. + /// A string or number determining how long the animation will run. + /// A string indicating which easing function to use for the transition. + /// A function to call once the animation is complete. + /// + /// + }, + 'fadeTo': function() { + /// + /// Adjust the opacity of the matched elements. + /// A string or number determining how long the animation will run. + /// A number between 0 and 1 denoting the target opacity. + /// A function to call once the animation is complete. + /// + /// + /// + /// Adjust the opacity of the matched elements. + /// A string or number determining how long the animation will run. + /// A number between 0 and 1 denoting the target opacity. + /// A string indicating which easing function to use for the transition. + /// A function to call once the animation is complete. + /// + /// + }, + 'fadeToggle': function() { + /// + /// Display or hide the matched elements by animating their opacity. + /// A string or number determining how long the animation will run. + /// A string indicating which easing function to use for the transition. + /// A function to call once the animation is complete. + /// + /// + /// + /// Display or hide the matched elements by animating their opacity. + /// A map of additional options to pass to the method. + /// + /// + }, + 'file': function() { + /// Selects all elements of type file. + }, + 'filter': function() { + /// + /// Reduce the set of matched elements to those that match the selector or pass the function's test. + /// A string containing a selector expression to match the current set of elements against. + /// + /// + /// + /// Reduce the set of matched elements to those that match the selector or pass the function's test. + /// A function used as a test for each element in the set. this is the current DOM element. + /// + /// + /// + /// Reduce the set of matched elements to those that match the selector or pass the function's test. + /// An element to match the current set of elements against. + /// + /// + /// + /// Reduce the set of matched elements to those that match the selector or pass the function's test. + /// An existing jQuery object to match the current set of elements against. + /// + /// + }, + 'find': function() { + /// + /// Get the descendants of each element in the current set of matched elements, filtered by a selector, jQuery object, or element. + /// A string containing a selector expression to match elements against. + /// + /// + /// + /// Get the descendants of each element in the current set of matched elements, filtered by a selector, jQuery object, or element. + /// A jQuery object to match elements against. + /// + /// + /// + /// Get the descendants of each element in the current set of matched elements, filtered by a selector, jQuery object, or element. + /// An element to match elements against. + /// + /// + }, + 'finish': function() { + /// + /// Stop the currently-running animation, remove all queued animations, and complete all animations for the matched elements. + /// The name of the queue in which to stop animations. + /// + /// + }, + 'first': function() { + /// Selects the first matched element. + }, + 'first-child': function() { + /// Selects all elements that are the first child of their parent. + }, + 'first-of-type': function() { + /// Selects all elements that are the first among siblings of the same element name. + }, + 'focus': function() { + /// + /// Bind an event handler to the "focus" JavaScript event, or trigger that event on an element. + /// A function to execute each time the event is triggered. + /// + /// + /// + /// Bind an event handler to the "focus" JavaScript event, or trigger that event on an element. + /// An object containing data that will be passed to the event handler. + /// A function to execute each time the event is triggered. + /// + /// + }, + 'focusin': function() { + /// + /// Bind an event handler to the "focusin" event. + /// A function to execute each time the event is triggered. + /// + /// + /// + /// Bind an event handler to the "focusin" event. + /// An object containing data that will be passed to the event handler. + /// A function to execute each time the event is triggered. + /// + /// + }, + 'focusout': function() { + /// + /// Bind an event handler to the "focusout" JavaScript event. + /// A function to execute each time the event is triggered. + /// + /// + /// + /// Bind an event handler to the "focusout" JavaScript event. + /// An object containing data that will be passed to the event handler. + /// A function to execute each time the event is triggered. + /// + /// + }, + 'get': function() { + /// + /// Retrieve one of the DOM elements matched by the jQuery object. + /// A zero-based integer indicating which element to retrieve. + /// + /// + }, + 'gt': function() { + /// + /// Select all elements at an index greater than index within the matched set. + /// Zero-based index. + /// + /// + /// Select all elements at an index greater than index within the matched set. + /// Zero-based index, counting backwards from the last element. + /// + }, + 'has': function() { + /// + /// Reduce the set of matched elements to those that have a descendant that matches the selector or DOM element. + /// A string containing a selector expression to match elements against. + /// + /// + /// + /// Reduce the set of matched elements to those that have a descendant that matches the selector or DOM element. + /// A DOM element to match elements against. + /// + /// + }, + 'hasClass': function() { + /// + /// Determine whether any of the matched elements are assigned the given class. + /// The class name to search for. + /// + /// + }, + 'header': function() { + /// Selects all elements that are headers, like h1, h2, h3 and so on. + }, + 'height': function() { + /// + /// Set the CSS height of every matched element. + /// An integer representing the number of pixels, or an integer with an optional unit of measure appended (as a string). + /// + /// + /// + /// Set the CSS height of every matched element. + /// A function returning the height to set. Receives the index position of the element in the set and the old height as arguments. Within the function, this refers to the current element in the set. + /// + /// + }, + 'hidden': function() { + /// Selects all elements that are hidden. + }, + 'hide': function() { + /// + /// Hide the matched elements. + /// A string or number determining how long the animation will run. + /// A function to call once the animation is complete. + /// + /// + /// + /// Hide the matched elements. + /// A map of additional options to pass to the method. + /// + /// + /// + /// Hide the matched elements. + /// A string or number determining how long the animation will run. + /// A string indicating which easing function to use for the transition. + /// A function to call once the animation is complete. + /// + /// + }, + 'hover': function() { + /// + /// Bind two handlers to the matched elements, to be executed when the mouse pointer enters and leaves the elements. + /// A function to execute when the mouse pointer enters the element. + /// A function to execute when the mouse pointer leaves the element. + /// + /// + }, + 'html': function() { + /// + /// Set the HTML contents of each element in the set of matched elements. + /// A string of HTML to set as the content of each matched element. + /// + /// + /// + /// Set the HTML contents of each element in the set of matched elements. + /// A function returning the HTML content to set. Receives the index position of the element in the set and the old HTML value as arguments. jQuery empties the element before calling the function; use the oldhtml argument to reference the previous content. Within the function, this refers to the current element in the set. + /// + /// + }, + 'id': function() { + /// + /// Selects a single element with the given id attribute. + /// An ID to search for, specified via the id attribute of an element. + /// + }, + 'image': function() { + /// Selects all elements of type image. + }, + 'index': function() { + /// + /// Search for a given element from among the matched elements. + /// A selector representing a jQuery collection in which to look for an element. + /// + /// + /// + /// Search for a given element from among the matched elements. + /// The DOM element or first element within the jQuery object to look for. + /// + /// + }, + 'init': function() { + /// + /// Accepts a string containing a CSS selector which is then used to match a set of elements. + /// A string containing a selector expression + /// A DOM Element, Document, or jQuery to use as context + /// + /// + /// + /// Accepts a string containing a CSS selector which is then used to match a set of elements. + /// A DOM element to wrap in a jQuery object. + /// + /// + /// + /// Accepts a string containing a CSS selector which is then used to match a set of elements. + /// An array containing a set of DOM elements to wrap in a jQuery object. + /// + /// + /// + /// Accepts a string containing a CSS selector which is then used to match a set of elements. + /// A plain object to wrap in a jQuery object. + /// + /// + /// + /// Accepts a string containing a CSS selector which is then used to match a set of elements. + /// An existing jQuery object to clone. + /// + /// + }, + 'innerHeight': function() { + /// Get the current computed height for the first element in the set of matched elements, including padding but not border. + /// + }, + 'innerWidth': function() { + /// Get the current computed width for the first element in the set of matched elements, including padding but not border. + /// + }, + 'input': function() { + /// Selects all input, textarea, select and button elements. + }, + 'insertAfter': function() { + /// + /// Insert every element in the set of matched elements after the target. + /// A selector, element, HTML string, or jQuery object; the matched set of elements will be inserted after the element(s) specified by this parameter. + /// + /// + }, + 'insertBefore': function() { + /// + /// Insert every element in the set of matched elements before the target. + /// A selector, element, HTML string, or jQuery object; the matched set of elements will be inserted before the element(s) specified by this parameter. + /// + /// + }, + 'is': function() { + /// + /// Check the current matched set of elements against a selector, element, or jQuery object and return true if at least one of these elements matches the given arguments. + /// A string containing a selector expression to match elements against. + /// + /// + /// + /// Check the current matched set of elements against a selector, element, or jQuery object and return true if at least one of these elements matches the given arguments. + /// A function used as a test for the set of elements. It accepts one argument, index, which is the element's index in the jQuery collection.Within the function, this refers to the current DOM element. + /// + /// + /// + /// Check the current matched set of elements against a selector, element, or jQuery object and return true if at least one of these elements matches the given arguments. + /// An existing jQuery object to match the current set of elements against. + /// + /// + /// + /// Check the current matched set of elements against a selector, element, or jQuery object and return true if at least one of these elements matches the given arguments. + /// An element to match the current set of elements against. + /// + /// + }, + 'jquery': function() { + /// A string containing the jQuery version number. + /// + }, + 'keydown': function() { + /// + /// Bind an event handler to the "keydown" JavaScript event, or trigger that event on an element. + /// A function to execute each time the event is triggered. + /// + /// + /// + /// Bind an event handler to the "keydown" JavaScript event, or trigger that event on an element. + /// An object containing data that will be passed to the event handler. + /// A function to execute each time the event is triggered. + /// + /// + }, + 'keypress': function() { + /// + /// Bind an event handler to the "keypress" JavaScript event, or trigger that event on an element. + /// A function to execute each time the event is triggered. + /// + /// + /// + /// Bind an event handler to the "keypress" JavaScript event, or trigger that event on an element. + /// An object containing data that will be passed to the event handler. + /// A function to execute each time the event is triggered. + /// + /// + }, + 'keyup': function() { + /// + /// Bind an event handler to the "keyup" JavaScript event, or trigger that event on an element. + /// A function to execute each time the event is triggered. + /// + /// + /// + /// Bind an event handler to the "keyup" JavaScript event, or trigger that event on an element. + /// An object containing data that will be passed to the event handler. + /// A function to execute each time the event is triggered. + /// + /// + }, + 'lang': function() { + /// + /// Selects all elements of the specified language. + /// A language code. + /// + }, + 'last': function() { + /// Selects the last matched element. + }, + 'last-child': function() { + /// Selects all elements that are the last child of their parent. + }, + 'last-of-type': function() { + /// Selects all elements that are the last among siblings of the same element name. + }, + 'length': function() { + /// The number of elements in the jQuery object. + /// + }, + 'live': function() { + /// + /// Attach an event handler for all elements which match the current selector, now and in the future. + /// A string containing a JavaScript event type, such as "click" or "keydown." As of jQuery 1.4 the string can contain multiple, space-separated event types or custom event names. + /// A function to execute at the time the event is triggered. + /// + /// + /// + /// Attach an event handler for all elements which match the current selector, now and in the future. + /// A string containing a JavaScript event type, such as "click" or "keydown." As of jQuery 1.4 the string can contain multiple, space-separated event types or custom event names. + /// An object containing data that will be passed to the event handler. + /// A function to execute at the time the event is triggered. + /// + /// + /// + /// Attach an event handler for all elements which match the current selector, now and in the future. + /// A plain object of one or more JavaScript event types and functions to execute for them. + /// + /// + }, + 'load': function() { + /// + /// Bind an event handler to the "load" JavaScript event. + /// A function to execute when the event is triggered. + /// + /// + /// + /// Bind an event handler to the "load" JavaScript event. + /// An object containing data that will be passed to the event handler. + /// A function to execute each time the event is triggered. + /// + /// + }, + 'lt': function() { + /// + /// Select all elements at an index less than index within the matched set. + /// Zero-based index. + /// + /// + /// Select all elements at an index less than index within the matched set. + /// Zero-based index, counting backwards from the last element. + /// + }, + 'map': function() { + /// + /// Pass each element in the current matched set through a function, producing a new jQuery object containing the return values. + /// A function object that will be invoked for each element in the current set. + /// + /// + }, + 'mousedown': function() { + /// + /// Bind an event handler to the "mousedown" JavaScript event, or trigger that event on an element. + /// A function to execute each time the event is triggered. + /// + /// + /// + /// Bind an event handler to the "mousedown" JavaScript event, or trigger that event on an element. + /// An object containing data that will be passed to the event handler. + /// A function to execute each time the event is triggered. + /// + /// + }, + 'mouseenter': function() { + /// + /// Bind an event handler to be fired when the mouse enters an element, or trigger that handler on an element. + /// A function to execute each time the event is triggered. + /// + /// + /// + /// Bind an event handler to be fired when the mouse enters an element, or trigger that handler on an element. + /// An object containing data that will be passed to the event handler. + /// A function to execute each time the event is triggered. + /// + /// + }, + 'mouseleave': function() { + /// + /// Bind an event handler to be fired when the mouse leaves an element, or trigger that handler on an element. + /// A function to execute each time the event is triggered. + /// + /// + /// + /// Bind an event handler to be fired when the mouse leaves an element, or trigger that handler on an element. + /// An object containing data that will be passed to the event handler. + /// A function to execute each time the event is triggered. + /// + /// + }, + 'mousemove': function() { + /// + /// Bind an event handler to the "mousemove" JavaScript event, or trigger that event on an element. + /// A function to execute each time the event is triggered. + /// + /// + /// + /// Bind an event handler to the "mousemove" JavaScript event, or trigger that event on an element. + /// An object containing data that will be passed to the event handler. + /// A function to execute each time the event is triggered. + /// + /// + }, + 'mouseout': function() { + /// + /// Bind an event handler to the "mouseout" JavaScript event, or trigger that event on an element. + /// A function to execute each time the event is triggered. + /// + /// + /// + /// Bind an event handler to the "mouseout" JavaScript event, or trigger that event on an element. + /// An object containing data that will be passed to the event handler. + /// A function to execute each time the event is triggered. + /// + /// + }, + 'mouseover': function() { + /// + /// Bind an event handler to the "mouseover" JavaScript event, or trigger that event on an element. + /// A function to execute each time the event is triggered. + /// + /// + /// + /// Bind an event handler to the "mouseover" JavaScript event, or trigger that event on an element. + /// An object containing data that will be passed to the event handler. + /// A function to execute each time the event is triggered. + /// + /// + }, + 'mouseup': function() { + /// + /// Bind an event handler to the "mouseup" JavaScript event, or trigger that event on an element. + /// A function to execute each time the event is triggered. + /// + /// + /// + /// Bind an event handler to the "mouseup" JavaScript event, or trigger that event on an element. + /// An object containing data that will be passed to the event handler. + /// A function to execute each time the event is triggered. + /// + /// + }, + 'multiple': function() { + /// + /// Selects the combined results of all the specified selectors. + /// Any valid selector. + /// Another valid selector. + /// As many more valid selectors as you like. + /// + }, + 'next': function() { + /// + /// Get the immediately following sibling of each element in the set of matched elements. If a selector is provided, it retrieves the next sibling only if it matches that selector. + /// A string containing a selector expression to match elements against. + /// + /// + }, + 'next adjacent': function() { + /// + /// Selects all next elements matching "next" that are immediately preceded by a sibling "prev". + /// Any valid selector. + /// A selector to match the element that is next to the first selector. + /// + }, + 'next siblings': function() { + /// + /// Selects all sibling elements that follow after the "prev" element, have the same parent, and match the filtering "siblings" selector. + /// Any valid selector. + /// A selector to filter elements that are the following siblings of the first selector. + /// + }, + 'nextAll': function() { + /// + /// Get all following siblings of each element in the set of matched elements, optionally filtered by a selector. + /// A string containing a selector expression to match elements against. + /// + /// + }, + 'nextUntil': function() { + /// + /// Get all following siblings of each element up to but not including the element matched by the selector, DOM node, or jQuery object passed. + /// A string containing a selector expression to indicate where to stop matching following sibling elements. + /// A string containing a selector expression to match elements against. + /// + /// + /// + /// Get all following siblings of each element up to but not including the element matched by the selector, DOM node, or jQuery object passed. + /// A DOM node or jQuery object indicating where to stop matching following sibling elements. + /// A string containing a selector expression to match elements against. + /// + /// + }, + 'not': function() { + /// + /// Remove elements from the set of matched elements. + /// A string containing a selector expression to match elements against. + /// + /// + /// + /// Remove elements from the set of matched elements. + /// One or more DOM elements to remove from the matched set. + /// + /// + /// + /// Remove elements from the set of matched elements. + /// A function used as a test for each element in the set. this is the current DOM element. + /// + /// + /// + /// Remove elements from the set of matched elements. + /// An existing jQuery object to match the current set of elements against. + /// + /// + }, + 'nth-child': function() { + /// + /// Selects all elements that are the nth-child of their parent. + /// The index of each child to match, starting with 1, the string even or odd, or an equation ( eg. :nth-child(even), :nth-child(4n) ) + /// + }, + 'nth-last-child': function() { + /// + /// Selects all elements that are the nth-child of their parent, counting from the last element to the first. + /// The index of each child to match, starting with the last one (1), the string even or odd, or an equation ( eg. :nth-last-child(even), :nth-last-child(4n) ) + /// + }, + 'nth-last-of-type': function() { + /// + /// Selects all elements that are the nth-child of their parent, counting from the last element to the first. + /// The index of each child to match, starting with the last one (1), the string even or odd, or an equation ( eg. :nth-last-of-type(even), :nth-last-of-type(4n) ) + /// + }, + 'nth-of-type': function() { + /// + /// Selects all elements that are the nth child of their parent in relation to siblings with the same element name. + /// The index of each child to match, starting with 1, the string even or odd, or an equation ( eg. :nth-of-type(even), :nth-of-type(4n) ) + /// + }, + 'odd': function() { + /// Selects odd elements, zero-indexed. See also even. + }, + 'off': function() { + /// + /// Remove an event handler. + /// One or more space-separated event types and optional namespaces, or just namespaces, such as "click", "keydown.myPlugin", or ".myPlugin". + /// A selector which should match the one originally passed to .on() when attaching event handlers. + /// A handler function previously attached for the event(s), or the special value false. + /// + /// + /// + /// Remove an event handler. + /// An object where the string keys represent one or more space-separated event types and optional namespaces, and the values represent handler functions previously attached for the event(s). + /// A selector which should match the one originally passed to .on() when attaching event handlers. + /// + /// + }, + 'offset': function() { + /// + /// Set the current coordinates of every element in the set of matched elements, relative to the document. + /// An object containing the properties top and left, which are integers indicating the new top and left coordinates for the elements. + /// + /// + /// + /// Set the current coordinates of every element in the set of matched elements, relative to the document. + /// A function to return the coordinates to set. Receives the index of the element in the collection as the first argument and the current coordinates as the second argument. The function should return an object with the new top and left properties. + /// + /// + }, + 'offsetParent': function() { + /// Get the closest ancestor element that is positioned. + /// + }, + 'on': function() { + /// + /// Attach an event handler function for one or more events to the selected elements. + /// One or more space-separated event types and optional namespaces, such as "click" or "keydown.myPlugin". + /// A selector string to filter the descendants of the selected elements that trigger the event. If the selector is null or omitted, the event is always triggered when it reaches the selected element. + /// Data to be passed to the handler in event.data when an event is triggered. + /// A function to execute when the event is triggered. The value false is also allowed as a shorthand for a function that simply does return false. + /// + /// + /// + /// Attach an event handler function for one or more events to the selected elements. + /// An object in which the string keys represent one or more space-separated event types and optional namespaces, and the values represent a handler function to be called for the event(s). + /// A selector string to filter the descendants of the selected elements that will call the handler. If the selector is null or omitted, the handler is always called when it reaches the selected element. + /// Data to be passed to the handler in event.data when an event occurs. + /// + /// + }, + 'one': function() { + /// + /// Attach a handler to an event for the elements. The handler is executed at most once per element. + /// A string containing one or more JavaScript event types, such as "click" or "submit," or custom event names. + /// An object containing data that will be passed to the event handler. + /// A function to execute at the time the event is triggered. + /// + /// + /// + /// Attach a handler to an event for the elements. The handler is executed at most once per element. + /// One or more space-separated event types and optional namespaces, such as "click" or "keydown.myPlugin". + /// A selector string to filter the descendants of the selected elements that trigger the event. If the selector is null or omitted, the event is always triggered when it reaches the selected element. + /// Data to be passed to the handler in event.data when an event is triggered. + /// A function to execute when the event is triggered. The value false is also allowed as a shorthand for a function that simply does return false. + /// + /// + /// + /// Attach a handler to an event for the elements. The handler is executed at most once per element. + /// An object in which the string keys represent one or more space-separated event types and optional namespaces, and the values represent a handler function to be called for the event(s). + /// A selector string to filter the descendants of the selected elements that will call the handler. If the selector is null or omitted, the handler is always called when it reaches the selected element. + /// Data to be passed to the handler in event.data when an event occurs. + /// + /// + }, + 'only-child': function() { + /// Selects all elements that are the only child of their parent. + }, + 'only-of-type': function() { + /// Selects all elements that have no siblings with the same element name. + }, + 'outerHeight': function() { + /// + /// Get the current computed height for the first element in the set of matched elements, including padding, border, and optionally margin. Returns an integer (without "px") representation of the value or null if called on an empty set of elements. + /// A Boolean indicating whether to include the element's margin in the calculation. + /// + /// + }, + 'outerWidth': function() { + /// + /// Get the current computed width for the first element in the set of matched elements, including padding and border. + /// A Boolean indicating whether to include the element's margin in the calculation. + /// + /// + }, + 'parent': function() { + /// + /// Get the parent of each element in the current set of matched elements, optionally filtered by a selector. + /// A string containing a selector expression to match elements against. + /// + /// + }, + 'parents': function() { + /// + /// Get the ancestors of each element in the current set of matched elements, optionally filtered by a selector. + /// A string containing a selector expression to match elements against. + /// + /// + }, + 'parentsUntil': function() { + /// + /// Get the ancestors of each element in the current set of matched elements, up to but not including the element matched by the selector, DOM node, or jQuery object. + /// A string containing a selector expression to indicate where to stop matching ancestor elements. + /// A string containing a selector expression to match elements against. + /// + /// + /// + /// Get the ancestors of each element in the current set of matched elements, up to but not including the element matched by the selector, DOM node, or jQuery object. + /// A DOM node or jQuery object indicating where to stop matching ancestor elements. + /// A string containing a selector expression to match elements against. + /// + /// + }, + 'password': function() { + /// Selects all elements of type password. + }, + 'position': function() { + /// Get the current coordinates of the first element in the set of matched elements, relative to the offset parent. + /// + }, + 'prepend': function() { + /// + /// Insert content, specified by the parameter, to the beginning of each element in the set of matched elements. + /// DOM element, array of elements, HTML string, or jQuery object to insert at the beginning of each element in the set of matched elements. + /// One or more additional DOM elements, arrays of elements, HTML strings, or jQuery objects to insert at the beginning of each element in the set of matched elements. + /// + /// + /// + /// Insert content, specified by the parameter, to the beginning of each element in the set of matched elements. + /// A function that returns an HTML string, DOM element(s), or jQuery object to insert at the beginning of each element in the set of matched elements. Receives the index position of the element in the set and the old HTML value of the element as arguments. Within the function, this refers to the current element in the set. + /// + /// + }, + 'prependTo': function() { + /// + /// Insert every element in the set of matched elements to the beginning of the target. + /// A selector, element, HTML string, or jQuery object; the matched set of elements will be inserted at the beginning of the element(s) specified by this parameter. + /// + /// + }, + 'prev': function() { + /// + /// Get the immediately preceding sibling of each element in the set of matched elements, optionally filtered by a selector. + /// A string containing a selector expression to match elements against. + /// + /// + }, + 'prevAll': function() { + /// + /// Get all preceding siblings of each element in the set of matched elements, optionally filtered by a selector. + /// A string containing a selector expression to match elements against. + /// + /// + }, + 'prevUntil': function() { + /// + /// Get all preceding siblings of each element up to but not including the element matched by the selector, DOM node, or jQuery object. + /// A string containing a selector expression to indicate where to stop matching preceding sibling elements. + /// A string containing a selector expression to match elements against. + /// + /// + /// + /// Get all preceding siblings of each element up to but not including the element matched by the selector, DOM node, or jQuery object. + /// A DOM node or jQuery object indicating where to stop matching preceding sibling elements. + /// A string containing a selector expression to match elements against. + /// + /// + }, + 'promise': function() { + /// + /// Return a Promise object to observe when all actions of a certain type bound to the collection, queued or not, have finished. + /// The type of queue that needs to be observed. + /// Object onto which the promise methods have to be attached + /// + /// + }, + 'prop': function() { + /// + /// Set one or more properties for the set of matched elements. + /// The name of the property to set. + /// A value to set for the property. + /// + /// + /// + /// Set one or more properties for the set of matched elements. + /// An object of property-value pairs to set. + /// + /// + /// + /// Set one or more properties for the set of matched elements. + /// The name of the property to set. + /// A function returning the value to set. Receives the index position of the element in the set and the old property value as arguments. Within the function, the keyword this refers to the current element. + /// + /// + }, + 'pushStack': function() { + /// + /// Add a collection of DOM elements onto the jQuery stack. + /// An array of elements to push onto the stack and make into a new jQuery object. + /// + /// + /// + /// Add a collection of DOM elements onto the jQuery stack. + /// An array of elements to push onto the stack and make into a new jQuery object. + /// The name of a jQuery method that generated the array of elements. + /// The arguments that were passed in to the jQuery method (for serialization). + /// + /// + }, + 'queue': function() { + /// + /// Manipulate the queue of functions to be executed, once for each matched element. + /// A string containing the name of the queue. Defaults to fx, the standard effects queue. + /// An array of functions to replace the current queue contents. + /// + /// + /// + /// Manipulate the queue of functions to be executed, once for each matched element. + /// A string containing the name of the queue. Defaults to fx, the standard effects queue. + /// The new function to add to the queue, with a function to call that will dequeue the next item. + /// + /// + }, + 'radio': function() { + /// Selects all elements of type radio. + }, + 'ready': function() { + /// + /// Specify a function to execute when the DOM is fully loaded. + /// A function to execute after the DOM is ready. + /// + /// + }, + 'remove': function() { + /// + /// Remove the set of matched elements from the DOM. + /// A selector expression that filters the set of matched elements to be removed. + /// + /// + }, + 'removeAttr': function() { + /// + /// Remove an attribute from each element in the set of matched elements. + /// An attribute to remove; as of version 1.7, it can be a space-separated list of attributes. + /// + /// + }, + 'removeClass': function() { + /// + /// Remove a single class, multiple classes, or all classes from each element in the set of matched elements. + /// One or more space-separated classes to be removed from the class attribute of each matched element. + /// + /// + /// + /// Remove a single class, multiple classes, or all classes from each element in the set of matched elements. + /// A function returning one or more space-separated class names to be removed. Receives the index position of the element in the set and the old class value as arguments. + /// + /// + }, + 'removeData': function() { + /// + /// Remove a previously-stored piece of data. + /// A string naming the piece of data to delete. + /// + /// + /// + /// Remove a previously-stored piece of data. + /// An array or space-separated string naming the pieces of data to delete. + /// + /// + }, + 'removeProp': function() { + /// + /// Remove a property for the set of matched elements. + /// The name of the property to remove. + /// + /// + }, + 'replaceAll': function() { + /// + /// Replace each target element with the set of matched elements. + /// A selector string, jQuery object, or DOM element reference indicating which element(s) to replace. + /// + /// + }, + 'replaceWith': function() { + /// + /// Replace each element in the set of matched elements with the provided new content and return the set of elements that was removed. + /// The content to insert. May be an HTML string, DOM element, or jQuery object. + /// + /// + /// + /// Replace each element in the set of matched elements with the provided new content and return the set of elements that was removed. + /// A function that returns content with which to replace the set of matched elements. + /// + /// + }, + 'reset': function() { + /// Selects all elements of type reset. + }, + 'resize': function() { + /// + /// Bind an event handler to the "resize" JavaScript event, or trigger that event on an element. + /// A function to execute each time the event is triggered. + /// + /// + /// + /// Bind an event handler to the "resize" JavaScript event, or trigger that event on an element. + /// An object containing data that will be passed to the event handler. + /// A function to execute each time the event is triggered. + /// + /// + }, + 'root': function() { + /// Selects the element that is the root of the document. + }, + 'scroll': function() { + /// + /// Bind an event handler to the "scroll" JavaScript event, or trigger that event on an element. + /// A function to execute each time the event is triggered. + /// + /// + /// + /// Bind an event handler to the "scroll" JavaScript event, or trigger that event on an element. + /// An object containing data that will be passed to the event handler. + /// A function to execute each time the event is triggered. + /// + /// + }, + 'scrollLeft': function() { + /// + /// Set the current horizontal position of the scroll bar for each of the set of matched elements. + /// An integer indicating the new position to set the scroll bar to. + /// + /// + }, + 'scrollTop': function() { + /// + /// Set the current vertical position of the scroll bar for each of the set of matched elements. + /// An integer indicating the new position to set the scroll bar to. + /// + /// + }, + 'select': function() { + /// + /// Bind an event handler to the "select" JavaScript event, or trigger that event on an element. + /// A function to execute each time the event is triggered. + /// + /// + /// + /// Bind an event handler to the "select" JavaScript event, or trigger that event on an element. + /// An object containing data that will be passed to the event handler. + /// A function to execute each time the event is triggered. + /// + /// + }, + 'selected': function() { + /// Selects all elements that are selected. + }, + 'selector': function() { + /// A selector representing selector passed to jQuery(), if any, when creating the original set. + /// + }, + 'serialize': function() { + /// Encode a set of form elements as a string for submission. + /// + }, + 'serializeArray': function() { + /// Encode a set of form elements as an array of names and values. + /// + }, + 'show': function() { + /// + /// Display the matched elements. + /// A string or number determining how long the animation will run. + /// A function to call once the animation is complete. + /// + /// + /// + /// Display the matched elements. + /// A map of additional options to pass to the method. + /// + /// + /// + /// Display the matched elements. + /// A string or number determining how long the animation will run. + /// A string indicating which easing function to use for the transition. + /// A function to call once the animation is complete. + /// + /// + }, + 'siblings': function() { + /// + /// Get the siblings of each element in the set of matched elements, optionally filtered by a selector. + /// A string containing a selector expression to match elements against. + /// + /// + }, + 'size': function() { + /// Return the number of elements in the jQuery object. + /// + }, + 'slice': function() { + /// + /// Reduce the set of matched elements to a subset specified by a range of indices. + /// An integer indicating the 0-based position at which the elements begin to be selected. If negative, it indicates an offset from the end of the set. + /// An integer indicating the 0-based position at which the elements stop being selected. If negative, it indicates an offset from the end of the set. If omitted, the range continues until the end of the set. + /// + /// + }, + 'slideDown': function() { + /// + /// Display the matched elements with a sliding motion. + /// A string or number determining how long the animation will run. + /// A function to call once the animation is complete. + /// + /// + /// + /// Display the matched elements with a sliding motion. + /// A map of additional options to pass to the method. + /// + /// + /// + /// Display the matched elements with a sliding motion. + /// A string or number determining how long the animation will run. + /// A string indicating which easing function to use for the transition. + /// A function to call once the animation is complete. + /// + /// + }, + 'slideToggle': function() { + /// + /// Display or hide the matched elements with a sliding motion. + /// A string or number determining how long the animation will run. + /// A function to call once the animation is complete. + /// + /// + /// + /// Display or hide the matched elements with a sliding motion. + /// A map of additional options to pass to the method. + /// + /// + /// + /// Display or hide the matched elements with a sliding motion. + /// A string or number determining how long the animation will run. + /// A string indicating which easing function to use for the transition. + /// A function to call once the animation is complete. + /// + /// + }, + 'slideUp': function() { + /// + /// Hide the matched elements with a sliding motion. + /// A string or number determining how long the animation will run. + /// A function to call once the animation is complete. + /// + /// + /// + /// Hide the matched elements with a sliding motion. + /// A map of additional options to pass to the method. + /// + /// + /// + /// Hide the matched elements with a sliding motion. + /// A string or number determining how long the animation will run. + /// A string indicating which easing function to use for the transition. + /// A function to call once the animation is complete. + /// + /// + }, + 'stop': function() { + /// + /// Stop the currently-running animation on the matched elements. + /// A Boolean indicating whether to remove queued animation as well. Defaults to false. + /// A Boolean indicating whether to complete the current animation immediately. Defaults to false. + /// + /// + /// + /// Stop the currently-running animation on the matched elements. + /// The name of the queue in which to stop animations. + /// A Boolean indicating whether to remove queued animation as well. Defaults to false. + /// A Boolean indicating whether to complete the current animation immediately. Defaults to false. + /// + /// + }, + 'submit': function() { + /// + /// Bind an event handler to the "submit" JavaScript event, or trigger that event on an element. + /// A function to execute each time the event is triggered. + /// + /// + /// + /// Bind an event handler to the "submit" JavaScript event, or trigger that event on an element. + /// An object containing data that will be passed to the event handler. + /// A function to execute each time the event is triggered. + /// + /// + }, + 'target': function() { + /// Selects the target element indicated by the fragment identifier of the document's URI. + }, + 'text': function() { + /// + /// Set the content of each element in the set of matched elements to the specified text. + /// A string of text to set as the content of each matched element. + /// + /// + /// + /// Set the content of each element in the set of matched elements to the specified text. + /// A function returning the text content to set. Receives the index position of the element in the set and the old text value as arguments. + /// + /// + }, + 'toArray': function() { + /// Retrieve all the DOM elements contained in the jQuery set, as an array. + /// + }, + 'toggle': function() { + /// + /// Display or hide the matched elements. + /// A string or number determining how long the animation will run. + /// A function to call once the animation is complete. + /// + /// + /// + /// Display or hide the matched elements. + /// A map of additional options to pass to the method. + /// + /// + /// + /// Display or hide the matched elements. + /// A string or number determining how long the animation will run. + /// A string indicating which easing function to use for the transition. + /// A function to call once the animation is complete. + /// + /// + /// + /// Display or hide the matched elements. + /// A Boolean indicating whether to show or hide the elements. + /// + /// + }, + 'toggleClass': function() { + /// + /// Add or remove one or more classes from each element in the set of matched elements, depending on either the class's presence or the value of the switch argument. + /// One or more class names (separated by spaces) to be toggled for each element in the matched set. + /// + /// + /// + /// Add or remove one or more classes from each element in the set of matched elements, depending on either the class's presence or the value of the switch argument. + /// One or more class names (separated by spaces) to be toggled for each element in the matched set. + /// A Boolean (not just truthy/falsy) value to determine whether the class should be added or removed. + /// + /// + /// + /// Add or remove one or more classes from each element in the set of matched elements, depending on either the class's presence or the value of the switch argument. + /// A boolean value to determine whether the class should be added or removed. + /// + /// + /// + /// Add or remove one or more classes from each element in the set of matched elements, depending on either the class's presence or the value of the switch argument. + /// A function that returns class names to be toggled in the class attribute of each element in the matched set. Receives the index position of the element in the set, the old class value, and the switch as arguments. + /// A boolean value to determine whether the class should be added or removed. + /// + /// + }, + 'trigger': function() { + /// + /// Execute all handlers and behaviors attached to the matched elements for the given event type. + /// A string containing a JavaScript event type, such as click or submit. + /// Additional parameters to pass along to the event handler. + /// + /// + /// + /// Execute all handlers and behaviors attached to the matched elements for the given event type. + /// A jQuery.Event object. + /// Additional parameters to pass along to the event handler. + /// + /// + }, + 'triggerHandler': function() { + /// + /// Execute all handlers attached to an element for an event. + /// A string containing a JavaScript event type, such as click or submit. + /// An array of additional parameters to pass along to the event handler. + /// + /// + }, + 'unbind': function() { + /// + /// Remove a previously-attached event handler from the elements. + /// A string containing a JavaScript event type, such as click or submit. + /// The function that is to be no longer executed. + /// + /// + /// + /// Remove a previously-attached event handler from the elements. + /// A string containing a JavaScript event type, such as click or submit. + /// Unbinds the corresponding 'return false' function that was bound using .bind( eventType, false ). + /// + /// + /// + /// Remove a previously-attached event handler from the elements. + /// A JavaScript event object as passed to an event handler. + /// + /// + }, + 'undelegate': function() { + /// + /// Remove a handler from the event for all elements which match the current selector, based upon a specific set of root elements. + /// A selector which will be used to filter the event results. + /// A string containing a JavaScript event type, such as "click" or "keydown" + /// + /// + /// + /// Remove a handler from the event for all elements which match the current selector, based upon a specific set of root elements. + /// A selector which will be used to filter the event results. + /// A string containing a JavaScript event type, such as "click" or "keydown" + /// A function to execute at the time the event is triggered. + /// + /// + /// + /// Remove a handler from the event for all elements which match the current selector, based upon a specific set of root elements. + /// A selector which will be used to filter the event results. + /// An object of one or more event types and previously bound functions to unbind from them. + /// + /// + /// + /// Remove a handler from the event for all elements which match the current selector, based upon a specific set of root elements. + /// A string containing a namespace to unbind all events from. + /// + /// + }, + 'unload': function() { + /// + /// Bind an event handler to the "unload" JavaScript event. + /// A function to execute when the event is triggered. + /// + /// + /// + /// Bind an event handler to the "unload" JavaScript event. + /// A plain object of data that will be passed to the event handler. + /// A function to execute each time the event is triggered. + /// + /// + }, + 'unwrap': function() { + /// Remove the parents of the set of matched elements from the DOM, leaving the matched elements in their place. + /// + }, + 'val': function() { + /// + /// Set the value of each element in the set of matched elements. + /// A string of text or an array of strings corresponding to the value of each matched element to set as selected/checked. + /// + /// + /// + /// Set the value of each element in the set of matched elements. + /// A function returning the value to set. this is the current element. Receives the index position of the element in the set and the old value as arguments. + /// + /// + }, + 'visible': function() { + /// Selects all elements that are visible. + }, + 'width': function() { + /// + /// Set the CSS width of each element in the set of matched elements. + /// An integer representing the number of pixels, or an integer along with an optional unit of measure appended (as a string). + /// + /// + /// + /// Set the CSS width of each element in the set of matched elements. + /// A function returning the width to set. Receives the index position of the element in the set and the old width as arguments. Within the function, this refers to the current element in the set. + /// + /// + }, + 'wrap': function() { + /// + /// Wrap an HTML structure around each element in the set of matched elements. + /// A selector, element, HTML string, or jQuery object specifying the structure to wrap around the matched elements. + /// + /// + /// + /// Wrap an HTML structure around each element in the set of matched elements. + /// A callback function returning the HTML content or jQuery object to wrap around the matched elements. Receives the index position of the element in the set as an argument. Within the function, this refers to the current element in the set. + /// + /// + }, + 'wrapAll': function() { + /// + /// Wrap an HTML structure around all elements in the set of matched elements. + /// A selector, element, HTML string, or jQuery object specifying the structure to wrap around the matched elements. + /// + /// + }, + 'wrapInner': function() { + /// + /// Wrap an HTML structure around the content of each element in the set of matched elements. + /// An HTML snippet, selector expression, jQuery object, or DOM element specifying the structure to wrap around the content of the matched elements. + /// + /// + /// + /// Wrap an HTML structure around the content of each element in the set of matched elements. + /// A callback function which generates a structure to wrap around the content of the matched elements. Receives the index position of the element in the set as an argument. Within the function, this refers to the current element in the set. + /// + /// + }, +}); + +intellisense.annotate(window, { + '$': function() { + /// + /// Accepts a string containing a CSS selector which is then used to match a set of elements. + /// A string containing a selector expression + /// A DOM Element, Document, or jQuery to use as context + /// + /// + /// + /// Accepts a string containing a CSS selector which is then used to match a set of elements. + /// A DOM element to wrap in a jQuery object. + /// + /// + /// + /// Accepts a string containing a CSS selector which is then used to match a set of elements. + /// An array containing a set of DOM elements to wrap in a jQuery object. + /// + /// + /// + /// Accepts a string containing a CSS selector which is then used to match a set of elements. + /// A plain object to wrap in a jQuery object. + /// + /// + /// + /// Accepts a string containing a CSS selector which is then used to match a set of elements. + /// An existing jQuery object to clone. + /// + /// + }, +}); + diff --git a/src/Quartz.Web/App/scripts/signalr/jquery-2.1.3.js b/src/Quartz.Web/App/scripts/signalr/jquery-2.1.3.js new file mode 100644 index 000000000..79d631ff4 --- /dev/null +++ b/src/Quartz.Web/App/scripts/signalr/jquery-2.1.3.js @@ -0,0 +1,9205 @@ +/*! + * jQuery JavaScript Library v2.1.3 + * http://jquery.com/ + * + * Includes Sizzle.js + * http://sizzlejs.com/ + * + * Copyright 2005, 2014 jQuery Foundation, Inc. and other contributors + * Released under the MIT license + * http://jquery.org/license + * + * Date: 2014-12-18T15:11Z + */ + +(function( global, factory ) { + + if ( typeof module === "object" && typeof module.exports === "object" ) { + // For CommonJS and CommonJS-like environments where a proper `window` + // is present, execute the factory and get jQuery. + // For environments that do not have a `window` with a `document` + // (such as Node.js), expose a factory as module.exports. + // This accentuates the need for the creation of a real `window`. + // e.g. var jQuery = require("jquery")(window); + // See ticket #14549 for more info. + module.exports = global.document ? + factory( global, true ) : + function( w ) { + if ( !w.document ) { + throw new Error( "jQuery requires a window with a document" ); + } + return factory( w ); + }; + } else { + factory( global ); + } + +// Pass this if window is not defined yet +}(typeof window !== "undefined" ? window : this, function( window, noGlobal ) { + +// Support: Firefox 18+ +// Can't be in strict mode, several libs including ASP.NET trace +// the stack via arguments.caller.callee and Firefox dies if +// you try to trace through "use strict" call chains. (#13335) +// + +var arr = []; + +var slice = arr.slice; + +var concat = arr.concat; + +var push = arr.push; + +var indexOf = arr.indexOf; + +var class2type = {}; + +var toString = class2type.toString; + +var hasOwn = class2type.hasOwnProperty; + +var support = {}; + + + +var + // Use the correct document accordingly with window argument (sandbox) + document = window.document, + + version = "2.1.3", + + // Define a local copy of jQuery + jQuery = function( selector, context ) { + // The jQuery object is actually just the init constructor 'enhanced' + // Need init if jQuery is called (just allow error to be thrown if not included) + return new jQuery.fn.init( selector, context ); + }, + + // Support: Android<4.1 + // Make sure we trim BOM and NBSP + rtrim = /^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g, + + // Matches dashed string for camelizing + rmsPrefix = /^-ms-/, + rdashAlpha = /-([\da-z])/gi, + + // Used by jQuery.camelCase as callback to replace() + fcamelCase = function( all, letter ) { + return letter.toUpperCase(); + }; + +jQuery.fn = jQuery.prototype = { + // The current version of jQuery being used + jquery: version, + + constructor: jQuery, + + // Start with an empty selector + selector: "", + + // The default length of a jQuery object is 0 + length: 0, + + toArray: function() { + return slice.call( this ); + }, + + // Get the Nth element in the matched element set OR + // Get the whole matched element set as a clean array + get: function( num ) { + return num != null ? + + // Return just the one element from the set + ( num < 0 ? this[ num + this.length ] : this[ num ] ) : + + // Return all the elements in a clean array + slice.call( this ); + }, + + // Take an array of elements and push it onto the stack + // (returning the new matched element set) + pushStack: function( elems ) { + + // Build a new jQuery matched element set + var ret = jQuery.merge( this.constructor(), elems ); + + // Add the old object onto the stack (as a reference) + ret.prevObject = this; + ret.context = this.context; + + // Return the newly-formed element set + return ret; + }, + + // Execute a callback for every element in the matched set. + // (You can seed the arguments with an array of args, but this is + // only used internally.) + each: function( callback, args ) { + return jQuery.each( this, callback, args ); + }, + + map: function( callback ) { + return this.pushStack( jQuery.map(this, function( elem, i ) { + return callback.call( elem, i, elem ); + })); + }, + + slice: function() { + return this.pushStack( slice.apply( this, arguments ) ); + }, + + first: function() { + return this.eq( 0 ); + }, + + last: function() { + return this.eq( -1 ); + }, + + eq: function( i ) { + var len = this.length, + j = +i + ( i < 0 ? len : 0 ); + return this.pushStack( j >= 0 && j < len ? [ this[j] ] : [] ); + }, + + end: function() { + return this.prevObject || this.constructor(null); + }, + + // For internal use only. + // Behaves like an Array's method, not like a jQuery method. + push: push, + sort: arr.sort, + splice: arr.splice +}; + +jQuery.extend = jQuery.fn.extend = function() { + var options, name, src, copy, copyIsArray, clone, + target = arguments[0] || {}, + i = 1, + length = arguments.length, + deep = false; + + // Handle a deep copy situation + if ( typeof target === "boolean" ) { + deep = target; + + // Skip the boolean and the target + target = arguments[ i ] || {}; + i++; + } + + // Handle case when target is a string or something (possible in deep copy) + if ( typeof target !== "object" && !jQuery.isFunction(target) ) { + target = {}; + } + + // Extend jQuery itself if only one argument is passed + if ( i === length ) { + target = this; + i--; + } + + for ( ; i < length; i++ ) { + // Only deal with non-null/undefined values + if ( (options = arguments[ i ]) != null ) { + // Extend the base object + for ( name in options ) { + src = target[ name ]; + copy = options[ name ]; + + // Prevent never-ending loop + if ( target === copy ) { + continue; + } + + // Recurse if we're merging plain objects or arrays + if ( deep && copy && ( jQuery.isPlainObject(copy) || (copyIsArray = jQuery.isArray(copy)) ) ) { + if ( copyIsArray ) { + copyIsArray = false; + clone = src && jQuery.isArray(src) ? src : []; + + } else { + clone = src && jQuery.isPlainObject(src) ? src : {}; + } + + // Never move original objects, clone them + target[ name ] = jQuery.extend( deep, clone, copy ); + + // Don't bring in undefined values + } else if ( copy !== undefined ) { + target[ name ] = copy; + } + } + } + } + + // Return the modified object + return target; +}; + +jQuery.extend({ + // Unique for each copy of jQuery on the page + expando: "jQuery" + ( version + Math.random() ).replace( /\D/g, "" ), + + // Assume jQuery is ready without the ready module + isReady: true, + + error: function( msg ) { + throw new Error( msg ); + }, + + noop: function() {}, + + isFunction: function( obj ) { + return jQuery.type(obj) === "function"; + }, + + isArray: Array.isArray, + + isWindow: function( obj ) { + return obj != null && obj === obj.window; + }, + + isNumeric: function( obj ) { + // parseFloat NaNs numeric-cast false positives (null|true|false|"") + // ...but misinterprets leading-number strings, particularly hex literals ("0x...") + // subtraction forces infinities to NaN + // adding 1 corrects loss of precision from parseFloat (#15100) + return !jQuery.isArray( obj ) && (obj - parseFloat( obj ) + 1) >= 0; + }, + + isPlainObject: function( obj ) { + // Not plain objects: + // - Any object or value whose internal [[Class]] property is not "[object Object]" + // - DOM nodes + // - window + if ( jQuery.type( obj ) !== "object" || obj.nodeType || jQuery.isWindow( obj ) ) { + return false; + } + + if ( obj.constructor && + !hasOwn.call( obj.constructor.prototype, "isPrototypeOf" ) ) { + return false; + } + + // If the function hasn't returned already, we're confident that + // |obj| is a plain object, created by {} or constructed with new Object + return true; + }, + + isEmptyObject: function( obj ) { + var name; + for ( name in obj ) { + return false; + } + return true; + }, + + type: function( obj ) { + if ( obj == null ) { + return obj + ""; + } + // Support: Android<4.0, iOS<6 (functionish RegExp) + return typeof obj === "object" || typeof obj === "function" ? + class2type[ toString.call(obj) ] || "object" : + typeof obj; + }, + + // Evaluates a script in a global context + globalEval: function( code ) { + var script, + indirect = eval; + + code = jQuery.trim( code ); + + if ( code ) { + // If the code includes a valid, prologue position + // strict mode pragma, execute code by injecting a + // script tag into the document. + if ( code.indexOf("use strict") === 1 ) { + script = document.createElement("script"); + script.text = code; + document.head.appendChild( script ).parentNode.removeChild( script ); + } else { + // Otherwise, avoid the DOM node creation, insertion + // and removal by using an indirect global eval + indirect( code ); + } + } + }, + + // Convert dashed to camelCase; used by the css and data modules + // Support: IE9-11+ + // Microsoft forgot to hump their vendor prefix (#9572) + camelCase: function( string ) { + return string.replace( rmsPrefix, "ms-" ).replace( rdashAlpha, fcamelCase ); + }, + + nodeName: function( elem, name ) { + return elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase(); + }, + + // args is for internal usage only + each: function( obj, callback, args ) { + var value, + i = 0, + length = obj.length, + isArray = isArraylike( obj ); + + if ( args ) { + if ( isArray ) { + for ( ; i < length; i++ ) { + value = callback.apply( obj[ i ], args ); + + if ( value === false ) { + break; + } + } + } else { + for ( i in obj ) { + value = callback.apply( obj[ i ], args ); + + if ( value === false ) { + break; + } + } + } + + // A special, fast, case for the most common use of each + } else { + if ( isArray ) { + for ( ; i < length; i++ ) { + value = callback.call( obj[ i ], i, obj[ i ] ); + + if ( value === false ) { + break; + } + } + } else { + for ( i in obj ) { + value = callback.call( obj[ i ], i, obj[ i ] ); + + if ( value === false ) { + break; + } + } + } + } + + return obj; + }, + + // Support: Android<4.1 + trim: function( text ) { + return text == null ? + "" : + ( text + "" ).replace( rtrim, "" ); + }, + + // results is for internal usage only + makeArray: function( arr, results ) { + var ret = results || []; + + if ( arr != null ) { + if ( isArraylike( Object(arr) ) ) { + jQuery.merge( ret, + typeof arr === "string" ? + [ arr ] : arr + ); + } else { + push.call( ret, arr ); + } + } + + return ret; + }, + + inArray: function( elem, arr, i ) { + return arr == null ? -1 : indexOf.call( arr, elem, i ); + }, + + merge: function( first, second ) { + var len = +second.length, + j = 0, + i = first.length; + + for ( ; j < len; j++ ) { + first[ i++ ] = second[ j ]; + } + + first.length = i; + + return first; + }, + + grep: function( elems, callback, invert ) { + var callbackInverse, + matches = [], + i = 0, + length = elems.length, + callbackExpect = !invert; + + // Go through the array, only saving the items + // that pass the validator function + for ( ; i < length; i++ ) { + callbackInverse = !callback( elems[ i ], i ); + if ( callbackInverse !== callbackExpect ) { + matches.push( elems[ i ] ); + } + } + + return matches; + }, + + // arg is for internal usage only + map: function( elems, callback, arg ) { + var value, + i = 0, + length = elems.length, + isArray = isArraylike( elems ), + ret = []; + + // Go through the array, translating each of the items to their new values + if ( isArray ) { + for ( ; i < length; i++ ) { + value = callback( elems[ i ], i, arg ); + + if ( value != null ) { + ret.push( value ); + } + } + + // Go through every key on the object, + } else { + for ( i in elems ) { + value = callback( elems[ i ], i, arg ); + + if ( value != null ) { + ret.push( value ); + } + } + } + + // Flatten any nested arrays + return concat.apply( [], ret ); + }, + + // A global GUID counter for objects + guid: 1, + + // Bind a function to a context, optionally partially applying any + // arguments. + proxy: function( fn, context ) { + var tmp, args, proxy; + + if ( typeof context === "string" ) { + tmp = fn[ context ]; + context = fn; + fn = tmp; + } + + // Quick check to determine if target is callable, in the spec + // this throws a TypeError, but we will just return undefined. + if ( !jQuery.isFunction( fn ) ) { + return undefined; + } + + // Simulated bind + args = slice.call( arguments, 2 ); + proxy = function() { + return fn.apply( context || this, args.concat( slice.call( arguments ) ) ); + }; + + // Set the guid of unique handler to the same of original handler, so it can be removed + proxy.guid = fn.guid = fn.guid || jQuery.guid++; + + return proxy; + }, + + now: Date.now, + + // jQuery.support is not used in Core but other projects attach their + // properties to it so it needs to exist. + support: support +}); + +// Populate the class2type map +jQuery.each("Boolean Number String Function Array Date RegExp Object Error".split(" "), function(i, name) { + class2type[ "[object " + name + "]" ] = name.toLowerCase(); +}); + +function isArraylike( obj ) { + var length = obj.length, + type = jQuery.type( obj ); + + if ( type === "function" || jQuery.isWindow( obj ) ) { + return false; + } + + if ( obj.nodeType === 1 && length ) { + return true; + } + + return type === "array" || length === 0 || + typeof length === "number" && length > 0 && ( length - 1 ) in obj; +} +var Sizzle = +/*! + * Sizzle CSS Selector Engine v2.2.0-pre + * http://sizzlejs.com/ + * + * Copyright 2008, 2014 jQuery Foundation, Inc. and other contributors + * Released under the MIT license + * http://jquery.org/license + * + * Date: 2014-12-16 + */ +(function( window ) { + +var i, + support, + Expr, + getText, + isXML, + tokenize, + compile, + select, + outermostContext, + sortInput, + hasDuplicate, + + // Local document vars + setDocument, + document, + docElem, + documentIsHTML, + rbuggyQSA, + rbuggyMatches, + matches, + contains, + + // Instance-specific data + expando = "sizzle" + 1 * new Date(), + preferredDoc = window.document, + dirruns = 0, + done = 0, + classCache = createCache(), + tokenCache = createCache(), + compilerCache = createCache(), + sortOrder = function( a, b ) { + if ( a === b ) { + hasDuplicate = true; + } + return 0; + }, + + // General-purpose constants + MAX_NEGATIVE = 1 << 31, + + // Instance methods + hasOwn = ({}).hasOwnProperty, + arr = [], + pop = arr.pop, + push_native = arr.push, + push = arr.push, + slice = arr.slice, + // Use a stripped-down indexOf as it's faster than native + // http://jsperf.com/thor-indexof-vs-for/5 + indexOf = function( list, elem ) { + var i = 0, + len = list.length; + for ( ; i < len; i++ ) { + if ( list[i] === elem ) { + return i; + } + } + return -1; + }, + + booleans = "checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped", + + // Regular expressions + + // Whitespace characters http://www.w3.org/TR/css3-selectors/#whitespace + whitespace = "[\\x20\\t\\r\\n\\f]", + // http://www.w3.org/TR/css3-syntax/#characters + characterEncoding = "(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+", + + // Loosely modeled on CSS identifier characters + // An unquoted value should be a CSS identifier http://www.w3.org/TR/css3-selectors/#attribute-selectors + // Proper syntax: http://www.w3.org/TR/CSS21/syndata.html#value-def-identifier + identifier = characterEncoding.replace( "w", "w#" ), + + // Attribute selectors: http://www.w3.org/TR/selectors/#attribute-selectors + attributes = "\\[" + whitespace + "*(" + characterEncoding + ")(?:" + whitespace + + // Operator (capture 2) + "*([*^$|!~]?=)" + whitespace + + // "Attribute values must be CSS identifiers [capture 5] or strings [capture 3 or capture 4]" + "*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|(" + identifier + "))|)" + whitespace + + "*\\]", + + pseudos = ":(" + characterEncoding + ")(?:\\((" + + // To reduce the number of selectors needing tokenize in the preFilter, prefer arguments: + // 1. quoted (capture 3; capture 4 or capture 5) + "('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|" + + // 2. simple (capture 6) + "((?:\\\\.|[^\\\\()[\\]]|" + attributes + ")*)|" + + // 3. anything else (capture 2) + ".*" + + ")\\)|)", + + // Leading and non-escaped trailing whitespace, capturing some non-whitespace characters preceding the latter + rwhitespace = new RegExp( whitespace + "+", "g" ), + rtrim = new RegExp( "^" + whitespace + "+|((?:^|[^\\\\])(?:\\\\.)*)" + whitespace + "+$", "g" ), + + rcomma = new RegExp( "^" + whitespace + "*," + whitespace + "*" ), + rcombinators = new RegExp( "^" + whitespace + "*([>+~]|" + whitespace + ")" + whitespace + "*" ), + + rattributeQuotes = new RegExp( "=" + whitespace + "*([^\\]'\"]*?)" + whitespace + "*\\]", "g" ), + + rpseudo = new RegExp( pseudos ), + ridentifier = new RegExp( "^" + identifier + "$" ), + + matchExpr = { + "ID": new RegExp( "^#(" + characterEncoding + ")" ), + "CLASS": new RegExp( "^\\.(" + characterEncoding + ")" ), + "TAG": new RegExp( "^(" + characterEncoding.replace( "w", "w*" ) + ")" ), + "ATTR": new RegExp( "^" + attributes ), + "PSEUDO": new RegExp( "^" + pseudos ), + "CHILD": new RegExp( "^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\(" + whitespace + + "*(even|odd|(([+-]|)(\\d*)n|)" + whitespace + "*(?:([+-]|)" + whitespace + + "*(\\d+)|))" + whitespace + "*\\)|)", "i" ), + "bool": new RegExp( "^(?:" + booleans + ")$", "i" ), + // For use in libraries implementing .is() + // We use this for POS matching in `select` + "needsContext": new RegExp( "^" + whitespace + "*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\(" + + whitespace + "*((?:-\\d)?\\d*)" + whitespace + "*\\)|)(?=[^-]|$)", "i" ) + }, + + rinputs = /^(?:input|select|textarea|button)$/i, + rheader = /^h\d$/i, + + rnative = /^[^{]+\{\s*\[native \w/, + + // Easily-parseable/retrievable ID or TAG or CLASS selectors + rquickExpr = /^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/, + + rsibling = /[+~]/, + rescape = /'|\\/g, + + // CSS escapes http://www.w3.org/TR/CSS21/syndata.html#escaped-characters + runescape = new RegExp( "\\\\([\\da-f]{1,6}" + whitespace + "?|(" + whitespace + ")|.)", "ig" ), + funescape = function( _, escaped, escapedWhitespace ) { + var high = "0x" + escaped - 0x10000; + // NaN means non-codepoint + // Support: Firefox<24 + // Workaround erroneous numeric interpretation of +"0x" + return high !== high || escapedWhitespace ? + escaped : + high < 0 ? + // BMP codepoint + String.fromCharCode( high + 0x10000 ) : + // Supplemental Plane codepoint (surrogate pair) + String.fromCharCode( high >> 10 | 0xD800, high & 0x3FF | 0xDC00 ); + }, + + // Used for iframes + // See setDocument() + // Removing the function wrapper causes a "Permission Denied" + // error in IE + unloadHandler = function() { + setDocument(); + }; + +// Optimize for push.apply( _, NodeList ) +try { + push.apply( + (arr = slice.call( preferredDoc.childNodes )), + preferredDoc.childNodes + ); + // Support: Android<4.0 + // Detect silently failing push.apply + arr[ preferredDoc.childNodes.length ].nodeType; +} catch ( e ) { + push = { apply: arr.length ? + + // Leverage slice if possible + function( target, els ) { + push_native.apply( target, slice.call(els) ); + } : + + // Support: IE<9 + // Otherwise append directly + function( target, els ) { + var j = target.length, + i = 0; + // Can't trust NodeList.length + while ( (target[j++] = els[i++]) ) {} + target.length = j - 1; + } + }; +} + +function Sizzle( selector, context, results, seed ) { + var match, elem, m, nodeType, + // QSA vars + i, groups, old, nid, newContext, newSelector; + + if ( ( context ? context.ownerDocument || context : preferredDoc ) !== document ) { + setDocument( context ); + } + + context = context || document; + results = results || []; + nodeType = context.nodeType; + + if ( typeof selector !== "string" || !selector || + nodeType !== 1 && nodeType !== 9 && nodeType !== 11 ) { + + return results; + } + + if ( !seed && documentIsHTML ) { + + // Try to shortcut find operations when possible (e.g., not under DocumentFragment) + if ( nodeType !== 11 && (match = rquickExpr.exec( selector )) ) { + // Speed-up: Sizzle("#ID") + if ( (m = match[1]) ) { + if ( nodeType === 9 ) { + elem = context.getElementById( m ); + // Check parentNode to catch when Blackberry 4.6 returns + // nodes that are no longer in the document (jQuery #6963) + if ( elem && elem.parentNode ) { + // Handle the case where IE, Opera, and Webkit return items + // by name instead of ID + if ( elem.id === m ) { + results.push( elem ); + return results; + } + } else { + return results; + } + } else { + // Context is not a document + if ( context.ownerDocument && (elem = context.ownerDocument.getElementById( m )) && + contains( context, elem ) && elem.id === m ) { + results.push( elem ); + return results; + } + } + + // Speed-up: Sizzle("TAG") + } else if ( match[2] ) { + push.apply( results, context.getElementsByTagName( selector ) ); + return results; + + // Speed-up: Sizzle(".CLASS") + } else if ( (m = match[3]) && support.getElementsByClassName ) { + push.apply( results, context.getElementsByClassName( m ) ); + return results; + } + } + + // QSA path + if ( support.qsa && (!rbuggyQSA || !rbuggyQSA.test( selector )) ) { + nid = old = expando; + newContext = context; + newSelector = nodeType !== 1 && selector; + + // qSA works strangely on Element-rooted queries + // We can work around this by specifying an extra ID on the root + // and working up from there (Thanks to Andrew Dupont for the technique) + // IE 8 doesn't work on object elements + if ( nodeType === 1 && context.nodeName.toLowerCase() !== "object" ) { + groups = tokenize( selector ); + + if ( (old = context.getAttribute("id")) ) { + nid = old.replace( rescape, "\\$&" ); + } else { + context.setAttribute( "id", nid ); + } + nid = "[id='" + nid + "'] "; + + i = groups.length; + while ( i-- ) { + groups[i] = nid + toSelector( groups[i] ); + } + newContext = rsibling.test( selector ) && testContext( context.parentNode ) || context; + newSelector = groups.join(","); + } + + if ( newSelector ) { + try { + push.apply( results, + newContext.querySelectorAll( newSelector ) + ); + return results; + } catch(qsaError) { + } finally { + if ( !old ) { + context.removeAttribute("id"); + } + } + } + } + } + + // All others + return select( selector.replace( rtrim, "$1" ), context, results, seed ); +} + +/** + * Create key-value caches of limited size + * @returns {Function(string, Object)} Returns the Object data after storing it on itself with + * property name the (space-suffixed) string and (if the cache is larger than Expr.cacheLength) + * deleting the oldest entry + */ +function createCache() { + var keys = []; + + function cache( key, value ) { + // Use (key + " ") to avoid collision with native prototype properties (see Issue #157) + if ( keys.push( key + " " ) > Expr.cacheLength ) { + // Only keep the most recent entries + delete cache[ keys.shift() ]; + } + return (cache[ key + " " ] = value); + } + return cache; +} + +/** + * Mark a function for special use by Sizzle + * @param {Function} fn The function to mark + */ +function markFunction( fn ) { + fn[ expando ] = true; + return fn; +} + +/** + * Support testing using an element + * @param {Function} fn Passed the created div and expects a boolean result + */ +function assert( fn ) { + var div = document.createElement("div"); + + try { + return !!fn( div ); + } catch (e) { + return false; + } finally { + // Remove from its parent by default + if ( div.parentNode ) { + div.parentNode.removeChild( div ); + } + // release memory in IE + div = null; + } +} + +/** + * Adds the same handler for all of the specified attrs + * @param {String} attrs Pipe-separated list of attributes + * @param {Function} handler The method that will be applied + */ +function addHandle( attrs, handler ) { + var arr = attrs.split("|"), + i = attrs.length; + + while ( i-- ) { + Expr.attrHandle[ arr[i] ] = handler; + } +} + +/** + * Checks document order of two siblings + * @param {Element} a + * @param {Element} b + * @returns {Number} Returns less than 0 if a precedes b, greater than 0 if a follows b + */ +function siblingCheck( a, b ) { + var cur = b && a, + diff = cur && a.nodeType === 1 && b.nodeType === 1 && + ( ~b.sourceIndex || MAX_NEGATIVE ) - + ( ~a.sourceIndex || MAX_NEGATIVE ); + + // Use IE sourceIndex if available on both nodes + if ( diff ) { + return diff; + } + + // Check if b follows a + if ( cur ) { + while ( (cur = cur.nextSibling) ) { + if ( cur === b ) { + return -1; + } + } + } + + return a ? 1 : -1; +} + +/** + * Returns a function to use in pseudos for input types + * @param {String} type + */ +function createInputPseudo( type ) { + return function( elem ) { + var name = elem.nodeName.toLowerCase(); + return name === "input" && elem.type === type; + }; +} + +/** + * Returns a function to use in pseudos for buttons + * @param {String} type + */ +function createButtonPseudo( type ) { + return function( elem ) { + var name = elem.nodeName.toLowerCase(); + return (name === "input" || name === "button") && elem.type === type; + }; +} + +/** + * Returns a function to use in pseudos for positionals + * @param {Function} fn + */ +function createPositionalPseudo( fn ) { + return markFunction(function( argument ) { + argument = +argument; + return markFunction(function( seed, matches ) { + var j, + matchIndexes = fn( [], seed.length, argument ), + i = matchIndexes.length; + + // Match elements found at the specified indexes + while ( i-- ) { + if ( seed[ (j = matchIndexes[i]) ] ) { + seed[j] = !(matches[j] = seed[j]); + } + } + }); + }); +} + +/** + * Checks a node for validity as a Sizzle context + * @param {Element|Object=} context + * @returns {Element|Object|Boolean} The input node if acceptable, otherwise a falsy value + */ +function testContext( context ) { + return context && typeof context.getElementsByTagName !== "undefined" && context; +} + +// Expose support vars for convenience +support = Sizzle.support = {}; + +/** + * Detects XML nodes + * @param {Element|Object} elem An element or a document + * @returns {Boolean} True iff elem is a non-HTML XML node + */ +isXML = Sizzle.isXML = function( elem ) { + // documentElement is verified for cases where it doesn't yet exist + // (such as loading iframes in IE - #4833) + var documentElement = elem && (elem.ownerDocument || elem).documentElement; + return documentElement ? documentElement.nodeName !== "HTML" : false; +}; + +/** + * Sets document-related variables once based on the current document + * @param {Element|Object} [doc] An element or document object to use to set the document + * @returns {Object} Returns the current document + */ +setDocument = Sizzle.setDocument = function( node ) { + var hasCompare, parent, + doc = node ? node.ownerDocument || node : preferredDoc; + + // If no document and documentElement is available, return + if ( doc === document || doc.nodeType !== 9 || !doc.documentElement ) { + return document; + } + + // Set our document + document = doc; + docElem = doc.documentElement; + parent = doc.defaultView; + + // Support: IE>8 + // If iframe document is assigned to "document" variable and if iframe has been reloaded, + // IE will throw "permission denied" error when accessing "document" variable, see jQuery #13936 + // IE6-8 do not support the defaultView property so parent will be undefined + if ( parent && parent !== parent.top ) { + // IE11 does not have attachEvent, so all must suffer + if ( parent.addEventListener ) { + parent.addEventListener( "unload", unloadHandler, false ); + } else if ( parent.attachEvent ) { + parent.attachEvent( "onunload", unloadHandler ); + } + } + + /* Support tests + ---------------------------------------------------------------------- */ + documentIsHTML = !isXML( doc ); + + /* Attributes + ---------------------------------------------------------------------- */ + + // Support: IE<8 + // Verify that getAttribute really returns attributes and not properties + // (excepting IE8 booleans) + support.attributes = assert(function( div ) { + div.className = "i"; + return !div.getAttribute("className"); + }); + + /* getElement(s)By* + ---------------------------------------------------------------------- */ + + // Check if getElementsByTagName("*") returns only elements + support.getElementsByTagName = assert(function( div ) { + div.appendChild( doc.createComment("") ); + return !div.getElementsByTagName("*").length; + }); + + // Support: IE<9 + support.getElementsByClassName = rnative.test( doc.getElementsByClassName ); + + // Support: IE<10 + // Check if getElementById returns elements by name + // The broken getElementById methods don't pick up programatically-set names, + // so use a roundabout getElementsByName test + support.getById = assert(function( div ) { + docElem.appendChild( div ).id = expando; + return !doc.getElementsByName || !doc.getElementsByName( expando ).length; + }); + + // ID find and filter + if ( support.getById ) { + Expr.find["ID"] = function( id, context ) { + if ( typeof context.getElementById !== "undefined" && documentIsHTML ) { + var m = context.getElementById( id ); + // Check parentNode to catch when Blackberry 4.6 returns + // nodes that are no longer in the document #6963 + return m && m.parentNode ? [ m ] : []; + } + }; + Expr.filter["ID"] = function( id ) { + var attrId = id.replace( runescape, funescape ); + return function( elem ) { + return elem.getAttribute("id") === attrId; + }; + }; + } else { + // Support: IE6/7 + // getElementById is not reliable as a find shortcut + delete Expr.find["ID"]; + + Expr.filter["ID"] = function( id ) { + var attrId = id.replace( runescape, funescape ); + return function( elem ) { + var node = typeof elem.getAttributeNode !== "undefined" && elem.getAttributeNode("id"); + return node && node.value === attrId; + }; + }; + } + + // Tag + Expr.find["TAG"] = support.getElementsByTagName ? + function( tag, context ) { + if ( typeof context.getElementsByTagName !== "undefined" ) { + return context.getElementsByTagName( tag ); + + // DocumentFragment nodes don't have gEBTN + } else if ( support.qsa ) { + return context.querySelectorAll( tag ); + } + } : + + function( tag, context ) { + var elem, + tmp = [], + i = 0, + // By happy coincidence, a (broken) gEBTN appears on DocumentFragment nodes too + results = context.getElementsByTagName( tag ); + + // Filter out possible comments + if ( tag === "*" ) { + while ( (elem = results[i++]) ) { + if ( elem.nodeType === 1 ) { + tmp.push( elem ); + } + } + + return tmp; + } + return results; + }; + + // Class + Expr.find["CLASS"] = support.getElementsByClassName && function( className, context ) { + if ( documentIsHTML ) { + return context.getElementsByClassName( className ); + } + }; + + /* QSA/matchesSelector + ---------------------------------------------------------------------- */ + + // QSA and matchesSelector support + + // matchesSelector(:active) reports false when true (IE9/Opera 11.5) + rbuggyMatches = []; + + // qSa(:focus) reports false when true (Chrome 21) + // We allow this because of a bug in IE8/9 that throws an error + // whenever `document.activeElement` is accessed on an iframe + // So, we allow :focus to pass through QSA all the time to avoid the IE error + // See http://bugs.jquery.com/ticket/13378 + rbuggyQSA = []; + + if ( (support.qsa = rnative.test( doc.querySelectorAll )) ) { + // Build QSA regex + // Regex strategy adopted from Diego Perini + assert(function( div ) { + // Select is set to empty string on purpose + // This is to test IE's treatment of not explicitly + // setting a boolean content attribute, + // since its presence should be enough + // http://bugs.jquery.com/ticket/12359 + docElem.appendChild( div ).innerHTML = "" + + ""; + + // Support: IE8, Opera 11-12.16 + // Nothing should be selected when empty strings follow ^= or $= or *= + // The test attribute must be unknown in Opera but "safe" for WinRT + // http://msdn.microsoft.com/en-us/library/ie/hh465388.aspx#attribute_section + if ( div.querySelectorAll("[msallowcapture^='']").length ) { + rbuggyQSA.push( "[*^$]=" + whitespace + "*(?:''|\"\")" ); + } + + // Support: IE8 + // Boolean attributes and "value" are not treated correctly + if ( !div.querySelectorAll("[selected]").length ) { + rbuggyQSA.push( "\\[" + whitespace + "*(?:value|" + booleans + ")" ); + } + + // Support: Chrome<29, Android<4.2+, Safari<7.0+, iOS<7.0+, PhantomJS<1.9.7+ + if ( !div.querySelectorAll( "[id~=" + expando + "-]" ).length ) { + rbuggyQSA.push("~="); + } + + // Webkit/Opera - :checked should return selected option elements + // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked + // IE8 throws error here and will not see later tests + if ( !div.querySelectorAll(":checked").length ) { + rbuggyQSA.push(":checked"); + } + + // Support: Safari 8+, iOS 8+ + // https://bugs.webkit.org/show_bug.cgi?id=136851 + // In-page `selector#id sibing-combinator selector` fails + if ( !div.querySelectorAll( "a#" + expando + "+*" ).length ) { + rbuggyQSA.push(".#.+[+~]"); + } + }); + + assert(function( div ) { + // Support: Windows 8 Native Apps + // The type and name attributes are restricted during .innerHTML assignment + var input = doc.createElement("input"); + input.setAttribute( "type", "hidden" ); + div.appendChild( input ).setAttribute( "name", "D" ); + + // Support: IE8 + // Enforce case-sensitivity of name attribute + if ( div.querySelectorAll("[name=d]").length ) { + rbuggyQSA.push( "name" + whitespace + "*[*^$|!~]?=" ); + } + + // FF 3.5 - :enabled/:disabled and hidden elements (hidden elements are still enabled) + // IE8 throws error here and will not see later tests + if ( !div.querySelectorAll(":enabled").length ) { + rbuggyQSA.push( ":enabled", ":disabled" ); + } + + // Opera 10-11 does not throw on post-comma invalid pseudos + div.querySelectorAll("*,:x"); + rbuggyQSA.push(",.*:"); + }); + } + + if ( (support.matchesSelector = rnative.test( (matches = docElem.matches || + docElem.webkitMatchesSelector || + docElem.mozMatchesSelector || + docElem.oMatchesSelector || + docElem.msMatchesSelector) )) ) { + + assert(function( div ) { + // Check to see if it's possible to do matchesSelector + // on a disconnected node (IE 9) + support.disconnectedMatch = matches.call( div, "div" ); + + // This should fail with an exception + // Gecko does not error, returns false instead + matches.call( div, "[s!='']:x" ); + rbuggyMatches.push( "!=", pseudos ); + }); + } + + rbuggyQSA = rbuggyQSA.length && new RegExp( rbuggyQSA.join("|") ); + rbuggyMatches = rbuggyMatches.length && new RegExp( rbuggyMatches.join("|") ); + + /* Contains + ---------------------------------------------------------------------- */ + hasCompare = rnative.test( docElem.compareDocumentPosition ); + + // Element contains another + // Purposefully does not implement inclusive descendent + // As in, an element does not contain itself + contains = hasCompare || rnative.test( docElem.contains ) ? + function( a, b ) { + var adown = a.nodeType === 9 ? a.documentElement : a, + bup = b && b.parentNode; + return a === bup || !!( bup && bup.nodeType === 1 && ( + adown.contains ? + adown.contains( bup ) : + a.compareDocumentPosition && a.compareDocumentPosition( bup ) & 16 + )); + } : + function( a, b ) { + if ( b ) { + while ( (b = b.parentNode) ) { + if ( b === a ) { + return true; + } + } + } + return false; + }; + + /* Sorting + ---------------------------------------------------------------------- */ + + // Document order sorting + sortOrder = hasCompare ? + function( a, b ) { + + // Flag for duplicate removal + if ( a === b ) { + hasDuplicate = true; + return 0; + } + + // Sort on method existence if only one input has compareDocumentPosition + var compare = !a.compareDocumentPosition - !b.compareDocumentPosition; + if ( compare ) { + return compare; + } + + // Calculate position if both inputs belong to the same document + compare = ( a.ownerDocument || a ) === ( b.ownerDocument || b ) ? + a.compareDocumentPosition( b ) : + + // Otherwise we know they are disconnected + 1; + + // Disconnected nodes + if ( compare & 1 || + (!support.sortDetached && b.compareDocumentPosition( a ) === compare) ) { + + // Choose the first element that is related to our preferred document + if ( a === doc || a.ownerDocument === preferredDoc && contains(preferredDoc, a) ) { + return -1; + } + if ( b === doc || b.ownerDocument === preferredDoc && contains(preferredDoc, b) ) { + return 1; + } + + // Maintain original order + return sortInput ? + ( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) : + 0; + } + + return compare & 4 ? -1 : 1; + } : + function( a, b ) { + // Exit early if the nodes are identical + if ( a === b ) { + hasDuplicate = true; + return 0; + } + + var cur, + i = 0, + aup = a.parentNode, + bup = b.parentNode, + ap = [ a ], + bp = [ b ]; + + // Parentless nodes are either documents or disconnected + if ( !aup || !bup ) { + return a === doc ? -1 : + b === doc ? 1 : + aup ? -1 : + bup ? 1 : + sortInput ? + ( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) : + 0; + + // If the nodes are siblings, we can do a quick check + } else if ( aup === bup ) { + return siblingCheck( a, b ); + } + + // Otherwise we need full lists of their ancestors for comparison + cur = a; + while ( (cur = cur.parentNode) ) { + ap.unshift( cur ); + } + cur = b; + while ( (cur = cur.parentNode) ) { + bp.unshift( cur ); + } + + // Walk down the tree looking for a discrepancy + while ( ap[i] === bp[i] ) { + i++; + } + + return i ? + // Do a sibling check if the nodes have a common ancestor + siblingCheck( ap[i], bp[i] ) : + + // Otherwise nodes in our document sort first + ap[i] === preferredDoc ? -1 : + bp[i] === preferredDoc ? 1 : + 0; + }; + + return doc; +}; + +Sizzle.matches = function( expr, elements ) { + return Sizzle( expr, null, null, elements ); +}; + +Sizzle.matchesSelector = function( elem, expr ) { + // Set document vars if needed + if ( ( elem.ownerDocument || elem ) !== document ) { + setDocument( elem ); + } + + // Make sure that attribute selectors are quoted + expr = expr.replace( rattributeQuotes, "='$1']" ); + + if ( support.matchesSelector && documentIsHTML && + ( !rbuggyMatches || !rbuggyMatches.test( expr ) ) && + ( !rbuggyQSA || !rbuggyQSA.test( expr ) ) ) { + + try { + var ret = matches.call( elem, expr ); + + // IE 9's matchesSelector returns false on disconnected nodes + if ( ret || support.disconnectedMatch || + // As well, disconnected nodes are said to be in a document + // fragment in IE 9 + elem.document && elem.document.nodeType !== 11 ) { + return ret; + } + } catch (e) {} + } + + return Sizzle( expr, document, null, [ elem ] ).length > 0; +}; + +Sizzle.contains = function( context, elem ) { + // Set document vars if needed + if ( ( context.ownerDocument || context ) !== document ) { + setDocument( context ); + } + return contains( context, elem ); +}; + +Sizzle.attr = function( elem, name ) { + // Set document vars if needed + if ( ( elem.ownerDocument || elem ) !== document ) { + setDocument( elem ); + } + + var fn = Expr.attrHandle[ name.toLowerCase() ], + // Don't get fooled by Object.prototype properties (jQuery #13807) + val = fn && hasOwn.call( Expr.attrHandle, name.toLowerCase() ) ? + fn( elem, name, !documentIsHTML ) : + undefined; + + return val !== undefined ? + val : + support.attributes || !documentIsHTML ? + elem.getAttribute( name ) : + (val = elem.getAttributeNode(name)) && val.specified ? + val.value : + null; +}; + +Sizzle.error = function( msg ) { + throw new Error( "Syntax error, unrecognized expression: " + msg ); +}; + +/** + * Document sorting and removing duplicates + * @param {ArrayLike} results + */ +Sizzle.uniqueSort = function( results ) { + var elem, + duplicates = [], + j = 0, + i = 0; + + // Unless we *know* we can detect duplicates, assume their presence + hasDuplicate = !support.detectDuplicates; + sortInput = !support.sortStable && results.slice( 0 ); + results.sort( sortOrder ); + + if ( hasDuplicate ) { + while ( (elem = results[i++]) ) { + if ( elem === results[ i ] ) { + j = duplicates.push( i ); + } + } + while ( j-- ) { + results.splice( duplicates[ j ], 1 ); + } + } + + // Clear input after sorting to release objects + // See https://github.com/jquery/sizzle/pull/225 + sortInput = null; + + return results; +}; + +/** + * Utility function for retrieving the text value of an array of DOM nodes + * @param {Array|Element} elem + */ +getText = Sizzle.getText = function( elem ) { + var node, + ret = "", + i = 0, + nodeType = elem.nodeType; + + if ( !nodeType ) { + // If no nodeType, this is expected to be an array + while ( (node = elem[i++]) ) { + // Do not traverse comment nodes + ret += getText( node ); + } + } else if ( nodeType === 1 || nodeType === 9 || nodeType === 11 ) { + // Use textContent for elements + // innerText usage removed for consistency of new lines (jQuery #11153) + if ( typeof elem.textContent === "string" ) { + return elem.textContent; + } else { + // Traverse its children + for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) { + ret += getText( elem ); + } + } + } else if ( nodeType === 3 || nodeType === 4 ) { + return elem.nodeValue; + } + // Do not include comment or processing instruction nodes + + return ret; +}; + +Expr = Sizzle.selectors = { + + // Can be adjusted by the user + cacheLength: 50, + + createPseudo: markFunction, + + match: matchExpr, + + attrHandle: {}, + + find: {}, + + relative: { + ">": { dir: "parentNode", first: true }, + " ": { dir: "parentNode" }, + "+": { dir: "previousSibling", first: true }, + "~": { dir: "previousSibling" } + }, + + preFilter: { + "ATTR": function( match ) { + match[1] = match[1].replace( runescape, funescape ); + + // Move the given value to match[3] whether quoted or unquoted + match[3] = ( match[3] || match[4] || match[5] || "" ).replace( runescape, funescape ); + + if ( match[2] === "~=" ) { + match[3] = " " + match[3] + " "; + } + + return match.slice( 0, 4 ); + }, + + "CHILD": function( match ) { + /* matches from matchExpr["CHILD"] + 1 type (only|nth|...) + 2 what (child|of-type) + 3 argument (even|odd|\d*|\d*n([+-]\d+)?|...) + 4 xn-component of xn+y argument ([+-]?\d*n|) + 5 sign of xn-component + 6 x of xn-component + 7 sign of y-component + 8 y of y-component + */ + match[1] = match[1].toLowerCase(); + + if ( match[1].slice( 0, 3 ) === "nth" ) { + // nth-* requires argument + if ( !match[3] ) { + Sizzle.error( match[0] ); + } + + // numeric x and y parameters for Expr.filter.CHILD + // remember that false/true cast respectively to 0/1 + match[4] = +( match[4] ? match[5] + (match[6] || 1) : 2 * ( match[3] === "even" || match[3] === "odd" ) ); + match[5] = +( ( match[7] + match[8] ) || match[3] === "odd" ); + + // other types prohibit arguments + } else if ( match[3] ) { + Sizzle.error( match[0] ); + } + + return match; + }, + + "PSEUDO": function( match ) { + var excess, + unquoted = !match[6] && match[2]; + + if ( matchExpr["CHILD"].test( match[0] ) ) { + return null; + } + + // Accept quoted arguments as-is + if ( match[3] ) { + match[2] = match[4] || match[5] || ""; + + // Strip excess characters from unquoted arguments + } else if ( unquoted && rpseudo.test( unquoted ) && + // Get excess from tokenize (recursively) + (excess = tokenize( unquoted, true )) && + // advance to the next closing parenthesis + (excess = unquoted.indexOf( ")", unquoted.length - excess ) - unquoted.length) ) { + + // excess is a negative index + match[0] = match[0].slice( 0, excess ); + match[2] = unquoted.slice( 0, excess ); + } + + // Return only captures needed by the pseudo filter method (type and argument) + return match.slice( 0, 3 ); + } + }, + + filter: { + + "TAG": function( nodeNameSelector ) { + var nodeName = nodeNameSelector.replace( runescape, funescape ).toLowerCase(); + return nodeNameSelector === "*" ? + function() { return true; } : + function( elem ) { + return elem.nodeName && elem.nodeName.toLowerCase() === nodeName; + }; + }, + + "CLASS": function( className ) { + var pattern = classCache[ className + " " ]; + + return pattern || + (pattern = new RegExp( "(^|" + whitespace + ")" + className + "(" + whitespace + "|$)" )) && + classCache( className, function( elem ) { + return pattern.test( typeof elem.className === "string" && elem.className || typeof elem.getAttribute !== "undefined" && elem.getAttribute("class") || "" ); + }); + }, + + "ATTR": function( name, operator, check ) { + return function( elem ) { + var result = Sizzle.attr( elem, name ); + + if ( result == null ) { + return operator === "!="; + } + if ( !operator ) { + return true; + } + + result += ""; + + return operator === "=" ? result === check : + operator === "!=" ? result !== check : + operator === "^=" ? check && result.indexOf( check ) === 0 : + operator === "*=" ? check && result.indexOf( check ) > -1 : + operator === "$=" ? check && result.slice( -check.length ) === check : + operator === "~=" ? ( " " + result.replace( rwhitespace, " " ) + " " ).indexOf( check ) > -1 : + operator === "|=" ? result === check || result.slice( 0, check.length + 1 ) === check + "-" : + false; + }; + }, + + "CHILD": function( type, what, argument, first, last ) { + var simple = type.slice( 0, 3 ) !== "nth", + forward = type.slice( -4 ) !== "last", + ofType = what === "of-type"; + + return first === 1 && last === 0 ? + + // Shortcut for :nth-*(n) + function( elem ) { + return !!elem.parentNode; + } : + + function( elem, context, xml ) { + var cache, outerCache, node, diff, nodeIndex, start, + dir = simple !== forward ? "nextSibling" : "previousSibling", + parent = elem.parentNode, + name = ofType && elem.nodeName.toLowerCase(), + useCache = !xml && !ofType; + + if ( parent ) { + + // :(first|last|only)-(child|of-type) + if ( simple ) { + while ( dir ) { + node = elem; + while ( (node = node[ dir ]) ) { + if ( ofType ? node.nodeName.toLowerCase() === name : node.nodeType === 1 ) { + return false; + } + } + // Reverse direction for :only-* (if we haven't yet done so) + start = dir = type === "only" && !start && "nextSibling"; + } + return true; + } + + start = [ forward ? parent.firstChild : parent.lastChild ]; + + // non-xml :nth-child(...) stores cache data on `parent` + if ( forward && useCache ) { + // Seek `elem` from a previously-cached index + outerCache = parent[ expando ] || (parent[ expando ] = {}); + cache = outerCache[ type ] || []; + nodeIndex = cache[0] === dirruns && cache[1]; + diff = cache[0] === dirruns && cache[2]; + node = nodeIndex && parent.childNodes[ nodeIndex ]; + + while ( (node = ++nodeIndex && node && node[ dir ] || + + // Fallback to seeking `elem` from the start + (diff = nodeIndex = 0) || start.pop()) ) { + + // When found, cache indexes on `parent` and break + if ( node.nodeType === 1 && ++diff && node === elem ) { + outerCache[ type ] = [ dirruns, nodeIndex, diff ]; + break; + } + } + + // Use previously-cached element index if available + } else if ( useCache && (cache = (elem[ expando ] || (elem[ expando ] = {}))[ type ]) && cache[0] === dirruns ) { + diff = cache[1]; + + // xml :nth-child(...) or :nth-last-child(...) or :nth(-last)?-of-type(...) + } else { + // Use the same loop as above to seek `elem` from the start + while ( (node = ++nodeIndex && node && node[ dir ] || + (diff = nodeIndex = 0) || start.pop()) ) { + + if ( ( ofType ? node.nodeName.toLowerCase() === name : node.nodeType === 1 ) && ++diff ) { + // Cache the index of each encountered element + if ( useCache ) { + (node[ expando ] || (node[ expando ] = {}))[ type ] = [ dirruns, diff ]; + } + + if ( node === elem ) { + break; + } + } + } + } + + // Incorporate the offset, then check against cycle size + diff -= last; + return diff === first || ( diff % first === 0 && diff / first >= 0 ); + } + }; + }, + + "PSEUDO": function( pseudo, argument ) { + // pseudo-class names are case-insensitive + // http://www.w3.org/TR/selectors/#pseudo-classes + // Prioritize by case sensitivity in case custom pseudos are added with uppercase letters + // Remember that setFilters inherits from pseudos + var args, + fn = Expr.pseudos[ pseudo ] || Expr.setFilters[ pseudo.toLowerCase() ] || + Sizzle.error( "unsupported pseudo: " + pseudo ); + + // The user may use createPseudo to indicate that + // arguments are needed to create the filter function + // just as Sizzle does + if ( fn[ expando ] ) { + return fn( argument ); + } + + // But maintain support for old signatures + if ( fn.length > 1 ) { + args = [ pseudo, pseudo, "", argument ]; + return Expr.setFilters.hasOwnProperty( pseudo.toLowerCase() ) ? + markFunction(function( seed, matches ) { + var idx, + matched = fn( seed, argument ), + i = matched.length; + while ( i-- ) { + idx = indexOf( seed, matched[i] ); + seed[ idx ] = !( matches[ idx ] = matched[i] ); + } + }) : + function( elem ) { + return fn( elem, 0, args ); + }; + } + + return fn; + } + }, + + pseudos: { + // Potentially complex pseudos + "not": markFunction(function( selector ) { + // Trim the selector passed to compile + // to avoid treating leading and trailing + // spaces as combinators + var input = [], + results = [], + matcher = compile( selector.replace( rtrim, "$1" ) ); + + return matcher[ expando ] ? + markFunction(function( seed, matches, context, xml ) { + var elem, + unmatched = matcher( seed, null, xml, [] ), + i = seed.length; + + // Match elements unmatched by `matcher` + while ( i-- ) { + if ( (elem = unmatched[i]) ) { + seed[i] = !(matches[i] = elem); + } + } + }) : + function( elem, context, xml ) { + input[0] = elem; + matcher( input, null, xml, results ); + // Don't keep the element (issue #299) + input[0] = null; + return !results.pop(); + }; + }), + + "has": markFunction(function( selector ) { + return function( elem ) { + return Sizzle( selector, elem ).length > 0; + }; + }), + + "contains": markFunction(function( text ) { + text = text.replace( runescape, funescape ); + return function( elem ) { + return ( elem.textContent || elem.innerText || getText( elem ) ).indexOf( text ) > -1; + }; + }), + + // "Whether an element is represented by a :lang() selector + // is based solely on the element's language value + // being equal to the identifier C, + // or beginning with the identifier C immediately followed by "-". + // The matching of C against the element's language value is performed case-insensitively. + // The identifier C does not have to be a valid language name." + // http://www.w3.org/TR/selectors/#lang-pseudo + "lang": markFunction( function( lang ) { + // lang value must be a valid identifier + if ( !ridentifier.test(lang || "") ) { + Sizzle.error( "unsupported lang: " + lang ); + } + lang = lang.replace( runescape, funescape ).toLowerCase(); + return function( elem ) { + var elemLang; + do { + if ( (elemLang = documentIsHTML ? + elem.lang : + elem.getAttribute("xml:lang") || elem.getAttribute("lang")) ) { + + elemLang = elemLang.toLowerCase(); + return elemLang === lang || elemLang.indexOf( lang + "-" ) === 0; + } + } while ( (elem = elem.parentNode) && elem.nodeType === 1 ); + return false; + }; + }), + + // Miscellaneous + "target": function( elem ) { + var hash = window.location && window.location.hash; + return hash && hash.slice( 1 ) === elem.id; + }, + + "root": function( elem ) { + return elem === docElem; + }, + + "focus": function( elem ) { + return elem === document.activeElement && (!document.hasFocus || document.hasFocus()) && !!(elem.type || elem.href || ~elem.tabIndex); + }, + + // Boolean properties + "enabled": function( elem ) { + return elem.disabled === false; + }, + + "disabled": function( elem ) { + return elem.disabled === true; + }, + + "checked": function( elem ) { + // In CSS3, :checked should return both checked and selected elements + // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked + var nodeName = elem.nodeName.toLowerCase(); + return (nodeName === "input" && !!elem.checked) || (nodeName === "option" && !!elem.selected); + }, + + "selected": function( elem ) { + // Accessing this property makes selected-by-default + // options in Safari work properly + if ( elem.parentNode ) { + elem.parentNode.selectedIndex; + } + + return elem.selected === true; + }, + + // Contents + "empty": function( elem ) { + // http://www.w3.org/TR/selectors/#empty-pseudo + // :empty is negated by element (1) or content nodes (text: 3; cdata: 4; entity ref: 5), + // but not by others (comment: 8; processing instruction: 7; etc.) + // nodeType < 6 works because attributes (2) do not appear as children + for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) { + if ( elem.nodeType < 6 ) { + return false; + } + } + return true; + }, + + "parent": function( elem ) { + return !Expr.pseudos["empty"]( elem ); + }, + + // Element/input types + "header": function( elem ) { + return rheader.test( elem.nodeName ); + }, + + "input": function( elem ) { + return rinputs.test( elem.nodeName ); + }, + + "button": function( elem ) { + var name = elem.nodeName.toLowerCase(); + return name === "input" && elem.type === "button" || name === "button"; + }, + + "text": function( elem ) { + var attr; + return elem.nodeName.toLowerCase() === "input" && + elem.type === "text" && + + // Support: IE<8 + // New HTML5 attribute values (e.g., "search") appear with elem.type === "text" + ( (attr = elem.getAttribute("type")) == null || attr.toLowerCase() === "text" ); + }, + + // Position-in-collection + "first": createPositionalPseudo(function() { + return [ 0 ]; + }), + + "last": createPositionalPseudo(function( matchIndexes, length ) { + return [ length - 1 ]; + }), + + "eq": createPositionalPseudo(function( matchIndexes, length, argument ) { + return [ argument < 0 ? argument + length : argument ]; + }), + + "even": createPositionalPseudo(function( matchIndexes, length ) { + var i = 0; + for ( ; i < length; i += 2 ) { + matchIndexes.push( i ); + } + return matchIndexes; + }), + + "odd": createPositionalPseudo(function( matchIndexes, length ) { + var i = 1; + for ( ; i < length; i += 2 ) { + matchIndexes.push( i ); + } + return matchIndexes; + }), + + "lt": createPositionalPseudo(function( matchIndexes, length, argument ) { + var i = argument < 0 ? argument + length : argument; + for ( ; --i >= 0; ) { + matchIndexes.push( i ); + } + return matchIndexes; + }), + + "gt": createPositionalPseudo(function( matchIndexes, length, argument ) { + var i = argument < 0 ? argument + length : argument; + for ( ; ++i < length; ) { + matchIndexes.push( i ); + } + return matchIndexes; + }) + } +}; + +Expr.pseudos["nth"] = Expr.pseudos["eq"]; + +// Add button/input type pseudos +for ( i in { radio: true, checkbox: true, file: true, password: true, image: true } ) { + Expr.pseudos[ i ] = createInputPseudo( i ); +} +for ( i in { submit: true, reset: true } ) { + Expr.pseudos[ i ] = createButtonPseudo( i ); +} + +// Easy API for creating new setFilters +function setFilters() {} +setFilters.prototype = Expr.filters = Expr.pseudos; +Expr.setFilters = new setFilters(); + +tokenize = Sizzle.tokenize = function( selector, parseOnly ) { + var matched, match, tokens, type, + soFar, groups, preFilters, + cached = tokenCache[ selector + " " ]; + + if ( cached ) { + return parseOnly ? 0 : cached.slice( 0 ); + } + + soFar = selector; + groups = []; + preFilters = Expr.preFilter; + + while ( soFar ) { + + // Comma and first run + if ( !matched || (match = rcomma.exec( soFar )) ) { + if ( match ) { + // Don't consume trailing commas as valid + soFar = soFar.slice( match[0].length ) || soFar; + } + groups.push( (tokens = []) ); + } + + matched = false; + + // Combinators + if ( (match = rcombinators.exec( soFar )) ) { + matched = match.shift(); + tokens.push({ + value: matched, + // Cast descendant combinators to space + type: match[0].replace( rtrim, " " ) + }); + soFar = soFar.slice( matched.length ); + } + + // Filters + for ( type in Expr.filter ) { + if ( (match = matchExpr[ type ].exec( soFar )) && (!preFilters[ type ] || + (match = preFilters[ type ]( match ))) ) { + matched = match.shift(); + tokens.push({ + value: matched, + type: type, + matches: match + }); + soFar = soFar.slice( matched.length ); + } + } + + if ( !matched ) { + break; + } + } + + // Return the length of the invalid excess + // if we're just parsing + // Otherwise, throw an error or return tokens + return parseOnly ? + soFar.length : + soFar ? + Sizzle.error( selector ) : + // Cache the tokens + tokenCache( selector, groups ).slice( 0 ); +}; + +function toSelector( tokens ) { + var i = 0, + len = tokens.length, + selector = ""; + for ( ; i < len; i++ ) { + selector += tokens[i].value; + } + return selector; +} + +function addCombinator( matcher, combinator, base ) { + var dir = combinator.dir, + checkNonElements = base && dir === "parentNode", + doneName = done++; + + return combinator.first ? + // Check against closest ancestor/preceding element + function( elem, context, xml ) { + while ( (elem = elem[ dir ]) ) { + if ( elem.nodeType === 1 || checkNonElements ) { + return matcher( elem, context, xml ); + } + } + } : + + // Check against all ancestor/preceding elements + function( elem, context, xml ) { + var oldCache, outerCache, + newCache = [ dirruns, doneName ]; + + // We can't set arbitrary data on XML nodes, so they don't benefit from dir caching + if ( xml ) { + while ( (elem = elem[ dir ]) ) { + if ( elem.nodeType === 1 || checkNonElements ) { + if ( matcher( elem, context, xml ) ) { + return true; + } + } + } + } else { + while ( (elem = elem[ dir ]) ) { + if ( elem.nodeType === 1 || checkNonElements ) { + outerCache = elem[ expando ] || (elem[ expando ] = {}); + if ( (oldCache = outerCache[ dir ]) && + oldCache[ 0 ] === dirruns && oldCache[ 1 ] === doneName ) { + + // Assign to newCache so results back-propagate to previous elements + return (newCache[ 2 ] = oldCache[ 2 ]); + } else { + // Reuse newcache so results back-propagate to previous elements + outerCache[ dir ] = newCache; + + // A match means we're done; a fail means we have to keep checking + if ( (newCache[ 2 ] = matcher( elem, context, xml )) ) { + return true; + } + } + } + } + } + }; +} + +function elementMatcher( matchers ) { + return matchers.length > 1 ? + function( elem, context, xml ) { + var i = matchers.length; + while ( i-- ) { + if ( !matchers[i]( elem, context, xml ) ) { + return false; + } + } + return true; + } : + matchers[0]; +} + +function multipleContexts( selector, contexts, results ) { + var i = 0, + len = contexts.length; + for ( ; i < len; i++ ) { + Sizzle( selector, contexts[i], results ); + } + return results; +} + +function condense( unmatched, map, filter, context, xml ) { + var elem, + newUnmatched = [], + i = 0, + len = unmatched.length, + mapped = map != null; + + for ( ; i < len; i++ ) { + if ( (elem = unmatched[i]) ) { + if ( !filter || filter( elem, context, xml ) ) { + newUnmatched.push( elem ); + if ( mapped ) { + map.push( i ); + } + } + } + } + + return newUnmatched; +} + +function setMatcher( preFilter, selector, matcher, postFilter, postFinder, postSelector ) { + if ( postFilter && !postFilter[ expando ] ) { + postFilter = setMatcher( postFilter ); + } + if ( postFinder && !postFinder[ expando ] ) { + postFinder = setMatcher( postFinder, postSelector ); + } + return markFunction(function( seed, results, context, xml ) { + var temp, i, elem, + preMap = [], + postMap = [], + preexisting = results.length, + + // Get initial elements from seed or context + elems = seed || multipleContexts( selector || "*", context.nodeType ? [ context ] : context, [] ), + + // Prefilter to get matcher input, preserving a map for seed-results synchronization + matcherIn = preFilter && ( seed || !selector ) ? + condense( elems, preMap, preFilter, context, xml ) : + elems, + + matcherOut = matcher ? + // If we have a postFinder, or filtered seed, or non-seed postFilter or preexisting results, + postFinder || ( seed ? preFilter : preexisting || postFilter ) ? + + // ...intermediate processing is necessary + [] : + + // ...otherwise use results directly + results : + matcherIn; + + // Find primary matches + if ( matcher ) { + matcher( matcherIn, matcherOut, context, xml ); + } + + // Apply postFilter + if ( postFilter ) { + temp = condense( matcherOut, postMap ); + postFilter( temp, [], context, xml ); + + // Un-match failing elements by moving them back to matcherIn + i = temp.length; + while ( i-- ) { + if ( (elem = temp[i]) ) { + matcherOut[ postMap[i] ] = !(matcherIn[ postMap[i] ] = elem); + } + } + } + + if ( seed ) { + if ( postFinder || preFilter ) { + if ( postFinder ) { + // Get the final matcherOut by condensing this intermediate into postFinder contexts + temp = []; + i = matcherOut.length; + while ( i-- ) { + if ( (elem = matcherOut[i]) ) { + // Restore matcherIn since elem is not yet a final match + temp.push( (matcherIn[i] = elem) ); + } + } + postFinder( null, (matcherOut = []), temp, xml ); + } + + // Move matched elements from seed to results to keep them synchronized + i = matcherOut.length; + while ( i-- ) { + if ( (elem = matcherOut[i]) && + (temp = postFinder ? indexOf( seed, elem ) : preMap[i]) > -1 ) { + + seed[temp] = !(results[temp] = elem); + } + } + } + + // Add elements to results, through postFinder if defined + } else { + matcherOut = condense( + matcherOut === results ? + matcherOut.splice( preexisting, matcherOut.length ) : + matcherOut + ); + if ( postFinder ) { + postFinder( null, results, matcherOut, xml ); + } else { + push.apply( results, matcherOut ); + } + } + }); +} + +function matcherFromTokens( tokens ) { + var checkContext, matcher, j, + len = tokens.length, + leadingRelative = Expr.relative[ tokens[0].type ], + implicitRelative = leadingRelative || Expr.relative[" "], + i = leadingRelative ? 1 : 0, + + // The foundational matcher ensures that elements are reachable from top-level context(s) + matchContext = addCombinator( function( elem ) { + return elem === checkContext; + }, implicitRelative, true ), + matchAnyContext = addCombinator( function( elem ) { + return indexOf( checkContext, elem ) > -1; + }, implicitRelative, true ), + matchers = [ function( elem, context, xml ) { + var ret = ( !leadingRelative && ( xml || context !== outermostContext ) ) || ( + (checkContext = context).nodeType ? + matchContext( elem, context, xml ) : + matchAnyContext( elem, context, xml ) ); + // Avoid hanging onto element (issue #299) + checkContext = null; + return ret; + } ]; + + for ( ; i < len; i++ ) { + if ( (matcher = Expr.relative[ tokens[i].type ]) ) { + matchers = [ addCombinator(elementMatcher( matchers ), matcher) ]; + } else { + matcher = Expr.filter[ tokens[i].type ].apply( null, tokens[i].matches ); + + // Return special upon seeing a positional matcher + if ( matcher[ expando ] ) { + // Find the next relative operator (if any) for proper handling + j = ++i; + for ( ; j < len; j++ ) { + if ( Expr.relative[ tokens[j].type ] ) { + break; + } + } + return setMatcher( + i > 1 && elementMatcher( matchers ), + i > 1 && toSelector( + // If the preceding token was a descendant combinator, insert an implicit any-element `*` + tokens.slice( 0, i - 1 ).concat({ value: tokens[ i - 2 ].type === " " ? "*" : "" }) + ).replace( rtrim, "$1" ), + matcher, + i < j && matcherFromTokens( tokens.slice( i, j ) ), + j < len && matcherFromTokens( (tokens = tokens.slice( j )) ), + j < len && toSelector( tokens ) + ); + } + matchers.push( matcher ); + } + } + + return elementMatcher( matchers ); +} + +function matcherFromGroupMatchers( elementMatchers, setMatchers ) { + var bySet = setMatchers.length > 0, + byElement = elementMatchers.length > 0, + superMatcher = function( seed, context, xml, results, outermost ) { + var elem, j, matcher, + matchedCount = 0, + i = "0", + unmatched = seed && [], + setMatched = [], + contextBackup = outermostContext, + // We must always have either seed elements or outermost context + elems = seed || byElement && Expr.find["TAG"]( "*", outermost ), + // Use integer dirruns iff this is the outermost matcher + dirrunsUnique = (dirruns += contextBackup == null ? 1 : Math.random() || 0.1), + len = elems.length; + + if ( outermost ) { + outermostContext = context !== document && context; + } + + // Add elements passing elementMatchers directly to results + // Keep `i` a string if there are no elements so `matchedCount` will be "00" below + // Support: IE<9, Safari + // Tolerate NodeList properties (IE: "length"; Safari: ) matching elements by id + for ( ; i !== len && (elem = elems[i]) != null; i++ ) { + if ( byElement && elem ) { + j = 0; + while ( (matcher = elementMatchers[j++]) ) { + if ( matcher( elem, context, xml ) ) { + results.push( elem ); + break; + } + } + if ( outermost ) { + dirruns = dirrunsUnique; + } + } + + // Track unmatched elements for set filters + if ( bySet ) { + // They will have gone through all possible matchers + if ( (elem = !matcher && elem) ) { + matchedCount--; + } + + // Lengthen the array for every element, matched or not + if ( seed ) { + unmatched.push( elem ); + } + } + } + + // Apply set filters to unmatched elements + matchedCount += i; + if ( bySet && i !== matchedCount ) { + j = 0; + while ( (matcher = setMatchers[j++]) ) { + matcher( unmatched, setMatched, context, xml ); + } + + if ( seed ) { + // Reintegrate element matches to eliminate the need for sorting + if ( matchedCount > 0 ) { + while ( i-- ) { + if ( !(unmatched[i] || setMatched[i]) ) { + setMatched[i] = pop.call( results ); + } + } + } + + // Discard index placeholder values to get only actual matches + setMatched = condense( setMatched ); + } + + // Add matches to results + push.apply( results, setMatched ); + + // Seedless set matches succeeding multiple successful matchers stipulate sorting + if ( outermost && !seed && setMatched.length > 0 && + ( matchedCount + setMatchers.length ) > 1 ) { + + Sizzle.uniqueSort( results ); + } + } + + // Override manipulation of globals by nested matchers + if ( outermost ) { + dirruns = dirrunsUnique; + outermostContext = contextBackup; + } + + return unmatched; + }; + + return bySet ? + markFunction( superMatcher ) : + superMatcher; +} + +compile = Sizzle.compile = function( selector, match /* Internal Use Only */ ) { + var i, + setMatchers = [], + elementMatchers = [], + cached = compilerCache[ selector + " " ]; + + if ( !cached ) { + // Generate a function of recursive functions that can be used to check each element + if ( !match ) { + match = tokenize( selector ); + } + i = match.length; + while ( i-- ) { + cached = matcherFromTokens( match[i] ); + if ( cached[ expando ] ) { + setMatchers.push( cached ); + } else { + elementMatchers.push( cached ); + } + } + + // Cache the compiled function + cached = compilerCache( selector, matcherFromGroupMatchers( elementMatchers, setMatchers ) ); + + // Save selector and tokenization + cached.selector = selector; + } + return cached; +}; + +/** + * A low-level selection function that works with Sizzle's compiled + * selector functions + * @param {String|Function} selector A selector or a pre-compiled + * selector function built with Sizzle.compile + * @param {Element} context + * @param {Array} [results] + * @param {Array} [seed] A set of elements to match against + */ +select = Sizzle.select = function( selector, context, results, seed ) { + var i, tokens, token, type, find, + compiled = typeof selector === "function" && selector, + match = !seed && tokenize( (selector = compiled.selector || selector) ); + + results = results || []; + + // Try to minimize operations if there is no seed and only one group + if ( match.length === 1 ) { + + // Take a shortcut and set the context if the root selector is an ID + tokens = match[0] = match[0].slice( 0 ); + if ( tokens.length > 2 && (token = tokens[0]).type === "ID" && + support.getById && context.nodeType === 9 && documentIsHTML && + Expr.relative[ tokens[1].type ] ) { + + context = ( Expr.find["ID"]( token.matches[0].replace(runescape, funescape), context ) || [] )[0]; + if ( !context ) { + return results; + + // Precompiled matchers will still verify ancestry, so step up a level + } else if ( compiled ) { + context = context.parentNode; + } + + selector = selector.slice( tokens.shift().value.length ); + } + + // Fetch a seed set for right-to-left matching + i = matchExpr["needsContext"].test( selector ) ? 0 : tokens.length; + while ( i-- ) { + token = tokens[i]; + + // Abort if we hit a combinator + if ( Expr.relative[ (type = token.type) ] ) { + break; + } + if ( (find = Expr.find[ type ]) ) { + // Search, expanding context for leading sibling combinators + if ( (seed = find( + token.matches[0].replace( runescape, funescape ), + rsibling.test( tokens[0].type ) && testContext( context.parentNode ) || context + )) ) { + + // If seed is empty or no tokens remain, we can return early + tokens.splice( i, 1 ); + selector = seed.length && toSelector( tokens ); + if ( !selector ) { + push.apply( results, seed ); + return results; + } + + break; + } + } + } + } + + // Compile and execute a filtering function if one is not provided + // Provide `match` to avoid retokenization if we modified the selector above + ( compiled || compile( selector, match ) )( + seed, + context, + !documentIsHTML, + results, + rsibling.test( selector ) && testContext( context.parentNode ) || context + ); + return results; +}; + +// One-time assignments + +// Sort stability +support.sortStable = expando.split("").sort( sortOrder ).join("") === expando; + +// Support: Chrome 14-35+ +// Always assume duplicates if they aren't passed to the comparison function +support.detectDuplicates = !!hasDuplicate; + +// Initialize against the default document +setDocument(); + +// Support: Webkit<537.32 - Safari 6.0.3/Chrome 25 (fixed in Chrome 27) +// Detached nodes confoundingly follow *each other* +support.sortDetached = assert(function( div1 ) { + // Should return 1, but returns 4 (following) + return div1.compareDocumentPosition( document.createElement("div") ) & 1; +}); + +// Support: IE<8 +// Prevent attribute/property "interpolation" +// http://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx +if ( !assert(function( div ) { + div.innerHTML = ""; + return div.firstChild.getAttribute("href") === "#" ; +}) ) { + addHandle( "type|href|height|width", function( elem, name, isXML ) { + if ( !isXML ) { + return elem.getAttribute( name, name.toLowerCase() === "type" ? 1 : 2 ); + } + }); +} + +// Support: IE<9 +// Use defaultValue in place of getAttribute("value") +if ( !support.attributes || !assert(function( div ) { + div.innerHTML = ""; + div.firstChild.setAttribute( "value", "" ); + return div.firstChild.getAttribute( "value" ) === ""; +}) ) { + addHandle( "value", function( elem, name, isXML ) { + if ( !isXML && elem.nodeName.toLowerCase() === "input" ) { + return elem.defaultValue; + } + }); +} + +// Support: IE<9 +// Use getAttributeNode to fetch booleans when getAttribute lies +if ( !assert(function( div ) { + return div.getAttribute("disabled") == null; +}) ) { + addHandle( booleans, function( elem, name, isXML ) { + var val; + if ( !isXML ) { + return elem[ name ] === true ? name.toLowerCase() : + (val = elem.getAttributeNode( name )) && val.specified ? + val.value : + null; + } + }); +} + +return Sizzle; + +})( window ); + + + +jQuery.find = Sizzle; +jQuery.expr = Sizzle.selectors; +jQuery.expr[":"] = jQuery.expr.pseudos; +jQuery.unique = Sizzle.uniqueSort; +jQuery.text = Sizzle.getText; +jQuery.isXMLDoc = Sizzle.isXML; +jQuery.contains = Sizzle.contains; + + + +var rneedsContext = jQuery.expr.match.needsContext; + +var rsingleTag = (/^<(\w+)\s*\/?>(?:<\/\1>|)$/); + + + +var risSimple = /^.[^:#\[\.,]*$/; + +// Implement the identical functionality for filter and not +function winnow( elements, qualifier, not ) { + if ( jQuery.isFunction( qualifier ) ) { + return jQuery.grep( elements, function( elem, i ) { + /* jshint -W018 */ + return !!qualifier.call( elem, i, elem ) !== not; + }); + + } + + if ( qualifier.nodeType ) { + return jQuery.grep( elements, function( elem ) { + return ( elem === qualifier ) !== not; + }); + + } + + if ( typeof qualifier === "string" ) { + if ( risSimple.test( qualifier ) ) { + return jQuery.filter( qualifier, elements, not ); + } + + qualifier = jQuery.filter( qualifier, elements ); + } + + return jQuery.grep( elements, function( elem ) { + return ( indexOf.call( qualifier, elem ) >= 0 ) !== not; + }); +} + +jQuery.filter = function( expr, elems, not ) { + var elem = elems[ 0 ]; + + if ( not ) { + expr = ":not(" + expr + ")"; + } + + return elems.length === 1 && elem.nodeType === 1 ? + jQuery.find.matchesSelector( elem, expr ) ? [ elem ] : [] : + jQuery.find.matches( expr, jQuery.grep( elems, function( elem ) { + return elem.nodeType === 1; + })); +}; + +jQuery.fn.extend({ + find: function( selector ) { + var i, + len = this.length, + ret = [], + self = this; + + if ( typeof selector !== "string" ) { + return this.pushStack( jQuery( selector ).filter(function() { + for ( i = 0; i < len; i++ ) { + if ( jQuery.contains( self[ i ], this ) ) { + return true; + } + } + }) ); + } + + for ( i = 0; i < len; i++ ) { + jQuery.find( selector, self[ i ], ret ); + } + + // Needed because $( selector, context ) becomes $( context ).find( selector ) + ret = this.pushStack( len > 1 ? jQuery.unique( ret ) : ret ); + ret.selector = this.selector ? this.selector + " " + selector : selector; + return ret; + }, + filter: function( selector ) { + return this.pushStack( winnow(this, selector || [], false) ); + }, + not: function( selector ) { + return this.pushStack( winnow(this, selector || [], true) ); + }, + is: function( selector ) { + return !!winnow( + this, + + // If this is a positional/relative selector, check membership in the returned set + // so $("p:first").is("p:last") won't return true for a doc with two "p". + typeof selector === "string" && rneedsContext.test( selector ) ? + jQuery( selector ) : + selector || [], + false + ).length; + } +}); + + +// Initialize a jQuery object + + +// A central reference to the root jQuery(document) +var rootjQuery, + + // A simple way to check for HTML strings + // Prioritize #id over to avoid XSS via location.hash (#9521) + // Strict HTML recognition (#11290: must start with <) + rquickExpr = /^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]*))$/, + + init = jQuery.fn.init = function( selector, context ) { + var match, elem; + + // HANDLE: $(""), $(null), $(undefined), $(false) + if ( !selector ) { + return this; + } + + // Handle HTML strings + if ( typeof selector === "string" ) { + if ( selector[0] === "<" && selector[ selector.length - 1 ] === ">" && selector.length >= 3 ) { + // Assume that strings that start and end with <> are HTML and skip the regex check + match = [ null, selector, null ]; + + } else { + match = rquickExpr.exec( selector ); + } + + // Match html or make sure no context is specified for #id + if ( match && (match[1] || !context) ) { + + // HANDLE: $(html) -> $(array) + if ( match[1] ) { + context = context instanceof jQuery ? context[0] : context; + + // Option to run scripts is true for back-compat + // Intentionally let the error be thrown if parseHTML is not present + jQuery.merge( this, jQuery.parseHTML( + match[1], + context && context.nodeType ? context.ownerDocument || context : document, + true + ) ); + + // HANDLE: $(html, props) + if ( rsingleTag.test( match[1] ) && jQuery.isPlainObject( context ) ) { + for ( match in context ) { + // Properties of context are called as methods if possible + if ( jQuery.isFunction( this[ match ] ) ) { + this[ match ]( context[ match ] ); + + // ...and otherwise set as attributes + } else { + this.attr( match, context[ match ] ); + } + } + } + + return this; + + // HANDLE: $(#id) + } else { + elem = document.getElementById( match[2] ); + + // Support: Blackberry 4.6 + // gEBID returns nodes no longer in the document (#6963) + if ( elem && elem.parentNode ) { + // Inject the element directly into the jQuery object + this.length = 1; + this[0] = elem; + } + + this.context = document; + this.selector = selector; + return this; + } + + // HANDLE: $(expr, $(...)) + } else if ( !context || context.jquery ) { + return ( context || rootjQuery ).find( selector ); + + // HANDLE: $(expr, context) + // (which is just equivalent to: $(context).find(expr) + } else { + return this.constructor( context ).find( selector ); + } + + // HANDLE: $(DOMElement) + } else if ( selector.nodeType ) { + this.context = this[0] = selector; + this.length = 1; + return this; + + // HANDLE: $(function) + // Shortcut for document ready + } else if ( jQuery.isFunction( selector ) ) { + return typeof rootjQuery.ready !== "undefined" ? + rootjQuery.ready( selector ) : + // Execute immediately if ready is not present + selector( jQuery ); + } + + if ( selector.selector !== undefined ) { + this.selector = selector.selector; + this.context = selector.context; + } + + return jQuery.makeArray( selector, this ); + }; + +// Give the init function the jQuery prototype for later instantiation +init.prototype = jQuery.fn; + +// Initialize central reference +rootjQuery = jQuery( document ); + + +var rparentsprev = /^(?:parents|prev(?:Until|All))/, + // Methods guaranteed to produce a unique set when starting from a unique set + guaranteedUnique = { + children: true, + contents: true, + next: true, + prev: true + }; + +jQuery.extend({ + dir: function( elem, dir, until ) { + var matched = [], + truncate = until !== undefined; + + while ( (elem = elem[ dir ]) && elem.nodeType !== 9 ) { + if ( elem.nodeType === 1 ) { + if ( truncate && jQuery( elem ).is( until ) ) { + break; + } + matched.push( elem ); + } + } + return matched; + }, + + sibling: function( n, elem ) { + var matched = []; + + for ( ; n; n = n.nextSibling ) { + if ( n.nodeType === 1 && n !== elem ) { + matched.push( n ); + } + } + + return matched; + } +}); + +jQuery.fn.extend({ + has: function( target ) { + var targets = jQuery( target, this ), + l = targets.length; + + return this.filter(function() { + var i = 0; + for ( ; i < l; i++ ) { + if ( jQuery.contains( this, targets[i] ) ) { + return true; + } + } + }); + }, + + closest: function( selectors, context ) { + var cur, + i = 0, + l = this.length, + matched = [], + pos = rneedsContext.test( selectors ) || typeof selectors !== "string" ? + jQuery( selectors, context || this.context ) : + 0; + + for ( ; i < l; i++ ) { + for ( cur = this[i]; cur && cur !== context; cur = cur.parentNode ) { + // Always skip document fragments + if ( cur.nodeType < 11 && (pos ? + pos.index(cur) > -1 : + + // Don't pass non-elements to Sizzle + cur.nodeType === 1 && + jQuery.find.matchesSelector(cur, selectors)) ) { + + matched.push( cur ); + break; + } + } + } + + return this.pushStack( matched.length > 1 ? jQuery.unique( matched ) : matched ); + }, + + // Determine the position of an element within the set + index: function( elem ) { + + // No argument, return index in parent + if ( !elem ) { + return ( this[ 0 ] && this[ 0 ].parentNode ) ? this.first().prevAll().length : -1; + } + + // Index in selector + if ( typeof elem === "string" ) { + return indexOf.call( jQuery( elem ), this[ 0 ] ); + } + + // Locate the position of the desired element + return indexOf.call( this, + + // If it receives a jQuery object, the first element is used + elem.jquery ? elem[ 0 ] : elem + ); + }, + + add: function( selector, context ) { + return this.pushStack( + jQuery.unique( + jQuery.merge( this.get(), jQuery( selector, context ) ) + ) + ); + }, + + addBack: function( selector ) { + return this.add( selector == null ? + this.prevObject : this.prevObject.filter(selector) + ); + } +}); + +function sibling( cur, dir ) { + while ( (cur = cur[dir]) && cur.nodeType !== 1 ) {} + return cur; +} + +jQuery.each({ + parent: function( elem ) { + var parent = elem.parentNode; + return parent && parent.nodeType !== 11 ? parent : null; + }, + parents: function( elem ) { + return jQuery.dir( elem, "parentNode" ); + }, + parentsUntil: function( elem, i, until ) { + return jQuery.dir( elem, "parentNode", until ); + }, + next: function( elem ) { + return sibling( elem, "nextSibling" ); + }, + prev: function( elem ) { + return sibling( elem, "previousSibling" ); + }, + nextAll: function( elem ) { + return jQuery.dir( elem, "nextSibling" ); + }, + prevAll: function( elem ) { + return jQuery.dir( elem, "previousSibling" ); + }, + nextUntil: function( elem, i, until ) { + return jQuery.dir( elem, "nextSibling", until ); + }, + prevUntil: function( elem, i, until ) { + return jQuery.dir( elem, "previousSibling", until ); + }, + siblings: function( elem ) { + return jQuery.sibling( ( elem.parentNode || {} ).firstChild, elem ); + }, + children: function( elem ) { + return jQuery.sibling( elem.firstChild ); + }, + contents: function( elem ) { + return elem.contentDocument || jQuery.merge( [], elem.childNodes ); + } +}, function( name, fn ) { + jQuery.fn[ name ] = function( until, selector ) { + var matched = jQuery.map( this, fn, until ); + + if ( name.slice( -5 ) !== "Until" ) { + selector = until; + } + + if ( selector && typeof selector === "string" ) { + matched = jQuery.filter( selector, matched ); + } + + if ( this.length > 1 ) { + // Remove duplicates + if ( !guaranteedUnique[ name ] ) { + jQuery.unique( matched ); + } + + // Reverse order for parents* and prev-derivatives + if ( rparentsprev.test( name ) ) { + matched.reverse(); + } + } + + return this.pushStack( matched ); + }; +}); +var rnotwhite = (/\S+/g); + + + +// String to Object options format cache +var optionsCache = {}; + +// Convert String-formatted options into Object-formatted ones and store in cache +function createOptions( options ) { + var object = optionsCache[ options ] = {}; + jQuery.each( options.match( rnotwhite ) || [], function( _, flag ) { + object[ flag ] = true; + }); + return object; +} + +/* + * Create a callback list using the following parameters: + * + * options: an optional list of space-separated options that will change how + * the callback list behaves or a more traditional option object + * + * By default a callback list will act like an event callback list and can be + * "fired" multiple times. + * + * Possible options: + * + * once: will ensure the callback list can only be fired once (like a Deferred) + * + * memory: will keep track of previous values and will call any callback added + * after the list has been fired right away with the latest "memorized" + * values (like a Deferred) + * + * unique: will ensure a callback can only be added once (no duplicate in the list) + * + * stopOnFalse: interrupt callings when a callback returns false + * + */ +jQuery.Callbacks = function( options ) { + + // Convert options from String-formatted to Object-formatted if needed + // (we check in cache first) + options = typeof options === "string" ? + ( optionsCache[ options ] || createOptions( options ) ) : + jQuery.extend( {}, options ); + + var // Last fire value (for non-forgettable lists) + memory, + // Flag to know if list was already fired + fired, + // Flag to know if list is currently firing + firing, + // First callback to fire (used internally by add and fireWith) + firingStart, + // End of the loop when firing + firingLength, + // Index of currently firing callback (modified by remove if needed) + firingIndex, + // Actual callback list + list = [], + // Stack of fire calls for repeatable lists + stack = !options.once && [], + // Fire callbacks + fire = function( data ) { + memory = options.memory && data; + fired = true; + firingIndex = firingStart || 0; + firingStart = 0; + firingLength = list.length; + firing = true; + for ( ; list && firingIndex < firingLength; firingIndex++ ) { + if ( list[ firingIndex ].apply( data[ 0 ], data[ 1 ] ) === false && options.stopOnFalse ) { + memory = false; // To prevent further calls using add + break; + } + } + firing = false; + if ( list ) { + if ( stack ) { + if ( stack.length ) { + fire( stack.shift() ); + } + } else if ( memory ) { + list = []; + } else { + self.disable(); + } + } + }, + // Actual Callbacks object + self = { + // Add a callback or a collection of callbacks to the list + add: function() { + if ( list ) { + // First, we save the current length + var start = list.length; + (function add( args ) { + jQuery.each( args, function( _, arg ) { + var type = jQuery.type( arg ); + if ( type === "function" ) { + if ( !options.unique || !self.has( arg ) ) { + list.push( arg ); + } + } else if ( arg && arg.length && type !== "string" ) { + // Inspect recursively + add( arg ); + } + }); + })( arguments ); + // Do we need to add the callbacks to the + // current firing batch? + if ( firing ) { + firingLength = list.length; + // With memory, if we're not firing then + // we should call right away + } else if ( memory ) { + firingStart = start; + fire( memory ); + } + } + return this; + }, + // Remove a callback from the list + remove: function() { + if ( list ) { + jQuery.each( arguments, function( _, arg ) { + var index; + while ( ( index = jQuery.inArray( arg, list, index ) ) > -1 ) { + list.splice( index, 1 ); + // Handle firing indexes + if ( firing ) { + if ( index <= firingLength ) { + firingLength--; + } + if ( index <= firingIndex ) { + firingIndex--; + } + } + } + }); + } + return this; + }, + // Check if a given callback is in the list. + // If no argument is given, return whether or not list has callbacks attached. + has: function( fn ) { + return fn ? jQuery.inArray( fn, list ) > -1 : !!( list && list.length ); + }, + // Remove all callbacks from the list + empty: function() { + list = []; + firingLength = 0; + return this; + }, + // Have the list do nothing anymore + disable: function() { + list = stack = memory = undefined; + return this; + }, + // Is it disabled? + disabled: function() { + return !list; + }, + // Lock the list in its current state + lock: function() { + stack = undefined; + if ( !memory ) { + self.disable(); + } + return this; + }, + // Is it locked? + locked: function() { + return !stack; + }, + // Call all callbacks with the given context and arguments + fireWith: function( context, args ) { + if ( list && ( !fired || stack ) ) { + args = args || []; + args = [ context, args.slice ? args.slice() : args ]; + if ( firing ) { + stack.push( args ); + } else { + fire( args ); + } + } + return this; + }, + // Call all the callbacks with the given arguments + fire: function() { + self.fireWith( this, arguments ); + return this; + }, + // To know if the callbacks have already been called at least once + fired: function() { + return !!fired; + } + }; + + return self; +}; + + +jQuery.extend({ + + Deferred: function( func ) { + var tuples = [ + // action, add listener, listener list, final state + [ "resolve", "done", jQuery.Callbacks("once memory"), "resolved" ], + [ "reject", "fail", jQuery.Callbacks("once memory"), "rejected" ], + [ "notify", "progress", jQuery.Callbacks("memory") ] + ], + state = "pending", + promise = { + state: function() { + return state; + }, + always: function() { + deferred.done( arguments ).fail( arguments ); + return this; + }, + then: function( /* fnDone, fnFail, fnProgress */ ) { + var fns = arguments; + return jQuery.Deferred(function( newDefer ) { + jQuery.each( tuples, function( i, tuple ) { + var fn = jQuery.isFunction( fns[ i ] ) && fns[ i ]; + // deferred[ done | fail | progress ] for forwarding actions to newDefer + deferred[ tuple[1] ](function() { + var returned = fn && fn.apply( this, arguments ); + if ( returned && jQuery.isFunction( returned.promise ) ) { + returned.promise() + .done( newDefer.resolve ) + .fail( newDefer.reject ) + .progress( newDefer.notify ); + } else { + newDefer[ tuple[ 0 ] + "With" ]( this === promise ? newDefer.promise() : this, fn ? [ returned ] : arguments ); + } + }); + }); + fns = null; + }).promise(); + }, + // Get a promise for this deferred + // If obj is provided, the promise aspect is added to the object + promise: function( obj ) { + return obj != null ? jQuery.extend( obj, promise ) : promise; + } + }, + deferred = {}; + + // Keep pipe for back-compat + promise.pipe = promise.then; + + // Add list-specific methods + jQuery.each( tuples, function( i, tuple ) { + var list = tuple[ 2 ], + stateString = tuple[ 3 ]; + + // promise[ done | fail | progress ] = list.add + promise[ tuple[1] ] = list.add; + + // Handle state + if ( stateString ) { + list.add(function() { + // state = [ resolved | rejected ] + state = stateString; + + // [ reject_list | resolve_list ].disable; progress_list.lock + }, tuples[ i ^ 1 ][ 2 ].disable, tuples[ 2 ][ 2 ].lock ); + } + + // deferred[ resolve | reject | notify ] + deferred[ tuple[0] ] = function() { + deferred[ tuple[0] + "With" ]( this === deferred ? promise : this, arguments ); + return this; + }; + deferred[ tuple[0] + "With" ] = list.fireWith; + }); + + // Make the deferred a promise + promise.promise( deferred ); + + // Call given func if any + if ( func ) { + func.call( deferred, deferred ); + } + + // All done! + return deferred; + }, + + // Deferred helper + when: function( subordinate /* , ..., subordinateN */ ) { + var i = 0, + resolveValues = slice.call( arguments ), + length = resolveValues.length, + + // the count of uncompleted subordinates + remaining = length !== 1 || ( subordinate && jQuery.isFunction( subordinate.promise ) ) ? length : 0, + + // the master Deferred. If resolveValues consist of only a single Deferred, just use that. + deferred = remaining === 1 ? subordinate : jQuery.Deferred(), + + // Update function for both resolve and progress values + updateFunc = function( i, contexts, values ) { + return function( value ) { + contexts[ i ] = this; + values[ i ] = arguments.length > 1 ? slice.call( arguments ) : value; + if ( values === progressValues ) { + deferred.notifyWith( contexts, values ); + } else if ( !( --remaining ) ) { + deferred.resolveWith( contexts, values ); + } + }; + }, + + progressValues, progressContexts, resolveContexts; + + // Add listeners to Deferred subordinates; treat others as resolved + if ( length > 1 ) { + progressValues = new Array( length ); + progressContexts = new Array( length ); + resolveContexts = new Array( length ); + for ( ; i < length; i++ ) { + if ( resolveValues[ i ] && jQuery.isFunction( resolveValues[ i ].promise ) ) { + resolveValues[ i ].promise() + .done( updateFunc( i, resolveContexts, resolveValues ) ) + .fail( deferred.reject ) + .progress( updateFunc( i, progressContexts, progressValues ) ); + } else { + --remaining; + } + } + } + + // If we're not waiting on anything, resolve the master + if ( !remaining ) { + deferred.resolveWith( resolveContexts, resolveValues ); + } + + return deferred.promise(); + } +}); + + +// The deferred used on DOM ready +var readyList; + +jQuery.fn.ready = function( fn ) { + // Add the callback + jQuery.ready.promise().done( fn ); + + return this; +}; + +jQuery.extend({ + // Is the DOM ready to be used? Set to true once it occurs. + isReady: false, + + // A counter to track how many items to wait for before + // the ready event fires. See #6781 + readyWait: 1, + + // Hold (or release) the ready event + holdReady: function( hold ) { + if ( hold ) { + jQuery.readyWait++; + } else { + jQuery.ready( true ); + } + }, + + // Handle when the DOM is ready + ready: function( wait ) { + + // Abort if there are pending holds or we're already ready + if ( wait === true ? --jQuery.readyWait : jQuery.isReady ) { + return; + } + + // Remember that the DOM is ready + jQuery.isReady = true; + + // If a normal DOM Ready event fired, decrement, and wait if need be + if ( wait !== true && --jQuery.readyWait > 0 ) { + return; + } + + // If there are functions bound, to execute + readyList.resolveWith( document, [ jQuery ] ); + + // Trigger any bound ready events + if ( jQuery.fn.triggerHandler ) { + jQuery( document ).triggerHandler( "ready" ); + jQuery( document ).off( "ready" ); + } + } +}); + +/** + * The ready event handler and self cleanup method + */ +function completed() { + document.removeEventListener( "DOMContentLoaded", completed, false ); + window.removeEventListener( "load", completed, false ); + jQuery.ready(); +} + +jQuery.ready.promise = function( obj ) { + if ( !readyList ) { + + readyList = jQuery.Deferred(); + + // Catch cases where $(document).ready() is called after the browser event has already occurred. + // We once tried to use readyState "interactive" here, but it caused issues like the one + // discovered by ChrisS here: http://bugs.jquery.com/ticket/12282#comment:15 + if ( document.readyState === "complete" ) { + // Handle it asynchronously to allow scripts the opportunity to delay ready + setTimeout( jQuery.ready ); + + } else { + + // Use the handy event callback + document.addEventListener( "DOMContentLoaded", completed, false ); + + // A fallback to window.onload, that will always work + window.addEventListener( "load", completed, false ); + } + } + return readyList.promise( obj ); +}; + +// Kick off the DOM ready check even if the user does not +jQuery.ready.promise(); + + + + +// Multifunctional method to get and set values of a collection +// The value/s can optionally be executed if it's a function +var access = jQuery.access = function( elems, fn, key, value, chainable, emptyGet, raw ) { + var i = 0, + len = elems.length, + bulk = key == null; + + // Sets many values + if ( jQuery.type( key ) === "object" ) { + chainable = true; + for ( i in key ) { + jQuery.access( elems, fn, i, key[i], true, emptyGet, raw ); + } + + // Sets one value + } else if ( value !== undefined ) { + chainable = true; + + if ( !jQuery.isFunction( value ) ) { + raw = true; + } + + if ( bulk ) { + // Bulk operations run against the entire set + if ( raw ) { + fn.call( elems, value ); + fn = null; + + // ...except when executing function values + } else { + bulk = fn; + fn = function( elem, key, value ) { + return bulk.call( jQuery( elem ), value ); + }; + } + } + + if ( fn ) { + for ( ; i < len; i++ ) { + fn( elems[i], key, raw ? value : value.call( elems[i], i, fn( elems[i], key ) ) ); + } + } + } + + return chainable ? + elems : + + // Gets + bulk ? + fn.call( elems ) : + len ? fn( elems[0], key ) : emptyGet; +}; + + +/** + * Determines whether an object can have data + */ +jQuery.acceptData = function( owner ) { + // Accepts only: + // - Node + // - Node.ELEMENT_NODE + // - Node.DOCUMENT_NODE + // - Object + // - Any + /* jshint -W018 */ + return owner.nodeType === 1 || owner.nodeType === 9 || !( +owner.nodeType ); +}; + + +function Data() { + // Support: Android<4, + // Old WebKit does not have Object.preventExtensions/freeze method, + // return new empty object instead with no [[set]] accessor + Object.defineProperty( this.cache = {}, 0, { + get: function() { + return {}; + } + }); + + this.expando = jQuery.expando + Data.uid++; +} + +Data.uid = 1; +Data.accepts = jQuery.acceptData; + +Data.prototype = { + key: function( owner ) { + // We can accept data for non-element nodes in modern browsers, + // but we should not, see #8335. + // Always return the key for a frozen object. + if ( !Data.accepts( owner ) ) { + return 0; + } + + var descriptor = {}, + // Check if the owner object already has a cache key + unlock = owner[ this.expando ]; + + // If not, create one + if ( !unlock ) { + unlock = Data.uid++; + + // Secure it in a non-enumerable, non-writable property + try { + descriptor[ this.expando ] = { value: unlock }; + Object.defineProperties( owner, descriptor ); + + // Support: Android<4 + // Fallback to a less secure definition + } catch ( e ) { + descriptor[ this.expando ] = unlock; + jQuery.extend( owner, descriptor ); + } + } + + // Ensure the cache object + if ( !this.cache[ unlock ] ) { + this.cache[ unlock ] = {}; + } + + return unlock; + }, + set: function( owner, data, value ) { + var prop, + // There may be an unlock assigned to this node, + // if there is no entry for this "owner", create one inline + // and set the unlock as though an owner entry had always existed + unlock = this.key( owner ), + cache = this.cache[ unlock ]; + + // Handle: [ owner, key, value ] args + if ( typeof data === "string" ) { + cache[ data ] = value; + + // Handle: [ owner, { properties } ] args + } else { + // Fresh assignments by object are shallow copied + if ( jQuery.isEmptyObject( cache ) ) { + jQuery.extend( this.cache[ unlock ], data ); + // Otherwise, copy the properties one-by-one to the cache object + } else { + for ( prop in data ) { + cache[ prop ] = data[ prop ]; + } + } + } + return cache; + }, + get: function( owner, key ) { + // Either a valid cache is found, or will be created. + // New caches will be created and the unlock returned, + // allowing direct access to the newly created + // empty data object. A valid owner object must be provided. + var cache = this.cache[ this.key( owner ) ]; + + return key === undefined ? + cache : cache[ key ]; + }, + access: function( owner, key, value ) { + var stored; + // In cases where either: + // + // 1. No key was specified + // 2. A string key was specified, but no value provided + // + // Take the "read" path and allow the get method to determine + // which value to return, respectively either: + // + // 1. The entire cache object + // 2. The data stored at the key + // + if ( key === undefined || + ((key && typeof key === "string") && value === undefined) ) { + + stored = this.get( owner, key ); + + return stored !== undefined ? + stored : this.get( owner, jQuery.camelCase(key) ); + } + + // [*]When the key is not a string, or both a key and value + // are specified, set or extend (existing objects) with either: + // + // 1. An object of properties + // 2. A key and value + // + this.set( owner, key, value ); + + // Since the "set" path can have two possible entry points + // return the expected data based on which path was taken[*] + return value !== undefined ? value : key; + }, + remove: function( owner, key ) { + var i, name, camel, + unlock = this.key( owner ), + cache = this.cache[ unlock ]; + + if ( key === undefined ) { + this.cache[ unlock ] = {}; + + } else { + // Support array or space separated string of keys + if ( jQuery.isArray( key ) ) { + // If "name" is an array of keys... + // When data is initially created, via ("key", "val") signature, + // keys will be converted to camelCase. + // Since there is no way to tell _how_ a key was added, remove + // both plain key and camelCase key. #12786 + // This will only penalize the array argument path. + name = key.concat( key.map( jQuery.camelCase ) ); + } else { + camel = jQuery.camelCase( key ); + // Try the string as a key before any manipulation + if ( key in cache ) { + name = [ key, camel ]; + } else { + // If a key with the spaces exists, use it. + // Otherwise, create an array by matching non-whitespace + name = camel; + name = name in cache ? + [ name ] : ( name.match( rnotwhite ) || [] ); + } + } + + i = name.length; + while ( i-- ) { + delete cache[ name[ i ] ]; + } + } + }, + hasData: function( owner ) { + return !jQuery.isEmptyObject( + this.cache[ owner[ this.expando ] ] || {} + ); + }, + discard: function( owner ) { + if ( owner[ this.expando ] ) { + delete this.cache[ owner[ this.expando ] ]; + } + } +}; +var data_priv = new Data(); + +var data_user = new Data(); + + + +// Implementation Summary +// +// 1. Enforce API surface and semantic compatibility with 1.9.x branch +// 2. Improve the module's maintainability by reducing the storage +// paths to a single mechanism. +// 3. Use the same single mechanism to support "private" and "user" data. +// 4. _Never_ expose "private" data to user code (TODO: Drop _data, _removeData) +// 5. Avoid exposing implementation details on user objects (eg. expando properties) +// 6. Provide a clear path for implementation upgrade to WeakMap in 2014 + +var rbrace = /^(?:\{[\w\W]*\}|\[[\w\W]*\])$/, + rmultiDash = /([A-Z])/g; + +function dataAttr( elem, key, data ) { + var name; + + // If nothing was found internally, try to fetch any + // data from the HTML5 data-* attribute + if ( data === undefined && elem.nodeType === 1 ) { + name = "data-" + key.replace( rmultiDash, "-$1" ).toLowerCase(); + data = elem.getAttribute( name ); + + if ( typeof data === "string" ) { + try { + data = data === "true" ? true : + data === "false" ? false : + data === "null" ? null : + // Only convert to a number if it doesn't change the string + +data + "" === data ? +data : + rbrace.test( data ) ? jQuery.parseJSON( data ) : + data; + } catch( e ) {} + + // Make sure we set the data so it isn't changed later + data_user.set( elem, key, data ); + } else { + data = undefined; + } + } + return data; +} + +jQuery.extend({ + hasData: function( elem ) { + return data_user.hasData( elem ) || data_priv.hasData( elem ); + }, + + data: function( elem, name, data ) { + return data_user.access( elem, name, data ); + }, + + removeData: function( elem, name ) { + data_user.remove( elem, name ); + }, + + // TODO: Now that all calls to _data and _removeData have been replaced + // with direct calls to data_priv methods, these can be deprecated. + _data: function( elem, name, data ) { + return data_priv.access( elem, name, data ); + }, + + _removeData: function( elem, name ) { + data_priv.remove( elem, name ); + } +}); + +jQuery.fn.extend({ + data: function( key, value ) { + var i, name, data, + elem = this[ 0 ], + attrs = elem && elem.attributes; + + // Gets all values + if ( key === undefined ) { + if ( this.length ) { + data = data_user.get( elem ); + + if ( elem.nodeType === 1 && !data_priv.get( elem, "hasDataAttrs" ) ) { + i = attrs.length; + while ( i-- ) { + + // Support: IE11+ + // The attrs elements can be null (#14894) + if ( attrs[ i ] ) { + name = attrs[ i ].name; + if ( name.indexOf( "data-" ) === 0 ) { + name = jQuery.camelCase( name.slice(5) ); + dataAttr( elem, name, data[ name ] ); + } + } + } + data_priv.set( elem, "hasDataAttrs", true ); + } + } + + return data; + } + + // Sets multiple values + if ( typeof key === "object" ) { + return this.each(function() { + data_user.set( this, key ); + }); + } + + return access( this, function( value ) { + var data, + camelKey = jQuery.camelCase( key ); + + // The calling jQuery object (element matches) is not empty + // (and therefore has an element appears at this[ 0 ]) and the + // `value` parameter was not undefined. An empty jQuery object + // will result in `undefined` for elem = this[ 0 ] which will + // throw an exception if an attempt to read a data cache is made. + if ( elem && value === undefined ) { + // Attempt to get data from the cache + // with the key as-is + data = data_user.get( elem, key ); + if ( data !== undefined ) { + return data; + } + + // Attempt to get data from the cache + // with the key camelized + data = data_user.get( elem, camelKey ); + if ( data !== undefined ) { + return data; + } + + // Attempt to "discover" the data in + // HTML5 custom data-* attrs + data = dataAttr( elem, camelKey, undefined ); + if ( data !== undefined ) { + return data; + } + + // We tried really hard, but the data doesn't exist. + return; + } + + // Set the data... + this.each(function() { + // First, attempt to store a copy or reference of any + // data that might've been store with a camelCased key. + var data = data_user.get( this, camelKey ); + + // For HTML5 data-* attribute interop, we have to + // store property names with dashes in a camelCase form. + // This might not apply to all properties...* + data_user.set( this, camelKey, value ); + + // *... In the case of properties that might _actually_ + // have dashes, we need to also store a copy of that + // unchanged property. + if ( key.indexOf("-") !== -1 && data !== undefined ) { + data_user.set( this, key, value ); + } + }); + }, null, value, arguments.length > 1, null, true ); + }, + + removeData: function( key ) { + return this.each(function() { + data_user.remove( this, key ); + }); + } +}); + + +jQuery.extend({ + queue: function( elem, type, data ) { + var queue; + + if ( elem ) { + type = ( type || "fx" ) + "queue"; + queue = data_priv.get( elem, type ); + + // Speed up dequeue by getting out quickly if this is just a lookup + if ( data ) { + if ( !queue || jQuery.isArray( data ) ) { + queue = data_priv.access( elem, type, jQuery.makeArray(data) ); + } else { + queue.push( data ); + } + } + return queue || []; + } + }, + + dequeue: function( elem, type ) { + type = type || "fx"; + + var queue = jQuery.queue( elem, type ), + startLength = queue.length, + fn = queue.shift(), + hooks = jQuery._queueHooks( elem, type ), + next = function() { + jQuery.dequeue( elem, type ); + }; + + // If the fx queue is dequeued, always remove the progress sentinel + if ( fn === "inprogress" ) { + fn = queue.shift(); + startLength--; + } + + if ( fn ) { + + // Add a progress sentinel to prevent the fx queue from being + // automatically dequeued + if ( type === "fx" ) { + queue.unshift( "inprogress" ); + } + + // Clear up the last queue stop function + delete hooks.stop; + fn.call( elem, next, hooks ); + } + + if ( !startLength && hooks ) { + hooks.empty.fire(); + } + }, + + // Not public - generate a queueHooks object, or return the current one + _queueHooks: function( elem, type ) { + var key = type + "queueHooks"; + return data_priv.get( elem, key ) || data_priv.access( elem, key, { + empty: jQuery.Callbacks("once memory").add(function() { + data_priv.remove( elem, [ type + "queue", key ] ); + }) + }); + } +}); + +jQuery.fn.extend({ + queue: function( type, data ) { + var setter = 2; + + if ( typeof type !== "string" ) { + data = type; + type = "fx"; + setter--; + } + + if ( arguments.length < setter ) { + return jQuery.queue( this[0], type ); + } + + return data === undefined ? + this : + this.each(function() { + var queue = jQuery.queue( this, type, data ); + + // Ensure a hooks for this queue + jQuery._queueHooks( this, type ); + + if ( type === "fx" && queue[0] !== "inprogress" ) { + jQuery.dequeue( this, type ); + } + }); + }, + dequeue: function( type ) { + return this.each(function() { + jQuery.dequeue( this, type ); + }); + }, + clearQueue: function( type ) { + return this.queue( type || "fx", [] ); + }, + // Get a promise resolved when queues of a certain type + // are emptied (fx is the type by default) + promise: function( type, obj ) { + var tmp, + count = 1, + defer = jQuery.Deferred(), + elements = this, + i = this.length, + resolve = function() { + if ( !( --count ) ) { + defer.resolveWith( elements, [ elements ] ); + } + }; + + if ( typeof type !== "string" ) { + obj = type; + type = undefined; + } + type = type || "fx"; + + while ( i-- ) { + tmp = data_priv.get( elements[ i ], type + "queueHooks" ); + if ( tmp && tmp.empty ) { + count++; + tmp.empty.add( resolve ); + } + } + resolve(); + return defer.promise( obj ); + } +}); +var pnum = (/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/).source; + +var cssExpand = [ "Top", "Right", "Bottom", "Left" ]; + +var isHidden = function( elem, el ) { + // isHidden might be called from jQuery#filter function; + // in that case, element will be second argument + elem = el || elem; + return jQuery.css( elem, "display" ) === "none" || !jQuery.contains( elem.ownerDocument, elem ); + }; + +var rcheckableType = (/^(?:checkbox|radio)$/i); + + + +(function() { + var fragment = document.createDocumentFragment(), + div = fragment.appendChild( document.createElement( "div" ) ), + input = document.createElement( "input" ); + + // Support: Safari<=5.1 + // Check state lost if the name is set (#11217) + // Support: Windows Web Apps (WWA) + // `name` and `type` must use .setAttribute for WWA (#14901) + input.setAttribute( "type", "radio" ); + input.setAttribute( "checked", "checked" ); + input.setAttribute( "name", "t" ); + + div.appendChild( input ); + + // Support: Safari<=5.1, Android<4.2 + // Older WebKit doesn't clone checked state correctly in fragments + support.checkClone = div.cloneNode( true ).cloneNode( true ).lastChild.checked; + + // Support: IE<=11+ + // Make sure textarea (and checkbox) defaultValue is properly cloned + div.innerHTML = ""; + support.noCloneChecked = !!div.cloneNode( true ).lastChild.defaultValue; +})(); +var strundefined = typeof undefined; + + + +support.focusinBubbles = "onfocusin" in window; + + +var + rkeyEvent = /^key/, + rmouseEvent = /^(?:mouse|pointer|contextmenu)|click/, + rfocusMorph = /^(?:focusinfocus|focusoutblur)$/, + rtypenamespace = /^([^.]*)(?:\.(.+)|)$/; + +function returnTrue() { + return true; +} + +function returnFalse() { + return false; +} + +function safeActiveElement() { + try { + return document.activeElement; + } catch ( err ) { } +} + +/* + * Helper functions for managing events -- not part of the public interface. + * Props to Dean Edwards' addEvent library for many of the ideas. + */ +jQuery.event = { + + global: {}, + + add: function( elem, types, handler, data, selector ) { + + var handleObjIn, eventHandle, tmp, + events, t, handleObj, + special, handlers, type, namespaces, origType, + elemData = data_priv.get( elem ); + + // Don't attach events to noData or text/comment nodes (but allow plain objects) + if ( !elemData ) { + return; + } + + // Caller can pass in an object of custom data in lieu of the handler + if ( handler.handler ) { + handleObjIn = handler; + handler = handleObjIn.handler; + selector = handleObjIn.selector; + } + + // Make sure that the handler has a unique ID, used to find/remove it later + if ( !handler.guid ) { + handler.guid = jQuery.guid++; + } + + // Init the element's event structure and main handler, if this is the first + if ( !(events = elemData.events) ) { + events = elemData.events = {}; + } + if ( !(eventHandle = elemData.handle) ) { + eventHandle = elemData.handle = function( e ) { + // Discard the second event of a jQuery.event.trigger() and + // when an event is called after a page has unloaded + return typeof jQuery !== strundefined && jQuery.event.triggered !== e.type ? + jQuery.event.dispatch.apply( elem, arguments ) : undefined; + }; + } + + // Handle multiple events separated by a space + types = ( types || "" ).match( rnotwhite ) || [ "" ]; + t = types.length; + while ( t-- ) { + tmp = rtypenamespace.exec( types[t] ) || []; + type = origType = tmp[1]; + namespaces = ( tmp[2] || "" ).split( "." ).sort(); + + // There *must* be a type, no attaching namespace-only handlers + if ( !type ) { + continue; + } + + // If event changes its type, use the special event handlers for the changed type + special = jQuery.event.special[ type ] || {}; + + // If selector defined, determine special event api type, otherwise given type + type = ( selector ? special.delegateType : special.bindType ) || type; + + // Update special based on newly reset type + special = jQuery.event.special[ type ] || {}; + + // handleObj is passed to all event handlers + handleObj = jQuery.extend({ + type: type, + origType: origType, + data: data, + handler: handler, + guid: handler.guid, + selector: selector, + needsContext: selector && jQuery.expr.match.needsContext.test( selector ), + namespace: namespaces.join(".") + }, handleObjIn ); + + // Init the event handler queue if we're the first + if ( !(handlers = events[ type ]) ) { + handlers = events[ type ] = []; + handlers.delegateCount = 0; + + // Only use addEventListener if the special events handler returns false + if ( !special.setup || special.setup.call( elem, data, namespaces, eventHandle ) === false ) { + if ( elem.addEventListener ) { + elem.addEventListener( type, eventHandle, false ); + } + } + } + + if ( special.add ) { + special.add.call( elem, handleObj ); + + if ( !handleObj.handler.guid ) { + handleObj.handler.guid = handler.guid; + } + } + + // Add to the element's handler list, delegates in front + if ( selector ) { + handlers.splice( handlers.delegateCount++, 0, handleObj ); + } else { + handlers.push( handleObj ); + } + + // Keep track of which events have ever been used, for event optimization + jQuery.event.global[ type ] = true; + } + + }, + + // Detach an event or set of events from an element + remove: function( elem, types, handler, selector, mappedTypes ) { + + var j, origCount, tmp, + events, t, handleObj, + special, handlers, type, namespaces, origType, + elemData = data_priv.hasData( elem ) && data_priv.get( elem ); + + if ( !elemData || !(events = elemData.events) ) { + return; + } + + // Once for each type.namespace in types; type may be omitted + types = ( types || "" ).match( rnotwhite ) || [ "" ]; + t = types.length; + while ( t-- ) { + tmp = rtypenamespace.exec( types[t] ) || []; + type = origType = tmp[1]; + namespaces = ( tmp[2] || "" ).split( "." ).sort(); + + // Unbind all events (on this namespace, if provided) for the element + if ( !type ) { + for ( type in events ) { + jQuery.event.remove( elem, type + types[ t ], handler, selector, true ); + } + continue; + } + + special = jQuery.event.special[ type ] || {}; + type = ( selector ? special.delegateType : special.bindType ) || type; + handlers = events[ type ] || []; + tmp = tmp[2] && new RegExp( "(^|\\.)" + namespaces.join("\\.(?:.*\\.|)") + "(\\.|$)" ); + + // Remove matching events + origCount = j = handlers.length; + while ( j-- ) { + handleObj = handlers[ j ]; + + if ( ( mappedTypes || origType === handleObj.origType ) && + ( !handler || handler.guid === handleObj.guid ) && + ( !tmp || tmp.test( handleObj.namespace ) ) && + ( !selector || selector === handleObj.selector || selector === "**" && handleObj.selector ) ) { + handlers.splice( j, 1 ); + + if ( handleObj.selector ) { + handlers.delegateCount--; + } + if ( special.remove ) { + special.remove.call( elem, handleObj ); + } + } + } + + // Remove generic event handler if we removed something and no more handlers exist + // (avoids potential for endless recursion during removal of special event handlers) + if ( origCount && !handlers.length ) { + if ( !special.teardown || special.teardown.call( elem, namespaces, elemData.handle ) === false ) { + jQuery.removeEvent( elem, type, elemData.handle ); + } + + delete events[ type ]; + } + } + + // Remove the expando if it's no longer used + if ( jQuery.isEmptyObject( events ) ) { + delete elemData.handle; + data_priv.remove( elem, "events" ); + } + }, + + trigger: function( event, data, elem, onlyHandlers ) { + + var i, cur, tmp, bubbleType, ontype, handle, special, + eventPath = [ elem || document ], + type = hasOwn.call( event, "type" ) ? event.type : event, + namespaces = hasOwn.call( event, "namespace" ) ? event.namespace.split(".") : []; + + cur = tmp = elem = elem || document; + + // Don't do events on text and comment nodes + if ( elem.nodeType === 3 || elem.nodeType === 8 ) { + return; + } + + // focus/blur morphs to focusin/out; ensure we're not firing them right now + if ( rfocusMorph.test( type + jQuery.event.triggered ) ) { + return; + } + + if ( type.indexOf(".") >= 0 ) { + // Namespaced trigger; create a regexp to match event type in handle() + namespaces = type.split("."); + type = namespaces.shift(); + namespaces.sort(); + } + ontype = type.indexOf(":") < 0 && "on" + type; + + // Caller can pass in a jQuery.Event object, Object, or just an event type string + event = event[ jQuery.expando ] ? + event : + new jQuery.Event( type, typeof event === "object" && event ); + + // Trigger bitmask: & 1 for native handlers; & 2 for jQuery (always true) + event.isTrigger = onlyHandlers ? 2 : 3; + event.namespace = namespaces.join("."); + event.namespace_re = event.namespace ? + new RegExp( "(^|\\.)" + namespaces.join("\\.(?:.*\\.|)") + "(\\.|$)" ) : + null; + + // Clean up the event in case it is being reused + event.result = undefined; + if ( !event.target ) { + event.target = elem; + } + + // Clone any incoming data and prepend the event, creating the handler arg list + data = data == null ? + [ event ] : + jQuery.makeArray( data, [ event ] ); + + // Allow special events to draw outside the lines + special = jQuery.event.special[ type ] || {}; + if ( !onlyHandlers && special.trigger && special.trigger.apply( elem, data ) === false ) { + return; + } + + // Determine event propagation path in advance, per W3C events spec (#9951) + // Bubble up to document, then to window; watch for a global ownerDocument var (#9724) + if ( !onlyHandlers && !special.noBubble && !jQuery.isWindow( elem ) ) { + + bubbleType = special.delegateType || type; + if ( !rfocusMorph.test( bubbleType + type ) ) { + cur = cur.parentNode; + } + for ( ; cur; cur = cur.parentNode ) { + eventPath.push( cur ); + tmp = cur; + } + + // Only add window if we got to document (e.g., not plain obj or detached DOM) + if ( tmp === (elem.ownerDocument || document) ) { + eventPath.push( tmp.defaultView || tmp.parentWindow || window ); + } + } + + // Fire handlers on the event path + i = 0; + while ( (cur = eventPath[i++]) && !event.isPropagationStopped() ) { + + event.type = i > 1 ? + bubbleType : + special.bindType || type; + + // jQuery handler + handle = ( data_priv.get( cur, "events" ) || {} )[ event.type ] && data_priv.get( cur, "handle" ); + if ( handle ) { + handle.apply( cur, data ); + } + + // Native handler + handle = ontype && cur[ ontype ]; + if ( handle && handle.apply && jQuery.acceptData( cur ) ) { + event.result = handle.apply( cur, data ); + if ( event.result === false ) { + event.preventDefault(); + } + } + } + event.type = type; + + // If nobody prevented the default action, do it now + if ( !onlyHandlers && !event.isDefaultPrevented() ) { + + if ( (!special._default || special._default.apply( eventPath.pop(), data ) === false) && + jQuery.acceptData( elem ) ) { + + // Call a native DOM method on the target with the same name name as the event. + // Don't do default actions on window, that's where global variables be (#6170) + if ( ontype && jQuery.isFunction( elem[ type ] ) && !jQuery.isWindow( elem ) ) { + + // Don't re-trigger an onFOO event when we call its FOO() method + tmp = elem[ ontype ]; + + if ( tmp ) { + elem[ ontype ] = null; + } + + // Prevent re-triggering of the same event, since we already bubbled it above + jQuery.event.triggered = type; + elem[ type ](); + jQuery.event.triggered = undefined; + + if ( tmp ) { + elem[ ontype ] = tmp; + } + } + } + } + + return event.result; + }, + + dispatch: function( event ) { + + // Make a writable jQuery.Event from the native event object + event = jQuery.event.fix( event ); + + var i, j, ret, matched, handleObj, + handlerQueue = [], + args = slice.call( arguments ), + handlers = ( data_priv.get( this, "events" ) || {} )[ event.type ] || [], + special = jQuery.event.special[ event.type ] || {}; + + // Use the fix-ed jQuery.Event rather than the (read-only) native event + args[0] = event; + event.delegateTarget = this; + + // Call the preDispatch hook for the mapped type, and let it bail if desired + if ( special.preDispatch && special.preDispatch.call( this, event ) === false ) { + return; + } + + // Determine handlers + handlerQueue = jQuery.event.handlers.call( this, event, handlers ); + + // Run delegates first; they may want to stop propagation beneath us + i = 0; + while ( (matched = handlerQueue[ i++ ]) && !event.isPropagationStopped() ) { + event.currentTarget = matched.elem; + + j = 0; + while ( (handleObj = matched.handlers[ j++ ]) && !event.isImmediatePropagationStopped() ) { + + // Triggered event must either 1) have no namespace, or 2) have namespace(s) + // a subset or equal to those in the bound event (both can have no namespace). + if ( !event.namespace_re || event.namespace_re.test( handleObj.namespace ) ) { + + event.handleObj = handleObj; + event.data = handleObj.data; + + ret = ( (jQuery.event.special[ handleObj.origType ] || {}).handle || handleObj.handler ) + .apply( matched.elem, args ); + + if ( ret !== undefined ) { + if ( (event.result = ret) === false ) { + event.preventDefault(); + event.stopPropagation(); + } + } + } + } + } + + // Call the postDispatch hook for the mapped type + if ( special.postDispatch ) { + special.postDispatch.call( this, event ); + } + + return event.result; + }, + + handlers: function( event, handlers ) { + var i, matches, sel, handleObj, + handlerQueue = [], + delegateCount = handlers.delegateCount, + cur = event.target; + + // Find delegate handlers + // Black-hole SVG instance trees (#13180) + // Avoid non-left-click bubbling in Firefox (#3861) + if ( delegateCount && cur.nodeType && (!event.button || event.type !== "click") ) { + + for ( ; cur !== this; cur = cur.parentNode || this ) { + + // Don't process clicks on disabled elements (#6911, #8165, #11382, #11764) + if ( cur.disabled !== true || event.type !== "click" ) { + matches = []; + for ( i = 0; i < delegateCount; i++ ) { + handleObj = handlers[ i ]; + + // Don't conflict with Object.prototype properties (#13203) + sel = handleObj.selector + " "; + + if ( matches[ sel ] === undefined ) { + matches[ sel ] = handleObj.needsContext ? + jQuery( sel, this ).index( cur ) >= 0 : + jQuery.find( sel, this, null, [ cur ] ).length; + } + if ( matches[ sel ] ) { + matches.push( handleObj ); + } + } + if ( matches.length ) { + handlerQueue.push({ elem: cur, handlers: matches }); + } + } + } + } + + // Add the remaining (directly-bound) handlers + if ( delegateCount < handlers.length ) { + handlerQueue.push({ elem: this, handlers: handlers.slice( delegateCount ) }); + } + + return handlerQueue; + }, + + // Includes some event props shared by KeyEvent and MouseEvent + props: "altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "), + + fixHooks: {}, + + keyHooks: { + props: "char charCode key keyCode".split(" "), + filter: function( event, original ) { + + // Add which for key events + if ( event.which == null ) { + event.which = original.charCode != null ? original.charCode : original.keyCode; + } + + return event; + } + }, + + mouseHooks: { + props: "button buttons clientX clientY offsetX offsetY pageX pageY screenX screenY toElement".split(" "), + filter: function( event, original ) { + var eventDoc, doc, body, + button = original.button; + + // Calculate pageX/Y if missing and clientX/Y available + if ( event.pageX == null && original.clientX != null ) { + eventDoc = event.target.ownerDocument || document; + doc = eventDoc.documentElement; + body = eventDoc.body; + + event.pageX = original.clientX + ( doc && doc.scrollLeft || body && body.scrollLeft || 0 ) - ( doc && doc.clientLeft || body && body.clientLeft || 0 ); + event.pageY = original.clientY + ( doc && doc.scrollTop || body && body.scrollTop || 0 ) - ( doc && doc.clientTop || body && body.clientTop || 0 ); + } + + // Add which for click: 1 === left; 2 === middle; 3 === right + // Note: button is not normalized, so don't use it + if ( !event.which && button !== undefined ) { + event.which = ( button & 1 ? 1 : ( button & 2 ? 3 : ( button & 4 ? 2 : 0 ) ) ); + } + + return event; + } + }, + + fix: function( event ) { + if ( event[ jQuery.expando ] ) { + return event; + } + + // Create a writable copy of the event object and normalize some properties + var i, prop, copy, + type = event.type, + originalEvent = event, + fixHook = this.fixHooks[ type ]; + + if ( !fixHook ) { + this.fixHooks[ type ] = fixHook = + rmouseEvent.test( type ) ? this.mouseHooks : + rkeyEvent.test( type ) ? this.keyHooks : + {}; + } + copy = fixHook.props ? this.props.concat( fixHook.props ) : this.props; + + event = new jQuery.Event( originalEvent ); + + i = copy.length; + while ( i-- ) { + prop = copy[ i ]; + event[ prop ] = originalEvent[ prop ]; + } + + // Support: Cordova 2.5 (WebKit) (#13255) + // All events should have a target; Cordova deviceready doesn't + if ( !event.target ) { + event.target = document; + } + + // Support: Safari 6.0+, Chrome<28 + // Target should not be a text node (#504, #13143) + if ( event.target.nodeType === 3 ) { + event.target = event.target.parentNode; + } + + return fixHook.filter ? fixHook.filter( event, originalEvent ) : event; + }, + + special: { + load: { + // Prevent triggered image.load events from bubbling to window.load + noBubble: true + }, + focus: { + // Fire native event if possible so blur/focus sequence is correct + trigger: function() { + if ( this !== safeActiveElement() && this.focus ) { + this.focus(); + return false; + } + }, + delegateType: "focusin" + }, + blur: { + trigger: function() { + if ( this === safeActiveElement() && this.blur ) { + this.blur(); + return false; + } + }, + delegateType: "focusout" + }, + click: { + // For checkbox, fire native event so checked state will be right + trigger: function() { + if ( this.type === "checkbox" && this.click && jQuery.nodeName( this, "input" ) ) { + this.click(); + return false; + } + }, + + // For cross-browser consistency, don't fire native .click() on links + _default: function( event ) { + return jQuery.nodeName( event.target, "a" ); + } + }, + + beforeunload: { + postDispatch: function( event ) { + + // Support: Firefox 20+ + // Firefox doesn't alert if the returnValue field is not set. + if ( event.result !== undefined && event.originalEvent ) { + event.originalEvent.returnValue = event.result; + } + } + } + }, + + simulate: function( type, elem, event, bubble ) { + // Piggyback on a donor event to simulate a different one. + // Fake originalEvent to avoid donor's stopPropagation, but if the + // simulated event prevents default then we do the same on the donor. + var e = jQuery.extend( + new jQuery.Event(), + event, + { + type: type, + isSimulated: true, + originalEvent: {} + } + ); + if ( bubble ) { + jQuery.event.trigger( e, null, elem ); + } else { + jQuery.event.dispatch.call( elem, e ); + } + if ( e.isDefaultPrevented() ) { + event.preventDefault(); + } + } +}; + +jQuery.removeEvent = function( elem, type, handle ) { + if ( elem.removeEventListener ) { + elem.removeEventListener( type, handle, false ); + } +}; + +jQuery.Event = function( src, props ) { + // Allow instantiation without the 'new' keyword + if ( !(this instanceof jQuery.Event) ) { + return new jQuery.Event( src, props ); + } + + // Event object + if ( src && src.type ) { + this.originalEvent = src; + this.type = src.type; + + // Events bubbling up the document may have been marked as prevented + // by a handler lower down the tree; reflect the correct value. + this.isDefaultPrevented = src.defaultPrevented || + src.defaultPrevented === undefined && + // Support: Android<4.0 + src.returnValue === false ? + returnTrue : + returnFalse; + + // Event type + } else { + this.type = src; + } + + // Put explicitly provided properties onto the event object + if ( props ) { + jQuery.extend( this, props ); + } + + // Create a timestamp if incoming event doesn't have one + this.timeStamp = src && src.timeStamp || jQuery.now(); + + // Mark it as fixed + this[ jQuery.expando ] = true; +}; + +// jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding +// http://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html +jQuery.Event.prototype = { + isDefaultPrevented: returnFalse, + isPropagationStopped: returnFalse, + isImmediatePropagationStopped: returnFalse, + + preventDefault: function() { + var e = this.originalEvent; + + this.isDefaultPrevented = returnTrue; + + if ( e && e.preventDefault ) { + e.preventDefault(); + } + }, + stopPropagation: function() { + var e = this.originalEvent; + + this.isPropagationStopped = returnTrue; + + if ( e && e.stopPropagation ) { + e.stopPropagation(); + } + }, + stopImmediatePropagation: function() { + var e = this.originalEvent; + + this.isImmediatePropagationStopped = returnTrue; + + if ( e && e.stopImmediatePropagation ) { + e.stopImmediatePropagation(); + } + + this.stopPropagation(); + } +}; + +// Create mouseenter/leave events using mouseover/out and event-time checks +// Support: Chrome 15+ +jQuery.each({ + mouseenter: "mouseover", + mouseleave: "mouseout", + pointerenter: "pointerover", + pointerleave: "pointerout" +}, function( orig, fix ) { + jQuery.event.special[ orig ] = { + delegateType: fix, + bindType: fix, + + handle: function( event ) { + var ret, + target = this, + related = event.relatedTarget, + handleObj = event.handleObj; + + // For mousenter/leave call the handler if related is outside the target. + // NB: No relatedTarget if the mouse left/entered the browser window + if ( !related || (related !== target && !jQuery.contains( target, related )) ) { + event.type = handleObj.origType; + ret = handleObj.handler.apply( this, arguments ); + event.type = fix; + } + return ret; + } + }; +}); + +// Support: Firefox, Chrome, Safari +// Create "bubbling" focus and blur events +if ( !support.focusinBubbles ) { + jQuery.each({ focus: "focusin", blur: "focusout" }, function( orig, fix ) { + + // Attach a single capturing handler on the document while someone wants focusin/focusout + var handler = function( event ) { + jQuery.event.simulate( fix, event.target, jQuery.event.fix( event ), true ); + }; + + jQuery.event.special[ fix ] = { + setup: function() { + var doc = this.ownerDocument || this, + attaches = data_priv.access( doc, fix ); + + if ( !attaches ) { + doc.addEventListener( orig, handler, true ); + } + data_priv.access( doc, fix, ( attaches || 0 ) + 1 ); + }, + teardown: function() { + var doc = this.ownerDocument || this, + attaches = data_priv.access( doc, fix ) - 1; + + if ( !attaches ) { + doc.removeEventListener( orig, handler, true ); + data_priv.remove( doc, fix ); + + } else { + data_priv.access( doc, fix, attaches ); + } + } + }; + }); +} + +jQuery.fn.extend({ + + on: function( types, selector, data, fn, /*INTERNAL*/ one ) { + var origFn, type; + + // Types can be a map of types/handlers + if ( typeof types === "object" ) { + // ( types-Object, selector, data ) + if ( typeof selector !== "string" ) { + // ( types-Object, data ) + data = data || selector; + selector = undefined; + } + for ( type in types ) { + this.on( type, selector, data, types[ type ], one ); + } + return this; + } + + if ( data == null && fn == null ) { + // ( types, fn ) + fn = selector; + data = selector = undefined; + } else if ( fn == null ) { + if ( typeof selector === "string" ) { + // ( types, selector, fn ) + fn = data; + data = undefined; + } else { + // ( types, data, fn ) + fn = data; + data = selector; + selector = undefined; + } + } + if ( fn === false ) { + fn = returnFalse; + } else if ( !fn ) { + return this; + } + + if ( one === 1 ) { + origFn = fn; + fn = function( event ) { + // Can use an empty set, since event contains the info + jQuery().off( event ); + return origFn.apply( this, arguments ); + }; + // Use same guid so caller can remove using origFn + fn.guid = origFn.guid || ( origFn.guid = jQuery.guid++ ); + } + return this.each( function() { + jQuery.event.add( this, types, fn, data, selector ); + }); + }, + one: function( types, selector, data, fn ) { + return this.on( types, selector, data, fn, 1 ); + }, + off: function( types, selector, fn ) { + var handleObj, type; + if ( types && types.preventDefault && types.handleObj ) { + // ( event ) dispatched jQuery.Event + handleObj = types.handleObj; + jQuery( types.delegateTarget ).off( + handleObj.namespace ? handleObj.origType + "." + handleObj.namespace : handleObj.origType, + handleObj.selector, + handleObj.handler + ); + return this; + } + if ( typeof types === "object" ) { + // ( types-object [, selector] ) + for ( type in types ) { + this.off( type, selector, types[ type ] ); + } + return this; + } + if ( selector === false || typeof selector === "function" ) { + // ( types [, fn] ) + fn = selector; + selector = undefined; + } + if ( fn === false ) { + fn = returnFalse; + } + return this.each(function() { + jQuery.event.remove( this, types, fn, selector ); + }); + }, + + trigger: function( type, data ) { + return this.each(function() { + jQuery.event.trigger( type, data, this ); + }); + }, + triggerHandler: function( type, data ) { + var elem = this[0]; + if ( elem ) { + return jQuery.event.trigger( type, data, elem, true ); + } + } +}); + + +var + rxhtmlTag = /<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi, + rtagName = /<([\w:]+)/, + rhtml = /<|&#?\w+;/, + rnoInnerhtml = /<(?:script|style|link)/i, + // checked="checked" or checked + rchecked = /checked\s*(?:[^=]|=\s*.checked.)/i, + rscriptType = /^$|\/(?:java|ecma)script/i, + rscriptTypeMasked = /^true\/(.*)/, + rcleanScript = /^\s*\s*$/g, + + // We have to close these tags to support XHTML (#13200) + wrapMap = { + + // Support: IE9 + option: [ 1, "" ], + + thead: [ 1, "", "
" ], + col: [ 2, "", "
" ], + tr: [ 2, "", "
" ], + td: [ 3, "", "
" ], + + _default: [ 0, "", "" ] + }; + +// Support: IE9 +wrapMap.optgroup = wrapMap.option; + +wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead; +wrapMap.th = wrapMap.td; + +// Support: 1.x compatibility +// Manipulating tables requires a tbody +function manipulationTarget( elem, content ) { + return jQuery.nodeName( elem, "table" ) && + jQuery.nodeName( content.nodeType !== 11 ? content : content.firstChild, "tr" ) ? + + elem.getElementsByTagName("tbody")[0] || + elem.appendChild( elem.ownerDocument.createElement("tbody") ) : + elem; +} + +// Replace/restore the type attribute of script elements for safe DOM manipulation +function disableScript( elem ) { + elem.type = (elem.getAttribute("type") !== null) + "/" + elem.type; + return elem; +} +function restoreScript( elem ) { + var match = rscriptTypeMasked.exec( elem.type ); + + if ( match ) { + elem.type = match[ 1 ]; + } else { + elem.removeAttribute("type"); + } + + return elem; +} + +// Mark scripts as having already been evaluated +function setGlobalEval( elems, refElements ) { + var i = 0, + l = elems.length; + + for ( ; i < l; i++ ) { + data_priv.set( + elems[ i ], "globalEval", !refElements || data_priv.get( refElements[ i ], "globalEval" ) + ); + } +} + +function cloneCopyEvent( src, dest ) { + var i, l, type, pdataOld, pdataCur, udataOld, udataCur, events; + + if ( dest.nodeType !== 1 ) { + return; + } + + // 1. Copy private data: events, handlers, etc. + if ( data_priv.hasData( src ) ) { + pdataOld = data_priv.access( src ); + pdataCur = data_priv.set( dest, pdataOld ); + events = pdataOld.events; + + if ( events ) { + delete pdataCur.handle; + pdataCur.events = {}; + + for ( type in events ) { + for ( i = 0, l = events[ type ].length; i < l; i++ ) { + jQuery.event.add( dest, type, events[ type ][ i ] ); + } + } + } + } + + // 2. Copy user data + if ( data_user.hasData( src ) ) { + udataOld = data_user.access( src ); + udataCur = jQuery.extend( {}, udataOld ); + + data_user.set( dest, udataCur ); + } +} + +function getAll( context, tag ) { + var ret = context.getElementsByTagName ? context.getElementsByTagName( tag || "*" ) : + context.querySelectorAll ? context.querySelectorAll( tag || "*" ) : + []; + + return tag === undefined || tag && jQuery.nodeName( context, tag ) ? + jQuery.merge( [ context ], ret ) : + ret; +} + +// Fix IE bugs, see support tests +function fixInput( src, dest ) { + var nodeName = dest.nodeName.toLowerCase(); + + // Fails to persist the checked state of a cloned checkbox or radio button. + if ( nodeName === "input" && rcheckableType.test( src.type ) ) { + dest.checked = src.checked; + + // Fails to return the selected option to the default selected state when cloning options + } else if ( nodeName === "input" || nodeName === "textarea" ) { + dest.defaultValue = src.defaultValue; + } +} + +jQuery.extend({ + clone: function( elem, dataAndEvents, deepDataAndEvents ) { + var i, l, srcElements, destElements, + clone = elem.cloneNode( true ), + inPage = jQuery.contains( elem.ownerDocument, elem ); + + // Fix IE cloning issues + if ( !support.noCloneChecked && ( elem.nodeType === 1 || elem.nodeType === 11 ) && + !jQuery.isXMLDoc( elem ) ) { + + // We eschew Sizzle here for performance reasons: http://jsperf.com/getall-vs-sizzle/2 + destElements = getAll( clone ); + srcElements = getAll( elem ); + + for ( i = 0, l = srcElements.length; i < l; i++ ) { + fixInput( srcElements[ i ], destElements[ i ] ); + } + } + + // Copy the events from the original to the clone + if ( dataAndEvents ) { + if ( deepDataAndEvents ) { + srcElements = srcElements || getAll( elem ); + destElements = destElements || getAll( clone ); + + for ( i = 0, l = srcElements.length; i < l; i++ ) { + cloneCopyEvent( srcElements[ i ], destElements[ i ] ); + } + } else { + cloneCopyEvent( elem, clone ); + } + } + + // Preserve script evaluation history + destElements = getAll( clone, "script" ); + if ( destElements.length > 0 ) { + setGlobalEval( destElements, !inPage && getAll( elem, "script" ) ); + } + + // Return the cloned set + return clone; + }, + + buildFragment: function( elems, context, scripts, selection ) { + var elem, tmp, tag, wrap, contains, j, + fragment = context.createDocumentFragment(), + nodes = [], + i = 0, + l = elems.length; + + for ( ; i < l; i++ ) { + elem = elems[ i ]; + + if ( elem || elem === 0 ) { + + // Add nodes directly + if ( jQuery.type( elem ) === "object" ) { + // Support: QtWebKit, PhantomJS + // push.apply(_, arraylike) throws on ancient WebKit + jQuery.merge( nodes, elem.nodeType ? [ elem ] : elem ); + + // Convert non-html into a text node + } else if ( !rhtml.test( elem ) ) { + nodes.push( context.createTextNode( elem ) ); + + // Convert html into DOM nodes + } else { + tmp = tmp || fragment.appendChild( context.createElement("div") ); + + // Deserialize a standard representation + tag = ( rtagName.exec( elem ) || [ "", "" ] )[ 1 ].toLowerCase(); + wrap = wrapMap[ tag ] || wrapMap._default; + tmp.innerHTML = wrap[ 1 ] + elem.replace( rxhtmlTag, "<$1>" ) + wrap[ 2 ]; + + // Descend through wrappers to the right content + j = wrap[ 0 ]; + while ( j-- ) { + tmp = tmp.lastChild; + } + + // Support: QtWebKit, PhantomJS + // push.apply(_, arraylike) throws on ancient WebKit + jQuery.merge( nodes, tmp.childNodes ); + + // Remember the top-level container + tmp = fragment.firstChild; + + // Ensure the created nodes are orphaned (#12392) + tmp.textContent = ""; + } + } + } + + // Remove wrapper from fragment + fragment.textContent = ""; + + i = 0; + while ( (elem = nodes[ i++ ]) ) { + + // #4087 - If origin and destination elements are the same, and this is + // that element, do not do anything + if ( selection && jQuery.inArray( elem, selection ) !== -1 ) { + continue; + } + + contains = jQuery.contains( elem.ownerDocument, elem ); + + // Append to fragment + tmp = getAll( fragment.appendChild( elem ), "script" ); + + // Preserve script evaluation history + if ( contains ) { + setGlobalEval( tmp ); + } + + // Capture executables + if ( scripts ) { + j = 0; + while ( (elem = tmp[ j++ ]) ) { + if ( rscriptType.test( elem.type || "" ) ) { + scripts.push( elem ); + } + } + } + } + + return fragment; + }, + + cleanData: function( elems ) { + var data, elem, type, key, + special = jQuery.event.special, + i = 0; + + for ( ; (elem = elems[ i ]) !== undefined; i++ ) { + if ( jQuery.acceptData( elem ) ) { + key = elem[ data_priv.expando ]; + + if ( key && (data = data_priv.cache[ key ]) ) { + if ( data.events ) { + for ( type in data.events ) { + if ( special[ type ] ) { + jQuery.event.remove( elem, type ); + + // This is a shortcut to avoid jQuery.event.remove's overhead + } else { + jQuery.removeEvent( elem, type, data.handle ); + } + } + } + if ( data_priv.cache[ key ] ) { + // Discard any remaining `private` data + delete data_priv.cache[ key ]; + } + } + } + // Discard any remaining `user` data + delete data_user.cache[ elem[ data_user.expando ] ]; + } + } +}); + +jQuery.fn.extend({ + text: function( value ) { + return access( this, function( value ) { + return value === undefined ? + jQuery.text( this ) : + this.empty().each(function() { + if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { + this.textContent = value; + } + }); + }, null, value, arguments.length ); + }, + + append: function() { + return this.domManip( arguments, function( elem ) { + if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { + var target = manipulationTarget( this, elem ); + target.appendChild( elem ); + } + }); + }, + + prepend: function() { + return this.domManip( arguments, function( elem ) { + if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { + var target = manipulationTarget( this, elem ); + target.insertBefore( elem, target.firstChild ); + } + }); + }, + + before: function() { + return this.domManip( arguments, function( elem ) { + if ( this.parentNode ) { + this.parentNode.insertBefore( elem, this ); + } + }); + }, + + after: function() { + return this.domManip( arguments, function( elem ) { + if ( this.parentNode ) { + this.parentNode.insertBefore( elem, this.nextSibling ); + } + }); + }, + + remove: function( selector, keepData /* Internal Use Only */ ) { + var elem, + elems = selector ? jQuery.filter( selector, this ) : this, + i = 0; + + for ( ; (elem = elems[i]) != null; i++ ) { + if ( !keepData && elem.nodeType === 1 ) { + jQuery.cleanData( getAll( elem ) ); + } + + if ( elem.parentNode ) { + if ( keepData && jQuery.contains( elem.ownerDocument, elem ) ) { + setGlobalEval( getAll( elem, "script" ) ); + } + elem.parentNode.removeChild( elem ); + } + } + + return this; + }, + + empty: function() { + var elem, + i = 0; + + for ( ; (elem = this[i]) != null; i++ ) { + if ( elem.nodeType === 1 ) { + + // Prevent memory leaks + jQuery.cleanData( getAll( elem, false ) ); + + // Remove any remaining nodes + elem.textContent = ""; + } + } + + return this; + }, + + clone: function( dataAndEvents, deepDataAndEvents ) { + dataAndEvents = dataAndEvents == null ? false : dataAndEvents; + deepDataAndEvents = deepDataAndEvents == null ? dataAndEvents : deepDataAndEvents; + + return this.map(function() { + return jQuery.clone( this, dataAndEvents, deepDataAndEvents ); + }); + }, + + html: function( value ) { + return access( this, function( value ) { + var elem = this[ 0 ] || {}, + i = 0, + l = this.length; + + if ( value === undefined && elem.nodeType === 1 ) { + return elem.innerHTML; + } + + // See if we can take a shortcut and just use innerHTML + if ( typeof value === "string" && !rnoInnerhtml.test( value ) && + !wrapMap[ ( rtagName.exec( value ) || [ "", "" ] )[ 1 ].toLowerCase() ] ) { + + value = value.replace( rxhtmlTag, "<$1>" ); + + try { + for ( ; i < l; i++ ) { + elem = this[ i ] || {}; + + // Remove element nodes and prevent memory leaks + if ( elem.nodeType === 1 ) { + jQuery.cleanData( getAll( elem, false ) ); + elem.innerHTML = value; + } + } + + elem = 0; + + // If using innerHTML throws an exception, use the fallback method + } catch( e ) {} + } + + if ( elem ) { + this.empty().append( value ); + } + }, null, value, arguments.length ); + }, + + replaceWith: function() { + var arg = arguments[ 0 ]; + + // Make the changes, replacing each context element with the new content + this.domManip( arguments, function( elem ) { + arg = this.parentNode; + + jQuery.cleanData( getAll( this ) ); + + if ( arg ) { + arg.replaceChild( elem, this ); + } + }); + + // Force removal if there was no new content (e.g., from empty arguments) + return arg && (arg.length || arg.nodeType) ? this : this.remove(); + }, + + detach: function( selector ) { + return this.remove( selector, true ); + }, + + domManip: function( args, callback ) { + + // Flatten any nested arrays + args = concat.apply( [], args ); + + var fragment, first, scripts, hasScripts, node, doc, + i = 0, + l = this.length, + set = this, + iNoClone = l - 1, + value = args[ 0 ], + isFunction = jQuery.isFunction( value ); + + // We can't cloneNode fragments that contain checked, in WebKit + if ( isFunction || + ( l > 1 && typeof value === "string" && + !support.checkClone && rchecked.test( value ) ) ) { + return this.each(function( index ) { + var self = set.eq( index ); + if ( isFunction ) { + args[ 0 ] = value.call( this, index, self.html() ); + } + self.domManip( args, callback ); + }); + } + + if ( l ) { + fragment = jQuery.buildFragment( args, this[ 0 ].ownerDocument, false, this ); + first = fragment.firstChild; + + if ( fragment.childNodes.length === 1 ) { + fragment = first; + } + + if ( first ) { + scripts = jQuery.map( getAll( fragment, "script" ), disableScript ); + hasScripts = scripts.length; + + // Use the original fragment for the last item instead of the first because it can end up + // being emptied incorrectly in certain situations (#8070). + for ( ; i < l; i++ ) { + node = fragment; + + if ( i !== iNoClone ) { + node = jQuery.clone( node, true, true ); + + // Keep references to cloned scripts for later restoration + if ( hasScripts ) { + // Support: QtWebKit + // jQuery.merge because push.apply(_, arraylike) throws + jQuery.merge( scripts, getAll( node, "script" ) ); + } + } + + callback.call( this[ i ], node, i ); + } + + if ( hasScripts ) { + doc = scripts[ scripts.length - 1 ].ownerDocument; + + // Reenable scripts + jQuery.map( scripts, restoreScript ); + + // Evaluate executable scripts on first document insertion + for ( i = 0; i < hasScripts; i++ ) { + node = scripts[ i ]; + if ( rscriptType.test( node.type || "" ) && + !data_priv.access( node, "globalEval" ) && jQuery.contains( doc, node ) ) { + + if ( node.src ) { + // Optional AJAX dependency, but won't run scripts if not present + if ( jQuery._evalUrl ) { + jQuery._evalUrl( node.src ); + } + } else { + jQuery.globalEval( node.textContent.replace( rcleanScript, "" ) ); + } + } + } + } + } + } + + return this; + } +}); + +jQuery.each({ + appendTo: "append", + prependTo: "prepend", + insertBefore: "before", + insertAfter: "after", + replaceAll: "replaceWith" +}, function( name, original ) { + jQuery.fn[ name ] = function( selector ) { + var elems, + ret = [], + insert = jQuery( selector ), + last = insert.length - 1, + i = 0; + + for ( ; i <= last; i++ ) { + elems = i === last ? this : this.clone( true ); + jQuery( insert[ i ] )[ original ]( elems ); + + // Support: QtWebKit + // .get() because push.apply(_, arraylike) throws + push.apply( ret, elems.get() ); + } + + return this.pushStack( ret ); + }; +}); + + +var iframe, + elemdisplay = {}; + +/** + * Retrieve the actual display of a element + * @param {String} name nodeName of the element + * @param {Object} doc Document object + */ +// Called only from within defaultDisplay +function actualDisplay( name, doc ) { + var style, + elem = jQuery( doc.createElement( name ) ).appendTo( doc.body ), + + // getDefaultComputedStyle might be reliably used only on attached element + display = window.getDefaultComputedStyle && ( style = window.getDefaultComputedStyle( elem[ 0 ] ) ) ? + + // Use of this method is a temporary fix (more like optimization) until something better comes along, + // since it was removed from specification and supported only in FF + style.display : jQuery.css( elem[ 0 ], "display" ); + + // We don't have any data stored on the element, + // so use "detach" method as fast way to get rid of the element + elem.detach(); + + return display; +} + +/** + * Try to determine the default display value of an element + * @param {String} nodeName + */ +function defaultDisplay( nodeName ) { + var doc = document, + display = elemdisplay[ nodeName ]; + + if ( !display ) { + display = actualDisplay( nodeName, doc ); + + // If the simple way fails, read from inside an iframe + if ( display === "none" || !display ) { + + // Use the already-created iframe if possible + iframe = (iframe || jQuery( "