1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-08 11:38:21 +02:00
Commit graph

1125 commits

Author SHA1 Message Date
Alan Stagner
0e873f535e Hooked up NumberFormatter calls for all int type ToString methods 2020-05-31 11:55:36 -07:00
Brian Fiete
63237f87af Fixed atom ref issue 2020-05-31 09:43:15 -07:00
Brian Fiete
f9ee4010cb Fixed nullable lookup issue with type aliases 2020-05-31 09:34:28 -07:00
Brian Fiete
8bdfb8e93e Fixed version check 2020-05-31 09:17:21 -07:00
Brian Fiete
511e88de29 Linux fix 2020-05-31 07:51:32 -07:00
Brian Fiete
ca0c0df6d3 Remove nop 2020-05-31 07:29:06 -07:00
Brian Fiete
e93757141d Allow 'concrete' to still allow a returned interface instance 2020-05-31 07:27:51 -07:00
Brian Fiete
adf495d171 Clamping 2020-05-31 07:27:08 -07:00
Brian Fiete
1520acd5e4 Fix for null typeDef 2020-05-31 07:15:06 -07:00
Brian Fiete
014263c3a7 Added ability to rename namespaces 2020-05-31 07:12:17 -07:00
Brian Fiete
91e0d10128 Deferred call fix for 'do' statement 2020-05-30 06:43:30 -07:00
Brian Fiete
1e8d2ca6e8 Reformatting 2020-05-30 06:03:28 -07:00
Brian Fiete
31a23bff3a Added project context directly to the script commands 2020-05-30 06:03:13 -07:00
Brian Fiete
0503eedfe6 Fixed test 2020-05-30 05:56:40 -07:00
Brian Fiete
c9da45715b Added ability to rename labels and goto definition on labels 2020-05-29 16:58:47 -07:00
Brian Fiete
a7e9182d4b Added crash text to minidump 2020-05-29 16:10:47 -07:00
Brian Fiete
7bd29b5b69 Fixed issue choose 'int unknown' overload over generic method 2020-05-29 16:10:16 -07:00
Brian Fiete
c8055f0a38 Fixed dependency adding of interfaces 2020-05-29 10:11:09 -07:00
Brian Fiete
c101eb19dd Changed text 2020-05-29 10:10:46 -07:00
Brian Fiete
1097619f48 Support for null chars in rawString view 2020-05-28 10:06:07 -07:00
Brian Fiete
49a470e154 Extending CopyTo 2020-05-28 09:57:04 -07:00
Brian Fiete
dfde0c6dda
Merge pull request #292 from HydrogenC/patch-1
Deprecate [Stdcall]
2020-05-28 09:06:41 -07:00
Brian Fiete
0c6100476d
Merge pull request #303 from pmysl/master
Correct int64.MinValue
2020-05-28 09:03:05 -07:00
Brian Fiete
4d949d55ce
Merge pull request #302 from damianday/Array.CopyTo
Array CopyTo for spans
2020-05-28 09:02:39 -07:00
Brian Fiete
08adbd565b Made crash catcher calls virtual to support intra-module calling 2020-05-28 08:47:39 -07:00
Brian Fiete
09729872e9 Removed debug nop 2020-05-28 08:47:20 -07:00
Brian Fiete
95ef992ec4 Fixed raw array alloc reformatting 2020-05-28 08:47:09 -07:00
Brian Fiete
4a858dfe4a Linux fix 2020-05-28 08:33:56 -07:00
Brian Fiete
4e7c05e399 Support for __MALFORMED test method 2020-05-28 07:37:55 -07:00
Brian Fiete
a44f39b3e4 Fixed false error for calling static interface methods 2020-05-28 07:37:44 -07:00
Brian Fiete
be6a132fb5 Reflection support for methods and types 2020-05-28 07:36:34 -07:00
Brian Fiete
f1eafa8d81 Added ability to catch llvm errs(), shared crashcatcher object 2020-05-28 07:25:25 -07:00
Damian Day
d9c277389e Third time lucky
This is my test code.

var sourceArr = scope int[10] (1, 2, 3, 4, 5, 6, 7, 8, 9, 10);
var destArr = scope int[10];
var detSpan = Span<int>(destArr, 0, 5);

sourceArr.CopyTo(detSpan, 2);
// destArr holds 3, 4, 5
2020-05-27 23:33:00 +01:00
Piotr Myśliński
f5bbc4b6c6
Correct int64.MinValue 2020-05-27 20:15:28 +02:00
Brian Fiete
76e29d385b Merge remote-tracking branch 'origin/master' 2020-05-27 09:55:01 -07:00
Brian Fiete
6cb2df65a6 Improvements to interfaces: extensions, better generics, statics 2020-05-27 09:46:09 -07:00
Damian Day
dd33da0d7c Update Array.bf
Remove length parameter.
2020-05-27 17:26:35 +01:00
Damian Day
8ee09f278f Array CopyTo for spans
CopyTo, allows copying memory from an array to a span.
2020-05-27 15:36:51 +01:00
Brian Fiete
46cd1c0c76
Merge pull request #301 from damianday/Array.Copy
Array Copy
2020-05-27 07:09:09 -07:00
Damian Day
e9a7625d8b Array Copy
Added copying without specifying offsets.
2020-05-27 14:53:02 +01:00
Brian Fiete
bff1d657cc
Merge pull request #300 from damianday/bool
Bool Parse
2020-05-26 13:40:31 -07:00
Brian Fiete
3c4a319250
Merge pull request #299 from damianday/QueueFixes
Minor updates to Queue
2020-05-26 13:39:27 -07:00
Brian Fiete
e3739d28de
Merge pull request #298 from RogueMacro/master
Fixed Type.GetMethod
2020-05-26 13:38:51 -07:00
Brian Fiete
3896a60336
Merge pull request #297 from damianday/IndexOfAny
IndexOfAny
2020-05-26 13:37:33 -07:00
Damian Day
3ac6af88a3 Bool Parse
Implemented parsing boolean strings.

This implementation does not trim whitespace and nulls and check strings if the string does not match at first like C#.
2020-05-26 20:56:19 +01:00
Damian Day
a0210f1d85 Minor updates to Queue 2020-05-26 20:29:15 +01:00
RogueMacro
6d3ac2052b
Update TypeInstance.bf 2020-05-26 21:05:40 +02:00
Damian Day
d17b016397 IndexOfAny
Implemented IndexOfAny for String and StringView.
2020-05-26 20:04:06 +01:00
Brian Fiete
3714bdb84f Linux fix 2020-05-26 08:22:33 -07:00
Brian Fiete
534d20121c Hex long fix 2020-05-26 08:22:26 -07:00