This repository has been archived by the owner on Aug 24, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 242
Bootstrap from C#. Number formats #857
Merged
Merged
Changes from 19 commits
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
de74cba
Introduced solution folders: Dependecies, Libraries, Tests
iskiselev 3d09504
Added JSRepaceAssemblyDeclaration meta attibute.
iskiselev a9a5dd2
TypeDeclarationsToSuppress logic moved to JSSuppressTypeDeclaration m…
iskiselev ee8a52f
Added JSImportType meta attribute.
iskiselev 82a2b6b
JSOverrideAssemblyReference meta attribute introduced.
iskiselev baa7349
Generate JSIL.Bootstrap.Int64.js using its parts.
iskiselev 6e0ae8d
StringBuilder.Remove implemented.
iskiselev 1b0461a
Fixed UInt64 creation (#855)
iskiselev efdc5d3
Added JSIL.mscorlib project with number formatter implementation.
iskiselev f28b6a3
Overwrite defaults.jsilconfig if newer only.
iskiselev e26e255
Use number .ToString formats from Mono.
iskiselev b008884
Compatibility with translated/stubbed.
iskiselev 03ce404
StringBuilder.Insert implemented.
iskiselev 7d2a499
Fix handling JSON config on mono.
iskiselev be94f67
Don't try to write method body for stubbed proxied methods.
iskiselev 43f481c
Added signatures for all numeric types.
iskiselev e16b920
Analyze imported functions on translation step.
iskiselev 3866087
Temporary marked IntegerToStringFormatted as FailsOnMono.
iskiselev 83672d3
Use mono formatters for non-integer types.
iskiselev 0c8daa5
Parse(string, IFormatProvider) override added.
iskiselev 6e3367a
PR review fixes.
iskiselev 7cf2a8e
Double parse signature fixed.
iskiselev 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 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
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
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We need initialize current culture even in non-browser environment.
Really next line even tries to do it:
But in non-browser environment it will not return null, but fail.
Now it will return null.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah, I probably got the second argument's boolean nature backwards... bools are awful.