Skip to content

Commit 1d9124e

Browse files
authored
[Release-2.0] Merge master into Release-2.0 (#10347)
* Change getUnionType to default to no subtype reduction * Remove unnecessary subtype reduction operations * Use binary searching in union types to improve performance * Optimize type inference * Fixed broken singleAsteriskRegex. Fixes #9918 (#9920) * Lock ts-node to 1.1.0 while perf issue is investigated (#9933) * Fix typo in comment for MAX_SAFE_INTEGER * In ts.performance.now, bind window.performance.now Using an arrow function. Previously, it was set directly to window.performance.now, which fails when used on Chrome. * Add lint enforcing line endings (#9942) * Add servicesSources to the list of prerequisites for running tests * Support emitting static properties for classes with no name * Add assertion whitespace lint rule (#9931) * Add assertion whitespace lint rule * Fix typo * Add the word `Rule` to Jakefile * Limit travis build matrix (#9968) * Convert getErrorBaseline to use canonical diagnostic formatting (#9708) * Convert getErrorBaseline to use canonical diagnostic formatting * Fix lint * Found another clone of format diagnostic - consolidate * Fully declone * Unify nodeKind implementations for navigationBar and navigateTo * Fix test and rename a function * Fix lint errors * Remove hardcoded port, use the custom port * Unlock ts-node version (#9960) * Allow an abstract class to appear in a local scope * JSDoc understands string literal types Unfortunately, I didn't find a way to reuse the normal string literal type, so I had to extend the existing JSDoc type hierarchy. Otherwise, this feature is very simple. * Update baselines to be current * Add find and findIndex to ReadonlyArray * The optional this should be readonly too. * Update baseline source location * Re-add concat overload to support inferring tuples * Update baselines with new concat overload * Update LastJSDoc[Tag]Node * Display enum member types using qualified names * Accept new baselines * Fix lint error * null/undefined are allowed as index expressions `null` and `undefined` are not allowed with `--strictNullChecks` turned on. Previously, they were disallowed whether or not it was on. * Use correct nullable terminology * Get rid of port parameter * Remove [port] in usage message * Properly reset type guards in loops * Add regression test * Introduce the `EntityNameExpression` type * Allow `export =` and `export default` to alias any EntityNameExpression, not just identifiers. * Lint tests helper files * recreate program if baseUrl or paths changed in tsconfig * Simplify some code * Have travis use a newer image for the OSX build (#10034) Suggested by travis support for stopping the randomly-halting-builds issue. * Correctly check for ambient class flag * Use "best choice type" for || and ?: operators * jsx opening element formatting * change error message for unused parameter property fix * Fix issue related to this and #8383 * Add additional tests * Accept new baselines * Provide `realpath` for module resolution in LSHost * Add test * Add test baselines * Accept new baselines * CR feedback * Remove `SupportedExpressionWithTypeArguments` type; just check that the expression of each `ExpressionWithTypeArguments` is an `EntityNameExpression`. * Fix bug * Fix #10083 - allowSyntheticDefaultImports alters getExternalModuleMember (#10096) * Use recursion, and fix error for undefined node * Rename function * Fix lint error * Narrowing type parameter intersects w/narrowed types This makes sure that a union type that includes a type parameter is still usable as the actual type that the type guard narrows to. * Add a helper function `getOrUpdateProperty` to prevent unprotected access to Maps. * Limit type guards as assertions to incomplete types in loops * Accept new baselines * Fix linting error * Allow JS multiple declarations of ctor properties When a property is declared in the constructor and on the prototype of an ES6 class, the property's symbol is discarded in favour of the method's symbol. That because the usual use for this pattern is to bind an instance function: `this.m = this.m.bind(this)`. In this case the type you want really is the method's type. * Use {} type facts for unconstrained type params Previously it was using TypeFacts.All. But the constraint of an unconstrained type parameter is actually {}. * Fix newline lint * Test that declares conflicting method first * [Release-2.0] Fix 9662: Visual Studio 2015 with TS2.0 gives incorrect @types path resolution errors (#9867) * Change the shape of the shim layer to support getAutomaticTypeDirectives * Change the key for looking up automatic type-directives * Update baselines from change look-up name of type-directives * Add @CurrentDirectory into the test * Update baselines * Fix linting error * Address PR: fix spelling mistake * Instead of return path of the type directive names just return type directive names * Remove unused reference files: these tests produce erros so they will not produce these files (#9233) * Add string-literal completion test for jsdoc * Support other (new) literal types in jsdoc * Don't allow properties inherited from Object to be automatically included in TSX attributes * Add new test baseline and delete else in binder The extra `else` caused a ton of test failures! * Fix lint * Port PR #10016 to Master (#10100) * Treat namespaceExportDeclaration as declaration * Update baselines * wip - add tests * Add tests * Show "export namespace" for quick-info * Fix more lint * Try using runtests-parallel for CI (#9970) * Try using runtests-parallel for CI * Put worker count setting into .travis.yml * Reduce worker count to 4 - 8 wasnt much different from 4-6 but had contention issues causing timeouts * Fix lssl task (#9967) * Surface noErrorTruncation option * Stricter check for discriminant properties in type guards * Add tests * Emit more efficient/concise "empty" ES6 ctor When there are property assignments in a the class body of an inheriting class, tsc current emit the following compilation: ```ts class Foo extends Bar { public foo = 1; } ``` ```js class Foo extends Bar { constructor(…args) { super(…args); this.foo = 1; } } ``` This introduces an unneeded local variable and might force a reification of the `arguments` object (or otherwise reify the arguments into an array). This is particularly bad when that output is fed into another transpiler like Babel. In Babel, you get something like this today: ```js var Foo = (function (_Bar) { _inherits(Foo, _Bar); function Foo() { _classCallCheck(this, Foo); for (var _len = arguments.length, args = Array(_len), _key = 0; _key < _len; _key++) { args[_key] = arguments[_key]; } _Bar.call.apply(_Bar, [this].concat(args)); this.foo = 1; } return Foo; })(Bar); ``` This causes a lot of needless work/allocations and some very strange code (`.call.apply` o_0). Admittedly, this is not strictly tsc’s problem; it could have done a deeper analysis of the code and optimized out the extra dance. However, tsc could also have emitted this simpler, more concise and semantically equivalent code in the first place: ```js class Foo extends Bar { constructor() { super(…arguments); this.foo = 1; } } ``` Which compiles into the following in Babel: ```js var Foo = (function (_Bar) { _inherits(Foo, _Bar); function Foo() { _classCallCheck(this, Foo); _Bar.apply(this, arguments); this.foo = 1; } return Foo; })(Bar); ``` Which is well-optimized (today) in most engines and much less confusing to read. As far as I can tell, the proposed compilation has exactly the same semantics as before. Fixes #10175 * Fix instanceof operator narrowing issues * Accept new baselines * Add regression test * Improve naming and documentation from PR * Update comment * Add more tests * Accept new baselines * Reduce worker count to 3 (#10210) Since we saw a starvation issue on one of @sandersn's PRs. * Speed up fourslash tests * Duh * Make baselines faster by not writing out unneeded files * Fix non-strict-compliant test * Fix 10076: Fix Tuple Destructing with "this" (#10208) * Call checkExpression eventhough there is no appropriate type from destructuring of array * Add tests and baselines * use transpileModule * Remove use strict * Improve instanceof for structurally identical types * Introduce isTypeInstanceOf function * Add test * Accept new baselines * Fix loop over array to use for-of instead of for-in * Use correct this in tuple type parameter constraints Instantiate this in tuple types used as type parameter constraints * Add explanatory comment to resolveTupleTypeMembers * Ignore null, undefined, void when checking for discriminant property * Add regression test * Delay tuple type constraint resolution Create a new tuple that stores the this-type. * Always use thisType when generating tuple id * Optimize format of type list id strings used in maps * Make ReadonlyArray iterable. * Allow OSX to fail while we investigate (#10255) The random test timeouts are an issue. * avoid using the global name * Fix single-quote lint * Optimize performance of maps * Update API sample * Fix processDiagnosticMessages script * Have travis take shallow clones of the repo (#10275) Just cloning TS on travis takes 23 seconds on linux (68 seconds on mac), hopefully having it do a shallow clone will help. We don't rely on any tagging/artifacts from the travis servers which clone depth could impact, so this shouldn't impact anything other than build speed. * Add folds to travis log (#10269) * Optimize filterType to only call getUnionType if necessary * Add shorthand types declaration for travis-fold (#10293) * Optimize getTypeWithFacts * Filter out nullable and primitive types in isDiscriminantProperty * Fix typo * Add regression tests * Optimize core filter function to only allocate when necessary * Address CR comments + more optimizations * Faster path for creating union types from filterType * Allow an @types direcotry to have a package.json which specifies `"typings": null` to disclude it from automatically included typings. * Lint * Collect timing information for commands running on travis (#10308) * Simplifies performance API * Use 'MapLike' instead of 'Map' in 'preferConstRule.ts'. * narrow from 'any' in most situations instanceof and user-defined typeguards narrow from 'any' unless the narrowed-to type is exactly 'Object' or 'Function'. This is a breaking change. * Update instanceof conformance tests * accept new baselines * add tests * accept new baselines * Use lowercase names for type reference directives * Use proper response codes in web tests * Treat ambient shorthand declarations as explicit uses of the `any` type * Parallel linting (#10313) * A perilous thing, a parallel lint * Use work queue rather than scheduling work * Dont read files for lint on main thread * Fix style * Fix the style fix (#10344) * Aligned mark names with values used by ts-perf. * Use an enum in checkClassForDuplicateDeclarations to aid readability * Rename to Accessor * Correctly update package.json version * Migrated more MapLikes to Maps * Add ES2015 Date constructor signature that accepts another Date (#10353) * Parameters with no assignments implicitly considered const * Add tests * Migrate additional MapLikes to Maps. * Fix 10625: JSX Not validating when index signature is present (#10352) * Check for type of property declaration before using index signature * Add tests and baselines * fix linting error * Adding more comments * Clean up/move some Map helper functions. * Revert some formatting changes. * Improve ReadonlyArray<T>.concat to match Array<T> The Array-based signature was incorrect and also out-of-date. * Fix link to blog * Remove old assertion about when we're allowed to use fileExists * Set isNewIdentifierLocation to true for JavaScript files * Update error message for conflicting type definitions Fixes #10370 * Explain why we lower-case type reference directives * Correctly merge bindThisPropertyAssignment Also simply it considerably after noticing that it's *only* called for Javascript files, so there was a lot of dead code for TS cases that never happened. * Fix comment * Property handle imcomplete control flow types in nested loops * Update due to CR suggestion * Add regression test * Fix 10289: correctly generate tsconfig.json with --lib (#10355) * Separate generate tsconfig into its own function and implement init with --lib # Conflicts: # src/compiler/tsc.ts * Add tests and baselines; Update function name Add unittests and baselines Add unittests and baselines for generating tsconfig Move unittest into harness folder Update harness tsconfig.json USe correct function name * Use new MapLike interstead. Update unittest # Conflicts: # src/compiler/commandLineParser.ts * Update JakeFile * Add tests for incorrect cases * Address PR : remove explicity write node_modules * Add more tests for `export = foo.bar`. * Output test baselines to tests/baselines/local instead of root
1 parent 5d0e199 commit 1d9124e

File tree

896 files changed

+27710
-37751
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

896 files changed

+27710
-37751
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ tests/baselines/reference/projectOutput/*
1717
tests/baselines/local/projectOutput/*
1818
tests/services/baselines/prototyping/local/*
1919
tests/services/browser/typescriptServices.js
20+
scripts/authors.js
2021
scripts/configureNightly.js
2122
scripts/processDiagnosticMessages.d.ts
2223
scripts/processDiagnosticMessages.js

.mailmap

+146
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,146 @@
1+

2+
Alexander <[email protected]># Alexander Kuvaev
3+
AbubakerB <[email protected]> # Abubaker Bashir
4+
Adam Freidin <[email protected]> Adam Freidin <[email protected]>
5+
Adi Dahiya <[email protected]> Adi Dahiya <[email protected]>
6+
Ahmad Farid <[email protected]> ahmad-farid <[email protected]>
7+
Alex Eagle <[email protected]>
8+
Anders Hejlsberg <[email protected]> unknown <[email protected]> unknown <[email protected]>
9+
Andrew Z Allen <[email protected]>
10+
11+
Anil Anar <[email protected]>
12+
Anton Tolmachev <[email protected]>
13+
Arnavion <[email protected]> # Arnav Singh
14+
Arthur Ozga <[email protected]> Arthur Ozga <[email protected]>
15+
Asad Saeeduddin <[email protected]>
16+
Schmavery <[email protected]> # Avery Morin
17+
Basarat Ali Syed <[email protected]> Basarat Syed <[email protected]> basarat <[email protected]>
18+
Bill Ticehurst <[email protected]> Bill Ticehurst <[email protected]>
19+
Ben Duffield <[email protected]>
20+
Blake Embrey <[email protected]>
21+
Bowden Kelly <[email protected]>
22+
Brett Mayen <[email protected]>
23+
Bryan Forbes <[email protected]>
24+
Caitlin Potter <[email protected]>
25+
ChrisBubernak <[email protected]> unknown <[email protected]> # Chris Bubernak
26+
Chuck Jazdzewski <[email protected]>
27+
Colby Russell <[email protected]>
28+
Colin Snover <[email protected]>
29+
Cyrus Najmabadi <[email protected]> CyrusNajmabadi <[email protected]> unknown <[email protected]>
30+
Dan Corder <[email protected]>
31+
32+
Daniel Rosenwasser <[email protected]> Daniel Rosenwasser <[email protected]> Daniel Rosenwasser <[email protected]> Daniel Rosenwasser <[email protected]> Daniel Rosenwasser <[email protected]>
33+
34+
David Souther <[email protected]>
35+
Denis Nedelyaev <[email protected]>
36+
Dick van den Brink <[email protected]> unknown <[email protected]> unknown <[email protected]>
37+
Dirk Baeumer <[email protected]> Dirk Bäumer <[email protected]> # Dirk Bäumer
38+
Dirk Holtwick <[email protected]>
39+
Doug Ilijev <[email protected]>
40+
Erik Edrosa <[email protected]>
41+
Ethan Rubio <[email protected]>
42+
Evan Martin <[email protected]>
43+
Evan Sebastian <[email protected]>
44+
Eyas <[email protected]> # Eyas Sharaiha
45+
falsandtru <[email protected]> # @falsandtru
46+
Frank Wallis <[email protected]>
47+
František Žiačik <[email protected]> František Žiačik <[email protected]>
48+
Gabriel Isenberg <[email protected]>
49+
Gilad Peleg <[email protected]>
50+
Graeme Wicksted <[email protected]>
51+
Guillaume Salles <[email protected]>
52+
Guy Bedford <[email protected]> guybedford <[email protected]>
53+
Harald Niesche <[email protected]>
54+
Iain Monro <[email protected]>
55+
Ingvar Stepanyan <[email protected]>
56+
impinball <[email protected]> # Isiah Meadows
57+
Ivo Gabe de Wolff <[email protected]>
58+
James Whitney <[email protected]>
59+
Jason Freeman <[email protected]> Jason Freeman <[email protected]>
60+
Jason Killian <[email protected]>
61+
Jason Ramsay <[email protected]> jramsay <[email protected]>
62+
63+
Jeffrey Morlan <[email protected]>
64+
tobisek <[email protected]> # Jiri Tobisek
65+
Johannes Rieken <[email protected]>
66+
John Vilk <[email protected]>
67+
jbondc <[email protected]> jbondc <[email protected]> jbondc <[email protected]> # Jonathan Bond-Caron
68+
Jonathan Park <[email protected]>
69+
Jonathan Turner <[email protected]> Jonathan Turner <[email protected]>
70+
Jonathan Toland <[email protected]>
71+
Jesse Schalken <[email protected]>
72+
Josh Kalderimis <[email protected]>
73+
Josh Soref <[email protected]>
74+
Juan Luis Boya García <[email protected]>
75+
Julian Williams <[email protected]>
76+
Herrington Darkholme <[email protected]>
77+
Kagami Sascha Rosylight <[email protected]> SaschaNaz <[email protected]>
78+
Kanchalai Tanglertsampan <[email protected]> Yui <[email protected]>
79+
Kanchalai Tanglertsampan <[email protected]> Yui T <[email protected]>
80+
Kanchalai Tanglertsampan <[email protected]> Yui <[email protected]>
81+
Kanchalai Tanglertsampan <[email protected]> Yui <[email protected]>
82+
Kanchalai Tanglertsampan <[email protected]> yui T <[email protected]>
83+
Keith Mashinter <[email protected]> kmashint <[email protected]>
84+
Ken Howard <[email protected]>
85+
kimamula <[email protected]> # Kenji Imamula
86+
Kyle Kelley <[email protected]>
87+
Lorant Pinter <[email protected]>
88+
Lucien Greathouse <[email protected]>
89+
Martin Vseticka <[email protected]> Martin Všeticka <[email protected]> MartyIX <[email protected]>
90+
vvakame <[email protected]> # Masahiro Wakame
91+
Matt McCutchen <[email protected]>
92+
Max Deepfield <[email protected]>
93+
Micah Zoltu <[email protected]>
94+
Mohamed Hegazy <[email protected]>
95+
Nathan Shively-Sanders <[email protected]>
96+
Nathan Yee <[email protected]>
97+
Nima Zahedi <[email protected]>
98+
99+
mihailik <[email protected]> # Oleg Mihailik
100+
Oleksandr Chekhovskyi <[email protected]>
101+
Paul van Brenk <[email protected]> Paul van Brenk <[email protected]> unknown <[email protected]> unknown <[email protected]> unknown <[email protected]>
102+
Oskar Segersva¨rd <[email protected]>
103+
pcan <[email protected]> # Piero Cangianiello
104+
pcbro <[email protected]> # @pcbro
105+
Pedro Maltez <[email protected]> # Pedro Maltez
106+
piloopin <[email protected]> # @piloopin
107+
milkisevil <[email protected]> # Philip Bulley
108+
progre <[email protected]> # @progre
109+
Prayag Verma <[email protected]>
110+
Punya Biswal <[email protected]>
111+
Rado Kirov <[email protected]>
112+
Ron Buckton <[email protected]> Ron Buckton <[email protected]>
113+
Richard Knoll <[email protected]> Richard Knoll <[email protected]>
114+
Rowan Wyborn <[email protected]>
115+
Ryan Cavanaugh <[email protected]> Ryan Cavanaugh <[email protected]> Ryan Cavanaugh <[email protected]>
116+
Ryohei Ikegami <[email protected]>
117+
Sarangan Rajamanickam <[email protected]>
118+
Sébastien Arod <[email protected]>
119+
Sheetal Nandi <[email protected]>
120+
Shengping Zhong <[email protected]>
121+
122+
Simon Hürlimann <[email protected]>
123+
Solal Pirelli <[email protected]>
124+
Stan Thomas <[email protected]>
125+
Stanislav Sysoev <[email protected]>
126+
Steve Lucco <[email protected]> steveluc <[email protected]>
127+
Tarik <[email protected]> # Tarik Ozket
128+
Tetsuharu OHZEKI <[email protected]> # Tetsuharu Ohzeki
129+
Tien Nguyen <[email protected]> tien <[email protected]> unknown <[email protected]> #Tien Hoanhtien
130+
Tim Perry <[email protected]>
131+
Tim Viiding-Spader <[email protected]>
132+
Tingan Ho <[email protected]>
133+
togru <[email protected]> # togru
134+
Tomas Grubliauskas <[email protected]>
135+
ToddThomson <[email protected]> # Todd Thomson
136+
TruongSinh Tran-Nguyen <[email protected]>
137+
vilicvane <[email protected]> # Vilic Vane
138+
Vladimir Matveev <[email protected]> vladima <[email protected]> v2m <[email protected]>
139+
Wesley Wigham <[email protected]> Wesley Wigham <[email protected]>
140+
141+
Yuichi Nukiyama <[email protected]> YuichiNukiyama <[email protected]>
142+
Zev Spitz <[email protected]>
143+
Zhengbo Li <[email protected]> zhengbli <[email protected]> Zhengbo Li <Zhengbo Li> Zhengbo Li <[email protected]> tinza123 <[email protected]> unknown <[email protected]> Zhengbo Li <Zhengbo Li>
144+
zhongsp <[email protected]> # Patrick Zhong
145+
T18970237136 <[email protected]> # @T18970237136
146+

.travis.yml

+31
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,34 @@ node_js:
66
- '0.10'
77

88
sudo: false
9+
10+
env:
11+
- workerCount=3
12+
13+
matrix:
14+
fast_finish: true
15+
include:
16+
- os: osx
17+
node_js: stable
18+
osx_image: xcode7.3
19+
env: workerCount=2
20+
allow_failures:
21+
- os: osx
22+
23+
branches:
24+
only:
25+
- master
26+
- transforms
27+
28+
install:
29+
- npm uninstall typescript
30+
- npm uninstall tslint
31+
- npm install
32+
- npm update
33+
34+
cache:
35+
directories:
36+
- node_modules
37+
38+
git:
39+
depth: 1

AUTHORS.md

+73-37
Original file line numberDiff line numberDiff line change
@@ -1,105 +1,141 @@
11
TypeScript is authored by:
2-
2+
* Abubaker Bashir
33
* Adam Freidin
4-
* Ahmad Farid
5-
* Akshar Patel
4+
* Adi Dahiya
5+
* Ahmad Farid
6+
* Alex Eagle
7+
* Alexander Kuvaev
68
* Anders Hejlsberg
9+
* Andrew Z Allen
10+
* Andy Hanson
11+
* Anil Anar
12+
* Anton Tolmachev
713
* Arnav Singh
814
* Arthur Ozga
915
* Asad Saeeduddin
10-
* Basarat Ali Syed
16+
* Avery Morin
17+
* Basarat Ali Syed
1118
* Ben Duffield
12-
* Bill Ticehurst
19+
* Bill Ticehurst
20+
* Blake Embrey
21+
* Bowden Kelly
1322
* Brett Mayen
14-
* Bryan Forbes
15-
* Caitlin Potter
23+
* Bryan Forbes
24+
* Caitlin Potter
1625
* Chris Bubernak
17-
* Colby Russell
26+
* Chuck Jazdzewski
27+
* Colby Russell
1828
* Colin Snover
1929
* Cyrus Najmabadi
2030
* Dan Corder
21-
* Dan Quirk
31+
* Dan Quirk
2232
* Daniel Rosenwasser
23-
* @dashaus
24-
* David Li
33+
* David Li
34+
* David Souther
2535
* Denis Nedelyaev
2636
* Dick van den Brink
2737
* Dirk Bäumer
2838
* Dirk Holtwick
39+
* Doug Ilijev
40+
* Erik Edrosa
41+
* Ethan Rubio
42+
* Evan Martin
43+
* Evan Sebastian
2944
* Eyas Sharaiha
3045
* @falsandtru
31-
* Frank Wallis
46+
* Frank Wallis
47+
* František Žiačik
3248
* Gabriel Isenberg
33-
* Gilad Peleg
49+
* Gilad Peleg
3450
* Graeme Wicksted
35-
* Guillaume Salles
51+
* Guillaume Salles
3652
* Guy Bedford
3753
* Harald Niesche
54+
* Herrington Darkholme
3855
* Iain Monro
3956
* Ingvar Stepanyan
40-
* Ivo Gabe de Wolff
41-
* James Whitney
57+
* Isiah Meadows
58+
* Ivo Gabe de Wolff
59+
* James Whitney
4260
* Jason Freeman
4361
* Jason Killian
44-
* Jason Ramsay
62+
* Jason Ramsay
63+
* JBerger
4564
* Jed Mao
4665
* Jeffrey Morlan
47-
* Johannes Rieken
66+
* Jesse Schalken
67+
* Jiri Tobisek
68+
* Johannes Rieken
4869
* John Vilk
4970
* Jonathan Bond-Caron
5071
* Jonathan Park
72+
* Jonathan Toland
5173
* Jonathan Turner
52-
* Jonathon Smith
5374
* Josh Kalderimis
75+
* Josh Soref
76+
* Juan Luis Boya García
5477
* Julian Williams
5578
* Kagami Sascha Rosylight
79+
* Kanchalai Tanglertsampan
5680
* Keith Mashinter
5781
* Ken Howard
5882
* Kenji Imamula
59-
* Lorant Pinter
83+
* Kyle Kelley
84+
* Lorant Pinter
6085
* Lucien Greathouse
61-
* Martin Všetička
86+
* Martin Vseticka
6287
* Masahiro Wakame
63-
* Mattias Buelens
88+
* Matt McCutchen
6489
* Max Deepfield
65-
* Micah Zoltu
66-
* Mohamed Hegazy
90+
* Micah Zoltu
91+
* Mohamed Hegazy
6792
* Nathan Shively-Sanders
6893
* Nathan Yee
94+
* Nima Zahedi
95+
* Noj Vek
6996
* Oleg Mihailik
70-
* Oleksandr Chekhovskyi
71-
* Paul van Brenk
97+
* Oleksandr Chekhovskyi
98+
* Oskar Segersva¨rd
99+
* Patrick Zhong
100+
* Paul van Brenk
72101
* @pcbro
73-
* Pedro Maltez
102+
* Pedro Maltez
74103
* Philip Bulley
75-
* piloopin
104+
* Piero Cangianiello
105+
* @piloopin
106+
* Prayag Verma
76107
* @progre
77108
* Punya Biswal
78-
* Richard Sentino
79-
* Ron Buckton
109+
* Rado Kirov
110+
* Richard Knoll
111+
* Ron Buckton
80112
* Rowan Wyborn
81-
* Ryan Cavanaugh
113+
* Ryan Cavanaugh
82114
* Ryohei Ikegami
83-
* Sébastien Arod
115+
* Sarangan Rajamanickam
84116
* Sheetal Nandi
85117
* Shengping Zhong
86118
* Shyyko Serhiy
87119
* Simon Hürlimann
88120
* Solal Pirelli
89121
* Stan Thomas
122+
* Stanislav Sysoev
90123
* Steve Lucco
91-
* Thomas Loubiou
124+
* Sébastien Arod
125+
* @T18970237136
126+
* Tarik Ozket
92127
* Tien Hoanhtien
93128
* Tim Perry
129+
* Tim Viiding-Spader
94130
* Tingan Ho
131+
* Todd Thomson
95132
* togru
96133
* Tomas Grubliauskas
97134
* TruongSinh Tran-Nguyen
98-
* Viliv Vane
135+
* Vilic Vane
99136
* Vladimir Matveev
100137
* Wesley Wigham
101138
* York Yao
102-
* Yui Tanglertsampan
103139
* Yuichi Nukiyama
104-
* Zev Spitz
105-
* Zhengbo Li
140+
* Zev Spitz
141+
* Zhengbo Li

0 commit comments

Comments
 (0)