2798 Commits

Author SHA1 Message Date
Mohamed Hegazy
fc950ed930 Move Map to types to ensure it is visible in definition files 2014-12-10 14:41:57 -08:00
Mohamed Hegazy
523c1795b8 use ts.System for tests 2014-12-10 14:41:32 -08:00
Mohamed Hegazy
0d9b2c8725 move text defintions to services.ts 2014-12-10 14:40:24 -08:00
Daniel Rosenwasser
4deea66c1c Put 'sys' into the 'ts' module. 2014-12-10 14:40:09 -08:00
Daniel Rosenwasser
73ee0382be Use __filename for 'getExecutingFilePath'. 2014-12-10 14:39:40 -08:00
Daniel Rosenwasser
5c8173bd58 Allow typescript to be importable in node. 2014-12-10 14:38:14 -08:00
Vladimir Matveev
0871801352 inherit delta from nodes on the same line 2014-12-09 10:47:27 -08:00
Paul van Brenk
40e5c73504 Update version to 1.4 2014-12-08 16:51:40 -08:00
Yui
b6249d0a9a Merge pull request #1406 from Microsoft/fixSpeculativeParse
Fix speculative parsing when trying to parse type argument list
2014-12-08 16:44:41 -08:00
Yui T
aee0b9e8a1 Merge branch 'master' into fixSpeculativeParse
Conflicts:
	tests/baselines/reference/parserCommaInTypeMemberList2.errors.txt
2014-12-08 16:35:51 -08:00
CyrusNajmabadi
0fb4155911 Merge pull request #1407 from Microsoft/commaInsteadOfSemicolon
Better error recovery when encountering an errant comma in a semicolon delimited list.
2014-12-08 16:18:28 -08:00
Yui T
5840dbef66 Merge branch 'fixSpeculativeParse' of https://github.com/Microsoft/TypeScript into fixSpeculativeParse 2014-12-08 15:48:44 -08:00
Yui T
c1d509a940 Update and add test cases 2014-12-08 15:47:24 -08:00
Vladimir Matveev
f23a87c2ee merge 2014-12-08 15:43:08 -08:00
Yui T
6e94d4d658 Update and add test cases 2014-12-08 15:38:35 -08:00
Cyrus Najmabadi
5db51fead8 Better error recovery when encountering an errant comma in a semicolon delimited list. 2014-12-08 15:35:09 -08:00
CyrusNajmabadi
9351fc1920 Merge pull request #1404 from Microsoft/test262Invariants
Add tree invariant checking to the test262 runner.
2014-12-08 15:14:40 -08:00
Yui T
e9beba783e Fix speculative parsing by terminating the list when encounting illegal token 2014-12-08 15:02:45 -08:00
Cyrus Najmabadi
4f4e249a04 Add tree invariant checking to the test262 runner. 2014-12-08 14:03:31 -08:00
CyrusNajmabadi
9f7ee6790c Merge pull request #1403 from Microsoft/test262
Improve test 262 baselines.
2014-12-08 13:39:22 -08:00
Cyrus Najmabadi
e9a5be46a4 Improve test 262 baselines. 2014-12-08 13:25:40 -08:00
Daniel Rosenwasser
b6f12253ce Merge pull request #1399 from Microsoft/checkSymbolExists
Check if the symbol exists before checking its visibility in isEntityNameVisible.
2014-12-08 11:22:34 -08:00
Mohamed Hegazy
44eca093a6 Merge pull request #1391 from DickvdBrink/cleanup
Removed property access
2014-12-07 14:13:13 -08:00
Dick van den Brink
73802885d0 Removed property access 2014-12-06 16:57:27 +01:00
Vladimir Matveev
98750ca7b4 Merge pull request #1389 from Microsoft/colorize_type_aliases
add classification for type aliases
2014-12-06 07:24:59 -08:00
Vladimir Matveev
8dac035f9e Merge pull request #1388 from Microsoft/indexer_name
fetch actual parameter name of indexer when printing literal type
2014-12-06 07:24:34 -08:00
Mohamed Hegazy
85d30c8558 Merge pull request #1381 from jbondc/master
Missing reference for getModuleInstanceState()
2014-12-06 07:17:34 -08:00
CyrusNajmabadi
3aa07a8b87 Merge pull request #1390 from Microsoft/invertedIncremental
Move code responsible for determining node resuability (in incremental scenarios) to a single location.
2014-12-06 01:37:34 -08:00
Cyrus Najmabadi
b25d0a6fbc Merge branch 'master' into invertedIncremental
Conflicts:
	src/services/syntax/parser.ts
