Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(264)

Side by Side Diff: lib/runtime/dart/async.js

Issue 1316723003: implement null aware ops, fixes #249 (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « lib/runtime/dart/_native_typed_data.js ('k') | lib/runtime/dart/collection.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 dart_library.library('dart/async', null, /* Imports */[ 1 dart_library.library('dart/async', null, /* Imports */[
2 "dart_runtime/dart", 2 "dart_runtime/dart",
3 'dart/core', 3 'dart/core',
4 'dart/_internal', 4 'dart/_internal',
5 'dart/collection' 5 'dart/collection'
6 ], /* Lazy imports */[ 6 ], /* Lazy imports */[
7 'dart/_isolate_helper' 7 'dart/_isolate_helper'
8 ], function(exports, dart, core, _internal, collection, _isolate_helper) { 8 ], function(exports, dart, core, _internal, collection, _isolate_helper) {
9 'use strict'; 9 'use strict';
10 let dartx = dart.dartx; 10 let dartx = dart.dartx;
(...skipping 845 matching lines...) Expand 10 before | Expand all | Expand 10 after
856 } 856 }
857 } 857 }
858 let _zone = Symbol('_zone'); 858 let _zone = Symbol('_zone');
859 let _state = Symbol('_state'); 859 let _state = Symbol('_state');
860 let _onData = Symbol('_onData'); 860 let _onData = Symbol('_onData');
861 let _onError = Symbol('_onError'); 861 let _onError = Symbol('_onError');
862 let _onDone = Symbol('_onDone'); 862 let _onDone = Symbol('_onDone');
863 let _cancelFuture = Symbol('_cancelFuture'); 863 let _cancelFuture = Symbol('_cancelFuture');
864 let _pending = Symbol('_pending'); 864 let _pending = Symbol('_pending');
865 let _setPendingEvents = Symbol('_setPendingEvents'); 865 let _setPendingEvents = Symbol('_setPendingEvents');
866 let _isCanceled = Symbol('_isCanceled');
866 let _extractPending = Symbol('_extractPending'); 867 let _extractPending = Symbol('_extractPending');
867 let _isCanceled = Symbol('_isCanceled');
868 let _isPaused = Symbol('_isPaused'); 868 let _isPaused = Symbol('_isPaused');
869 let _isInputPaused = Symbol('_isInputPaused'); 869 let _isInputPaused = Symbol('_isInputPaused');
870 let _inCallback = Symbol('_inCallback'); 870 let _inCallback = Symbol('_inCallback');
871 let _guardCallback = Symbol('_guardCallback'); 871 let _guardCallback = Symbol('_guardCallback');
872 let _onPause = Symbol('_onPause'); 872 let _onPause = Symbol('_onPause');
873 let _decrementPauseCount = Symbol('_decrementPauseCount'); 873 let _decrementPauseCount = Symbol('_decrementPauseCount');
874 let _hasPending = Symbol('_hasPending'); 874 let _hasPending = Symbol('_hasPending');
875 let _mayResumeInput = Symbol('_mayResumeInput'); 875 let _mayResumeInput = Symbol('_mayResumeInput');
876 let _onResume = Symbol('_onResume'); 876 let _onResume = Symbol('_onResume');
877 let _cancel = Symbol('_cancel'); 877 let _cancel = Symbol('_cancel');
878 let _isClosed = Symbol('_isClosed'); 878 let _isClosed = Symbol('_isClosed');
879 let _waitsForCancel = Symbol('_waitsForCancel'); 879 let _waitsForCancel = Symbol('_waitsForCancel');
880 let _canFire = Symbol('_canFire'); 880 let _canFire = Symbol('_canFire');
881 let _cancelOnError = Symbol('_cancelOnError'); 881 let _cancelOnError = Symbol('_cancelOnError');
882 let _onCancel = Symbol('_onCancel'); 882 let _onCancel = Symbol('_onCancel');
883 let _incrementPauseCount = Symbol('_incrementPauseCount'); 883 let _incrementPauseCount = Symbol('_incrementPauseCount');
884 let _sendData = Symbol('_sendData'); 884 let _sendData = Symbol('_sendData');
885 let _addPending = Symbol('_addPending'); 885 let _addPending = Symbol('_addPending');
886 let _sendError = Symbol('_sendError'); 886 let _sendError = Symbol('_sendError');
887 let _sendDone = Symbol('_sendDone');
887 let _close = Symbol('_close'); 888 let _close = Symbol('_close');
888 let _sendDone = Symbol('_sendDone');
889 let _checkState = Symbol('_checkState'); 889 let _checkState = Symbol('_checkState');
890 let _BufferingStreamSubscription$ = dart.generic(function(T) { 890 let _BufferingStreamSubscription$ = dart.generic(function(T) {
891 class _BufferingStreamSubscription extends core.Object { 891 class _BufferingStreamSubscription extends core.Object {
892 _BufferingStreamSubscription(onData, onError, onDone, cancelOnError) { 892 _BufferingStreamSubscription(onData, onError, onDone, cancelOnError) {
893 this[_zone] = Zone.current; 893 this[_zone] = Zone.current;
894 this[_state] = dart.notNull(cancelOnError) ? _BufferingStreamSubscriptio n$()._STATE_CANCEL_ON_ERROR : 0; 894 this[_state] = dart.notNull(cancelOnError) ? _BufferingStreamSubscriptio n$()._STATE_CANCEL_ON_ERROR : 0;
895 this[_onData] = null; 895 this[_onData] = null;
896 this[_onError] = null; 896 this[_onError] = null;
897 this[_onDone] = null; 897 this[_onDone] = null;
898 this[_cancelFuture] = null; 898 this[_cancelFuture] = null;
(...skipping 5014 matching lines...) Expand 10 before | Expand all | Expand 10 after
5913 exports.ScheduleMicrotaskHandler = ScheduleMicrotaskHandler; 5913 exports.ScheduleMicrotaskHandler = ScheduleMicrotaskHandler;
5914 exports.CreateTimerHandler = CreateTimerHandler; 5914 exports.CreateTimerHandler = CreateTimerHandler;
5915 exports.CreatePeriodicTimerHandler = CreatePeriodicTimerHandler; 5915 exports.CreatePeriodicTimerHandler = CreatePeriodicTimerHandler;
5916 exports.PrintHandler = PrintHandler; 5916 exports.PrintHandler = PrintHandler;
5917 exports.ForkHandler = ForkHandler; 5917 exports.ForkHandler = ForkHandler;
5918 exports.ZoneSpecification = ZoneSpecification; 5918 exports.ZoneSpecification = ZoneSpecification;
5919 exports.ZoneDelegate = ZoneDelegate; 5919 exports.ZoneDelegate = ZoneDelegate;
5920 exports.Zone = Zone; 5920 exports.Zone = Zone;
5921 exports.runZoned = runZoned; 5921 exports.runZoned = runZoned;
5922 }); 5922 });
OLDNEW
« no previous file with comments | « lib/runtime/dart/_native_typed_data.js ('k') | lib/runtime/dart/collection.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698