Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
6e03dca
Add the initial roslyn files
CyrusNajmabadi Jun 17, 2022
539b248
Merge remote-tracking branch 'upstream/main' into polyfill
CyrusNajmabadi Jun 17, 2022
e8f0a8e
IN progress
CyrusNajmabadi Jun 17, 2022
1c0fbf2
Builds
CyrusNajmabadi Jun 17, 2022
b533f26
Use api
CyrusNajmabadi Jun 17, 2022
c1a76b1
ifdef
CyrusNajmabadi Jun 17, 2022
2ef0717
Merge remote-tracking branch 'upstream/main' into polyfill
CyrusNajmabadi Jun 20, 2022
1f35a7e
Move using outside namespace
CyrusNajmabadi Jun 20, 2022
f5d8137
Move to debug assert
CyrusNajmabadi Jun 20, 2022
be4ef0f
Optimize common cases
CyrusNajmabadi Jun 20, 2022
2babd86
Merge remote-tracking branch 'upstream/main' into polyfill
CyrusNajmabadi Jun 20, 2022
1cdc428
Explain if'defed regions
CyrusNajmabadi Jun 20, 2022
cfce553
Explain if'defed regions
CyrusNajmabadi Jun 20, 2022
fd9a27e
Update System.Text.RegularExpressions.Generator.csproj
CyrusNajmabadi Jun 21, 2022
e2613b6
Port latest changes over
CyrusNajmabadi Jun 22, 2022
a0e9d88
Merge branch 'polyfill' of https://github.com/CyrusNajmabadi/runtime …
CyrusNajmabadi Jun 22, 2022
91672fe
Renames
CyrusNajmabadi Jun 28, 2022
86de769
Merge branch 'main' into polyfill
CyrusNajmabadi Jun 28, 2022
cc933a2
Update src/libraries/Common/src/Roslyn/CSharpSyntaxHelper.cs
CyrusNajmabadi Jun 28, 2022
8a5a8d0
Simplify
CyrusNajmabadi Jun 28, 2022
4eb00d1
Dispose builders
CyrusNajmabadi Jun 28, 2022
59cdea7
Dispose builders
CyrusNajmabadi Jun 28, 2022
e7a1f3e
Simplify by removing support for nested attributes
CyrusNajmabadi Jun 28, 2022
20d62a2
Simplify
CyrusNajmabadi Jun 28, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Move to debug assert
  • Loading branch information
CyrusNajmabadi committed Jun 20, 2022
commit f5d813766ae142da490aae864434257f340756b2
2 changes: 1 addition & 1 deletion src/libraries/Common/src/Roslyn/CSharpSyntaxHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ public override void AddAliases(SyntaxNode node, ref ValueListBuilder<(string al
}
else
{
throw new System.InvalidOperationException("Unreachable");
Debug.Assert(false, "This should not be reachable. Caller already checked we had a compilation unit or namespace.");
}
}

Expand Down