-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(TypeScript): enable ' --noUnusedLocals' option
- Loading branch information
1 parent
b5fb259
commit edfc143
Showing
35 changed files
with
166 additions
and
140 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
import { Observable } from './Observable'; | ||
import { Subscriber } from './Subscriber'; | ||
import { TeardownLogic } from './Subscription'; | ||
|
||
export interface Operator<T, R> { | ||
call(subscriber: Subscriber<R>, source: any): TeardownLogic; | ||
call(subscriber: Subscriber<R>, source: Observable<T>): TeardownLogic; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,94 +1,95 @@ | ||
import { Scheduler } from '../Scheduler'; | ||
import { Observable } from '../Observable'; | ||
import { Subscriber } from '../Subscriber'; | ||
import { TeardownLogic } from '../Subscription'; | ||
|
||
interface PairsContext<T> { | ||
obj: Object; | ||
keys: Array<string>; | ||
length: number; | ||
index: number; | ||
subscriber: Subscriber<Array<string | T>>; | ||
} | ||
|
||
function dispatch<T>(state: PairsContext<T>) { | ||
const {obj, keys, length, index, subscriber} = state; | ||
|
||
if (index === length) { | ||
subscriber.complete(); | ||
return; | ||
} | ||
|
||
const key = keys[index]; | ||
subscriber.next([key, obj[key]]); | ||
|
||
state.index = index + 1; | ||
|
||
(<any> this).schedule(state); | ||
} | ||
|
||
/** | ||
* We need this JSDoc comment for affecting ESDoc. | ||
* @extends {Ignored} | ||
* @hide true | ||
*/ | ||
export class PairsObservable<T> extends Observable<Array<string | T>> { | ||
private keys: Array<string>; | ||
|
||
/** | ||
* Convert an object into an observable sequence of [key, value] pairs | ||
* using an optional Scheduler to enumerate the object. | ||
* | ||
* @example <caption>Converts a javascript object to an Observable</caption> | ||
* var obj = { | ||
* foo: 42, | ||
* bar: 56, | ||
* baz: 78 | ||
* }; | ||
* | ||
* var source = Rx.Observable.pairs(obj); | ||
* | ||
* var subscription = source.subscribe( | ||
* function (x) { | ||
* console.log('Next: %s', x); | ||
* }, | ||
* function (err) { | ||
* console.log('Error: %s', err); | ||
* }, | ||
* function () { | ||
* console.log('Completed'); | ||
* }); | ||
* | ||
* @param {Object} obj The object to inspect and turn into an | ||
* Observable sequence. | ||
* @param {Scheduler} [scheduler] An optional Scheduler to run the | ||
* enumeration of the input sequence on. | ||
* @returns {(Observable<Array<string | T>>)} An observable sequence of | ||
* [key, value] pairs from the object. | ||
*/ | ||
static create<T>(obj: Object, scheduler?: Scheduler): Observable<Array<string | T>> { | ||
return new PairsObservable<T>(obj, scheduler); | ||
} | ||
|
||
constructor(private obj: Object, private scheduler?: Scheduler) { | ||
super(); | ||
this.keys = Object.keys(obj); | ||
} | ||
|
||
protected _subscribe(subscriber: Subscriber<Array<string | T>>): TeardownLogic { | ||
const {keys, scheduler} = this; | ||
const length = keys.length; | ||
|
||
if (scheduler) { | ||
return scheduler.schedule(dispatch, 0, { | ||
obj: this.obj, keys, length, index: 0, subscriber | ||
}); | ||
} else { | ||
for (let idx = 0; idx < length; idx++) { | ||
const key = keys[idx]; | ||
subscriber.next([key, this.obj[key]]); | ||
} | ||
subscriber.complete(); | ||
} | ||
} | ||
import { Scheduler } from '../Scheduler'; | ||
import { Observable } from '../Observable'; | ||
import { Subscriber } from '../Subscriber'; | ||
import { TeardownLogic } from '../Subscription'; | ||
|
||
interface PairsContext<T> { | ||
obj: Object; | ||
keys: Array<string>; | ||
length: number; | ||
index: number; | ||
subscriber: Subscriber<Array<string | T>>; | ||
} | ||
|
||
function dispatch<T>(state: PairsContext<T>) { | ||
const {obj, keys, length, index, subscriber} = state; | ||
|
||
if (index === length) { | ||
subscriber.complete(); | ||
return; | ||
} | ||
|
||
const key = keys[index]; | ||
subscriber.next([key, obj[key]]); | ||
|
||
state.index = index + 1; | ||
|
||
(<any> this).schedule(state); | ||
} | ||
|
||
/** | ||
* We need this JSDoc comment for affecting ESDoc. | ||
* @extends {Ignored} | ||
* @hide true | ||
*/ | ||
export class PairsObservable<T> extends Observable<Array<string | T>> { | ||
private keys: Array<string>; | ||
|
||
/** | ||
* Convert an object into an observable sequence of [key, value] pairs | ||
* using an optional Scheduler to enumerate the object. | ||
* | ||
* @example <caption>Converts a javascript object to an Observable</caption> | ||
* var obj = { | ||
* foo: 42, | ||
* bar: 56, | ||
* baz: 78 | ||
* }; | ||
* | ||
* var source = Rx.Observable.pairs(obj); | ||
* | ||
* var subscription = source.subscribe( | ||
* function (x) { | ||
* console.log('Next: %s', x); | ||
* }, | ||
* function (err) { | ||
* console.log('Error: %s', err); | ||
* }, | ||
* function () { | ||
* console.log('Completed'); | ||
* }); | ||
* | ||
* @param {Object} obj The object to inspect and turn into an | ||
* Observable sequence. | ||
* @param {Scheduler} [scheduler] An optional Scheduler to run the | ||
* enumeration of the input sequence on. | ||
* @returns {(Observable<Array<string | T>>)} An observable sequence of | ||
* [key, value] pairs from the object. | ||
*/ | ||
static create<T>(obj: Object, scheduler?: Scheduler): Observable<Array<string | T>> { | ||
return new PairsObservable<T>(obj, scheduler); | ||
} | ||
|
||
constructor(private obj: Object, private scheduler?: Scheduler) { | ||
super(); | ||
this.keys = Object.keys(obj); | ||
} | ||
|
||
protected _subscribe(subscriber: Subscriber<Array<string | T>>): TeardownLogic { | ||
const keys = this.keys; | ||
const scheduler = this.scheduler; | ||
const length = keys.length; | ||
|
||
if (scheduler) { | ||
return scheduler.schedule(dispatch, 0, { | ||
obj: this.obj, keys, length, index: 0, subscriber | ||
}); | ||
} else { | ||
for (let idx = 0; idx < length; idx++) { | ||
const key = keys[idx]; | ||
subscriber.next([key, this.obj[key]]); | ||
} | ||
subscriber.complete(); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.