Working static demo added.
This commit is contained in:
parent
f675cf6519
commit
8bd1e65c0b
393 changed files with 166510 additions and 3 deletions
87
demo/js/compiled/out/devtools/async.js
Normal file
87
demo/js/compiled/out/devtools/async.js
Normal file
|
|
@ -0,0 +1,87 @@
|
|||
// Compiled by ClojureScript 1.10.520 {}
|
||||
goog.provide('devtools.async');
|
||||
goog.require('cljs.core');
|
||||
goog.require('goog.async.nextTick');
|
||||
goog.require('goog.labs.userAgent.browser');
|
||||
goog.require('devtools.context');
|
||||
devtools.async.available_QMARK_ = (function devtools$async$available_QMARK_(){
|
||||
return (typeof Promise !== 'undefined');
|
||||
});
|
||||
devtools.async.fixed_chrome_version_for_async = "65.0.3321";
|
||||
devtools.async.needed_QMARK_ = (function devtools$async$needed_QMARK_(){
|
||||
return cljs.core.not.call(null,(function (){var and__4120__auto__ = goog.labs.userAgent.browser.isChrome();
|
||||
if(cljs.core.truth_(and__4120__auto__)){
|
||||
return goog.labs.userAgent.browser.isVersionOrHigher(devtools.async.fixed_chrome_version_for_async);
|
||||
} else {
|
||||
return and__4120__auto__;
|
||||
}
|
||||
})());
|
||||
});
|
||||
devtools.async.get_not_needed_message = (function devtools$async$get_not_needed_message(){
|
||||
return ["cljs-devtools: the :async feature is no longer needed since Chrome ",devtools.async.fixed_chrome_version_for_async,", ","see https://github.com/binaryage/cljs-devtools/issues/20"].join('');
|
||||
});
|
||||
devtools.async._STAR_installed_STAR_ = false;
|
||||
devtools.async._STAR_original_set_immediate_STAR_ = null;
|
||||
devtools.async.rethrow_outside_promise = (function devtools$async$rethrow_outside_promise(e){
|
||||
return setTimeout((function (){
|
||||
throw e;
|
||||
}),(0));
|
||||
});
|
||||
devtools.async.promise_based_set_immediate = (function devtools$async$promise_based_set_immediate(callback){
|
||||
var o__25265__auto___28354 = (function (){var o__25265__auto__ = (function (){var o__25265__auto__ = Promise;
|
||||
return (o__25265__auto__["resolve"]).call(o__25265__auto__);
|
||||
})();
|
||||
return (o__25265__auto__["then"]).call(o__25265__auto__,callback);
|
||||
})();
|
||||
(o__25265__auto___28354["catch"]).call(o__25265__auto___28354,devtools.async.rethrow_outside_promise);
|
||||
|
||||
return null;
|
||||
});
|
||||
devtools.async.install_async_set_immediate_BANG_ = (function devtools$async$install_async_set_immediate_BANG_(){
|
||||
devtools.async._STAR_original_set_immediate_STAR_ = goog.async.nextTick.setImmediate_;
|
||||
|
||||
return goog.async.nextTick.setImmediate_ = devtools.async.promise_based_set_immediate;
|
||||
});
|
||||
devtools.async.uninstall_async_set_immediate_BANG_ = (function devtools$async$uninstall_async_set_immediate_BANG_(){
|
||||
return goog.async.nextTick.setImmediate_ = devtools.async._STAR_original_set_immediate_STAR_;
|
||||
});
|
||||
devtools.async.installed_QMARK_ = (function devtools$async$installed_QMARK_(){
|
||||
return devtools.async._STAR_installed_STAR_;
|
||||
});
|
||||
devtools.async.install_BANG_ = (function devtools$async$install_BANG_(){
|
||||
if(devtools.async._STAR_installed_STAR_){
|
||||
return null;
|
||||
} else {
|
||||
devtools.async._STAR_installed_STAR_ = true;
|
||||
|
||||
var G__28355_28356 = Error;
|
||||
var target__25270__auto___28357 = G__28355_28356;
|
||||
if(cljs.core.truth_(target__25270__auto___28357)){
|
||||
} else {
|
||||
throw (new Error(["Assert failed: ",["unable to locate object path ",null," in ",cljs.core.str.cljs$core$IFn$_invoke$arity$1(G__28355_28356)].join(''),"\n","target__25270__auto__"].join('')));
|
||||
}
|
||||
|
||||
(target__25270__auto___28357["stackTraceLimit"] = Infinity);
|
||||
|
||||
|
||||
devtools.async.install_async_set_immediate_BANG_.call(null);
|
||||
|
||||
if(devtools.async.needed_QMARK_.call(null)){
|
||||
} else {
|
||||
devtools.context.get_console.call(null).info(devtools.async.get_not_needed_message.call(null));
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
});
|
||||
devtools.async.uninstall_BANG_ = (function devtools$async$uninstall_BANG_(){
|
||||
if(devtools.async._STAR_installed_STAR_){
|
||||
devtools.async._STAR_installed_STAR_ = false;
|
||||
|
||||
return devtools.async.uninstall_async_set_immediate_BANG_.call(null);
|
||||
} else {
|
||||
return null;
|
||||
}
|
||||
});
|
||||
|
||||
//# sourceMappingURL=async.js.map?rel=1582560150616
|
||||
Loading…
Add table
Add a link
Reference in a new issue