Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2019
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. onScheduleTask(delegate, current, target, task) {
  2. switch (task.type) {
  3. case 'microTask':
  4. ...
  5. this._microtasks.push({
  6. func: task.invoke,
  7. args: additionalArgs,
  8. target: task.data && task.data.target
  9. });
  10.  
  11. break;
  12. }
  13. )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement