1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-09 03:52:19 +02:00
Commit graph

963 commits

Author SHA1 Message Date
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
Brian Fiete
b6f5e67438 Fixed operators on readonly struct fields 2020-05-26 07:24:53 -07:00
Brian Fiete
e16e4613b6 Better handling of autocomplete with tokens 2020-05-26 06:10:51 -07:00
Brian Fiete
74f3ef4e43 Removed debug line 2020-05-25 15:55:11 -07:00
Brian Fiete
17ca597bc5
Merge pull request #294 from pmysl/master
Fix ToString() for int32.MinValue and int64.MinValue
2020-05-25 15:28:19 -07:00
Piotr Myśliński
81168d631b
Fix formatting of Int32.bf and Int64.bf 2020-05-25 23:58:52 +02:00
Piotr Myśliński
bec7dff380
Fix ToString() for int32.MinValue and int64.MinValue 2020-05-25 23:58:43 +02:00
Brian Fiete
323f984a72 Fixed autocomplete positioning code 2020-05-25 14:56:40 -07:00
Brian Fiete
c69150e3bb Linux font fix 2020-05-25 14:14:04 -07:00
Brian Fiete
42ae46390d Fixed improper generic method variation reification 2020-05-25 14:12:53 -07:00
Brian Fiete
8c2d65ca78 Const sized array lookup fix 2020-05-25 13:39:25 -07:00
Brian Fiete
c43212c38a Linux font fix 2020-05-25 13:38:57 -07:00
Brian Fiete
d5768c0a83 Fixed sized array init with unknown-size array 2020-05-25 13:38:45 -07:00