more changelog work for 2.072.0#1498
Merged
MartinNowak merged 9 commits intodlang:stablefrom Oct 15, 2016
Merged
Conversation
- also move it above non-deprecation change
- since the module cycle detection was fixed
andralex
approved these changes
Oct 15, 2016
changelog/2.072.0_pre.dd
Outdated
| $(BUGSTITLE Compiler Changes, | ||
| $(LI $(RELATIVE_LINK2 deferred_alias, Analysis for aliases in imported modules is deferred.)) | ||
| $(LI $(RELATIVE_LINK2 iteration_closure, OpApply now conservatively allocates a closure unless marked `scope`)) | ||
| $(LI $(RELATIVE_LINK2 dash_safe, Add -transition=safe switch to enable additional @safe checks.)) |
Member
There was a problem hiding this comment.
perhaps -transition=safe goes in backticks, too
| $(LI $(RELATIVE_LINK2 drt-oncycle, New druntime switch `--DRT-oncycle` | ||
| allows specifying what to do on cycle detection in modules.)) | ||
| $(LI $(RELATIVE_LINK2 gc-runtimeswitch-added, A switch for selecting | ||
| the GC implementation at runtime was added.)) |
Member
There was a problem hiding this comment.
should the switch name be mentioned?
changelog/2.072.0_pre.dd
Outdated
| $(P Implicit concatenation of string literal is a very early feature that is now supplanted | ||
| by the concatenation operator ('~'), the later being more explicit.) | ||
|
|
||
| $(P It could result in hard to spot bug, where one missed a coma in an array expression:) |
changelog/2.072.0_pre.dd
Outdated
| void foo () | ||
| { | ||
| string[] arr = [ "Hello", "buggy" "World" ]; | ||
| assert(arr.length = 3); // Fail, the length of the array is 2 and the content is [ "Hello", "buggyWorld" ] |
changelog/2.072.0_pre.dd
Outdated
|
|
||
| $(BUGSTITLE Compiler Changes, | ||
| $(LI $(LNAME2 deferred_alias, Analysis for aliases in imported modules is deferred.) | ||
| $(LI $(LNAME2 iteration_closure, OpApply now conservatively allocates a closure unless marked `scope`) |
Member
There was a problem hiding this comment.
Spelling: opApply, also put in backquotes
changelog/2.072.0_pre.dd
Outdated
|
|
||
| $(LI | ||
| $(LNAME2 native_tls_osx, Native TLS on OS X 64 bit.) | ||
| $(LI $(LNAME2 dash_safe, Add -transition=safe switch to enable additional @safe checks.) |
changelog/2.072.0_pre.dd
Outdated
|
|
||
| $(LI $(LNAME2 drt-oncycle, New druntime switch `--DRT-oncycle` allows | ||
| specifying what to do on cycle detection in modules.) | ||
| $(P When module cycles are detected, the default behavior is to print the cycle, and abort execution. However, in many cases, the cycles are not harmful. With the new `--DRT-oncycle` switch, you can effect a different behavior when cycles are detected:) |
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.