Skip to content
This repository has been archived by the owner on Dec 25, 2018. It is now read-only.

Commit

Permalink
Progressively standardizing (following standard) Promise<T> without c…
Browse files Browse the repository at this point in the history
…ompromises. Avoiding double defers and chained defer/delays.
  • Loading branch information
electricessence committed May 26, 2016
1 parent 61db330 commit f00aee3
Show file tree
Hide file tree
Showing 146 changed files with 1,350 additions and 3,004 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "typescript-dotnet",
"version": "2.16.4",
"version": "2.16.5",
"ignore": [
".bowercc",
".gitignore",
Expand Down
2 changes: 1 addition & 1 deletion dist/amd/System/Collections/Dictionaries/Dictionary.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/amd/System/Collections/Dictionaries/Dictionary.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/amd/System/Collections/Enumeration/EnumeratorBase.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/amd/System/Collections/LinkedNodeList.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/amd/System/Collections/LinkedNodeList.js.map

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion dist/amd/System/Disposable/ObjectPool.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,14 @@ import { DisposableBase } from "./DisposableBase";
export declare class ObjectPool<T> extends DisposableBase {
private _maxSize;
private _generator;
private _recycler;
private _pool;
private _trimmer;
private _flusher;
private _autoFlusher;
private _localAbsMaxSize;
autoClearTimeout: number;
constructor(_maxSize: number, _generator: () => T);
constructor(_maxSize: number, _generator: (...args: any[]) => T, _recycler?: (o: T) => void);
maxSize: number;
count: number;
protected _trim(): void;
Expand Down
Loading

0 comments on commit f00aee3

Please sign in to comment.