2014-12-06 01:30:38 -08:00
Daniel Rosenwasser
cd8cd0ce3a Check if the symbol exists before checking its visibility.
Should fix #1348.
2014-12-05 18:13:58 -08:00
Cyrus Najmabadi
315815c11e Move code responsible for determining node resuability (in incremental scenarios) to a single location. 2014-12-05 17:43:45 -08:00
CyrusNajmabadi
2281a8506f Merge pull request #1385 from Microsoft/simplerIncremental
Remove restriction that you cannot reuse nodes/tokens during incremental parsing while doing speculatively operations.
2014-12-05 17:42:05 -08:00
Vladimir Matveev
f30bb7ec35 add classification for type aliases 2014-12-05 17:32:36 -08:00
Vladimir Matveev
b9bda98256 fetch actual parameter name of indexer when printing literal type 2014-12-05 16:58:49 -08:00
Cyrus Najmabadi
c6ee1a01e3 Move over all changes from my private branch. 2014-12-05 14:55:39 -08:00
Cyrus Najmabadi
bdcbea9908 Remove setting of parents in the factory. 2014-12-05 13:23:54 -08:00
Cyrus Najmabadi
d8da2a4d34 Remove restriction that you cannot reuse nodes/tokens during incremental parsing while doing speculatively operations.
Great idea from @yuit

This restriction was in place because the old parser would mutate nodes as it created them. i.e. when
creating a node it would set the parent of its children right then.  During incremental parsing, this
couldl be bad because we might take an old node, set its parent to be something else, and then decide
we didn't even want to go down that speculative path to begin with.  Now the parent of some child node
would be mutated.  So we might have a node that pointed to a child that then pointed to a different
parent.

To get around this, we restricted the incremental so that it would not reuse from the previous tree
if we were speculatively parsing.  However, Yui had a very good idea to just move the parent setting
phase to be a postpast (similar to the new compiler).  By doing this, we never mutate nodes as we
parse, and thus we never end up with inconsistent nodes.  The post pass then ensures that all parents
are correct relative to the new tree.

Conflicts:
	src/services/syntax/SyntaxGenerator.js
	src/services/syntax/SyntaxGenerator.js.map
	src/services/syntax/incrementalParser.ts
	src/services/syntax/scanner.ts
	src/services/syntax/syntaxGenerator.ts
	src/services/syntax/syntaxNodes.concrete.generated.ts
2014-12-05 12:57:08 -08:00
CyrusNajmabadi
57e1cf984a Merge pull request #1383 from Microsoft/fidelity1
Bits of Fidelity cleanup.
2014-12-05 09:15:04 -08:00
Cyrus Najmabadi
9982795200 Rename _skippedTokens to skippedTokens. 2014-12-05 09:05:36 -08:00
Cyrus Najmabadi
12e90a09ef Simplify parser API. 2014-12-05 09:05:28 -08:00
Cyrus Najmabadi
9cf588d4be Move syntax cursor into its own file. 2014-12-05 09:05:14 -08:00
CyrusNajmabadi
19841afc7d Merge pull request #1378 from Microsoft/useCallbacksForSpeculativeParsing
Use callbacks for speculative parsing.
2014-12-05 08:10:14 -08:00
jbondc
ab51f3069a Missing reference for getModuleInstanceState() 2014-12-05 07:18:23 -05:00
Cyrus Najmabadi
8032c0f950 Use callbacks for speculative parsing. 2014-12-04 19:05:01 -08:00
CyrusNajmabadi
308d8e5d1e Merge pull request #1372 from Microsoft/forEach
ForEach cleanup
2014-12-04 18:55:19 -08:00
Sheetal Nandi
ad062c1257 Merge pull request #1374 from Microsoft/let
"let" should only be considered a keyword in strict mode, or when it starts an actual construct
2014-12-04 17:54:35 -08:00
Sheetal Nandi
e29aadb4c4 "let" should only be considered a keyword in strict mode, or when it starts an actual construct
Handles #1301
2014-12-04 16:45:09 -08:00
Sheetal Nandi
a4ab192b6f Fix the merge conflicts 2014-12-04 13:38:51 -08:00
CyrusNajmabadi
f99bc15783 Merge pull request #1369 from Microsoft/parserErrors2
Track if the parser encountered any errors as a bit in the next node that is produced.
2014-12-04 13:37:50 -08:00
Vladimir Matveev
fc47fc31be Merge pull request #1371 from Microsoft/nullref_with_hotswapping
Remove redundant initialization code from the constructor of SyntaxTreeCache
2014-12-04 13:13:08 -08:00