-
-
Notifications
You must be signed in to change notification settings - Fork 30
Merge generics support in mscorlib #245
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Draft
josesimoes
wants to merge
46
commits into
main
Choose a base branch
from
develop
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from all commits
Commits
Show all changes
46 commits
Select commit
Hold shift + click to select a range
85086ea
Update core library to add support for generics <T> (#242)
josesimoes 2bb1d2d
Work CI-CD
josesimoes f9a9158
Work CI-CD
josesimoes e37e4b8
Work CI-CD
josesimoes 488ab3b
Merge branch 'main' of https://github.com/nanoframework/CoreLibrary i…
josesimoes 6303710
Work CI-CD
josesimoes 7005c52
Fix and improvements in `String` class (#248)
josesimoes fa61139
Merge branch 'main' into develop
josesimoes ed90c8e
Add `Span<T>` and `ReadOnlySpan<T>` (#249)
josesimoes 32a57c5
Add `ByRefLikeGenerics` to runtime features (#250)
josesimoes ab7909f
Remove exclusion of `DebuggerTypeProxyAttribute` (#251)
josesimoes e99e3aa
Add `IsReferenceOrContainsReferences` runtime helper (#252)
josesimoes 03e6ddb
Work CD-CI
josesimoes 412684a
Add collection related interfaces and classes (#253)
josesimoes 3cf3175
Add IntelliSense comments to `Nullable` classes (#254)
josesimoes 5d24cd3
Remove test struct with nested field ref
josesimoes d2b908e
Work CI-CD
josesimoes 668efa7
Bump test framework sub-module @602d512
josesimoes 7c0182d
Merge branch 'main' of https://github.com/nanoframework/CoreLibrary i…
josesimoes 5b23ee9
Add `SZArrayHelper` and `Unsafe.As<T>` (#257)
josesimoes 4738eed
Fixed null references and added == and != overloads in `Guid` (#247)
dcyonce 51be470
Add benchmark tests for ToString
josesimoes ce5c6d8
Fix `Guid` constructor (#259)
josesimoes d92a1c1
Update test framework sub-module @9f6e02c
josesimoes 903c2b2
Work CI-CD
josesimoes b0bf1e3
Work CI-CD
josesimoes 2a79b7a
Work CI-CD
josesimoes 7977eda
Add new constructors to `Span<T>` and `ReadOnlySpan<T>` (#260)
josesimoes 6996df8
Moved `String.Format()` to native (#261)
josesimoes b3427e4
Improvements in `ReadOnlySpan<T>` and `Span<T>` (#262)
josesimoes f4163d3
Work CI-CD
josesimoes 0d014fa
Add `MemoryExtensions` class (#263)
josesimoes ebb5481
Add interfaces for generic collections (#264)
josesimoes bfcba6a
Update test sub-module @2e5c15c
josesimoes 6c93600
Add implicit operator to `Span<T>` to allow conversion from array (#265)
josesimoes 50352eb
Work CI-CD
josesimoes 7c5e825
Add .github/copilot-instructions.md for Copilot cloud agent onboardin…
Copilot 46cf909
Merge branch 'main' into develop
josesimoes c326223
Merge branch 'main' of https://github.com/nanoframework/CoreLibrary i…
josesimoes 2aa5d2a
Fix unit test for `String.Format()` (#269)
josesimoes 1474d8c
Improvements in `String` class (#270)
josesimoes 1d0f540
Fix file
josesimoes 779da80
Rewrote `Guid.CompareTo` (#271)
josesimoes 30df403
Fix `ReadOnlySpan<T>` operator == to use identity semantics (#272)
josesimoes 17440c8
Add unit tests group to release notes config
josesimoes 7a33d32
Update test framework sub-module @521b03b
josesimoes File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,68 @@ | ||
| // Licensed to the .NET Foundation under one or more agreements. | ||
| // The .NET Foundation licenses this file to you under the MIT license. | ||
|
|
||
| using System; | ||
| using System.Runtime.CompilerServices; | ||
| using nanoFramework.TestFramework; | ||
|
|
||
| namespace NFUnitTestSystemLib | ||
| { | ||
| [TestClass] | ||
| class RuntimeHelpersTests | ||
| { | ||
| [TestMethod] | ||
| public static void IsReferenceOrContainsReferences() | ||
| { | ||
| Assert.IsFalse(RuntimeHelpers.IsReferenceOrContainsReferences<int>()); | ||
| Assert.IsTrue(RuntimeHelpers.IsReferenceOrContainsReferences<string>()); | ||
| Assert.IsFalse(RuntimeHelpers.IsReferenceOrContainsReferences<Guid>()); | ||
| Assert.IsFalse(RuntimeHelpers.IsReferenceOrContainsReferences<StructWithoutReferences>()); | ||
| Assert.IsTrue(RuntimeHelpers.IsReferenceOrContainsReferences<StructWithReferences>()); | ||
| Assert.IsFalse(RuntimeHelpers.IsReferenceOrContainsReferences<RefStructWithoutReferences>()); | ||
| Assert.IsTrue(RuntimeHelpers.IsReferenceOrContainsReferences<RefStructWithReferences>()); | ||
| Assert.IsTrue(RuntimeHelpers.IsReferenceOrContainsReferences<Span<char>>()); | ||
| Assert.IsTrue(RuntimeHelpers.IsReferenceOrContainsReferences<ReadOnlySpan<char>>()); | ||
| //Assert.IsTrue(RuntimeHelpers.IsReferenceOrContainsReferences<RefStructWithRef>()); | ||
| //Assert.IsTrue(RuntimeHelpers.IsReferenceOrContainsReferences<RefStructWithNestedRef>()); | ||
| } | ||
|
|
||
| private struct StructWithoutReferences | ||
| { | ||
| public int a, b, c; | ||
| } | ||
|
|
||
| private struct StructWithReferences | ||
| { | ||
| public int a, b, c; | ||
| public object d; | ||
| } | ||
|
|
||
| private ref struct RefStructWithoutReferences | ||
| { | ||
| public int a; | ||
| public long b; | ||
| } | ||
|
|
||
| private ref struct RefStructWithReferences | ||
| { | ||
| public int a; | ||
| public object b; | ||
| } | ||
|
|
||
| // TODO: add after checking viability of ref fields in ref structs | ||
| //private ref struct RefStructWithRef | ||
| //{ | ||
| // public ref int a; | ||
|
|
||
| // internal RefStructWithRef(ref int aVal) | ||
| // { | ||
| // a = ref aVal; | ||
| // } | ||
| //} | ||
|
|
||
| //private ref struct RefStructWithNestedRef | ||
| //{ | ||
| // public Span<char> a; | ||
| //} | ||
| } | ||
| } |
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
Oops, something went wrong.
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.