Replace phabricator tickets with github ones in code comments (#4519)

This commit is contained in:
Daniel Tschinder 2016-09-18 04:50:02 +02:00 committed by Henry Zhu
parent ec34e5acc7
commit 590ad4d24f
4 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
// T6809
// #3861
function t(x = "default", { a, b }, ...args) {
console.log(x, a, b, args);
}

View File

@ -1,4 +1,4 @@
// T6809
// #3861
function t() {
var x = arguments.length <= 0 || arguments[0] === undefined ? "default" : arguments[0];
var _ref = arguments[1];

View File

@ -212,7 +212,7 @@ export function requeue(pathToQueue = this) {
if (pathToQueue.removed) return;
// TODO(loganfsmyth): This should be switched back to queue in parent contexts
// automatically once T2892 and T7160 have been resolved. See T7166.
// automatically once #2892 and #4135 have been resolved. See #4140.
// let contexts = this._getQueueContexts();
let contexts = this.contexts;

View File

@ -50,7 +50,7 @@ export function _containerInsert(from, nodes) {
// While this path may have a context, there is currently no guarantee that the context
// will be the active context, because `popContext` may leave a final context in place.
// We should remove this `if` and always push once T7171 has been resolved.
// We should remove this `if` and always push once #4145 has been resolved.
if (this.context.queue) path.pushContext(this.context);
paths.push(path);
} else {