-
Notifications
You must be signed in to change notification settings - Fork 793
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
'for i in expr do body' optimization..
Previously 'for i in expr do body' only had optimization when the type of expr was an 1D-array. 'for i in expr do body' now has optimizations for when expr is of type 'string' and 'List`1'. These optimizations increases the performance of the for expression but also reduces the number of objects created. latkin provided the following fixes: 1. Adapting tests to work with core\portable and core\netcore 2. Loop item over strings sometimes uses object, not char 3. Adjustments to debug ranges so that debug stepping behavior is consistent/unchanged 4. Updating codegen tests to represent corrected debug ranges
- Loading branch information
Showing
23 changed files
with
1,600 additions
and
121 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
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
@if "%_echo%"=="" echo off | ||
|
||
call %~d0%~p0..\..\single-test-build.bat | ||
|
||
exit /b %ERRORLEVEL% | ||
|
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
@if "%_echo%"=="" echo off | ||
|
||
call %~d0%~p0..\..\single-test-run.bat | ||
|
||
exit /b %ERRORLEVEL% | ||
|
||
|
Oops, something went wrong.