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

141 commits

Author SHA1 Message Date
Brian Fiete
450d541292 Added 'using' fields 2022-07-10 07:50:08 -04:00
Brian Fiete
7dd2324fcf Added nameof 2022-07-06 12:19:01 -07:00
Brian Fiete
1d2811f50d Appended fields 2022-06-27 10:55:31 -07:00
Brian Fiete
79320652e3 Named arguments 2022-06-24 18:41:54 -07:00
Brian Fiete
48635c1939 Improved ambiguous (a*b, c*d) tuple parse 2022-06-24 09:25:43 -07:00
Brian Fiete
abd511a93d Added '->' operator, static indexer fix, RefCounted<T> 2022-06-22 08:35:25 -07:00
Brian Fiete
5268e103e9 Allow mixins and expression blocks to end in a ref expression 2022-06-15 06:45:53 -07:00
Brian Fiete
75333a0928 Improved circular mixin check, isconst(expr), [ConstSkip] 2022-05-30 11:40:49 -07:00
Brian Fiete
f081365dab Allow attributes on local methods 2022-05-27 11:28:53 -07:00
Brian Fiete
e9ef23e92f Fixed 'defined()' parsing in compat mode 2022-04-30 08:33:39 -07:00
Brian Fiete
f3f2f4c6ec File-scoped namespaces 2022-04-17 08:40:25 -07:00
Brian Fiete
87f3aa0335 Parse fix with misplaced custom attributes 2022-04-16 14:29:43 -07:00
Brian Fiete
4d1e14a1c3 Show comptime emits as embedded sourceviews 2022-04-16 06:27:54 -07:00
Brian Fiete
6e38c1c3b6 Placeholder implementation for constraint expressions 2022-03-23 09:35:02 -07:00
Brian Fiete
acb64dad0f Fixed enum case initialization from method call 2022-03-18 22:00:53 -07:00
Brian Fiete
eefe25ef18 IsTypeReference arg fix 2022-03-17 07:34:42 -07:00
Brian Fiete
1573a522ca Fixed field dtor with multi-field declaration 2022-03-02 16:39:46 -08:00
Brian Fiete
79e2ff5165 Start of anonymous 'using' field 2022-02-19 07:38:05 -05:00
Brian Fiete
322b83d1c6 Better case expression parsing, better enum errors 2022-02-13 21:55:31 -05:00
Brian Fiete
8ebd7516d8 Const string interpolation 2022-02-13 10:41:34 -05:00
Brian Fiete
d9725dda7c Static local methods and variables, fixed erroneous 'this' capture 2022-02-11 10:38:57 -05:00
Brian Fiete
d6a447f915 Fixed IsTypeReference 'char*[]' cases 2022-02-08 11:39:56 -05:00
Brian Fiete
0c1ab7b668 Fixed expression parsing issue from recent generic parsing change 2022-02-08 11:26:24 -05:00
Brian Fiete
e508991dce Improved generic type parsing (particularly 'a<b>.c < d` cases) 2022-02-06 08:21:53 -05:00
Brian Fiete
f4f10fce99 Partial explicit generic method arguments with ... or ? 2022-02-05 13:47:19 -05:00
Brian Fiete
cf5c969d1f Improvements to const string generic arg, literal generic args 2022-02-05 09:23:44 -05:00
Brian Fiete
361be9dc92 Reflect Filtered, extension attribs fix, generic arg BfAstNode 2022-02-04 12:00:43 -05:00
Brian Fiete
157d3f90e5 Improved custom allocator expression parsing on delete statement 2022-01-29 17:31:22 -05:00
Brian Fiete
e0077fd4ef Make multivariable for loops work 'for (int i = 0, j = 10; i < j; i++, j--)' 2022-01-21 06:57:35 -05:00
Brian Fiete
cf7b6a7fee
Merge pull request #1384 from disarray2077/patch-1
Fix null dereference crash in parser
2022-01-18 11:06:25 -05:00
Brian Fiete
bf5c19269b Allow generic conversion operators 2022-01-17 17:10:37 -05:00
disarray2077
15b013010c
Fix null dereference crash in parser 2022-01-15 18:22:53 -03:00
Brian Fiete
ed6959973a Fixed some constraint lookups 2022-01-11 12:02:23 -05:00
Brian Fiete
f0bafae177 Fix for 'using static' namespace search inside namespace declarations 2022-01-07 08:58:19 -05:00
Brian Fiete
632c8a4cc5 Fixed error refNode for "Expected 'get' or 'set'" 2022-01-05 07:50:40 -05:00
Brian Fiete
c0fe1d1c1b Support for expression-bodied properties with mut 2022-01-03 14:41:12 -05:00
Brian Fiete
b9908cb4a8 Allow calling convention attributes 2021-12-27 12:55:14 -05:00
Brian Fiete
ecdc22920a Fixed erroneous return type limitations for operators 2021-12-17 08:30:15 -05:00
disarray2077
4f71cfccfd Fixed method parameter parsing with comptype 2021-12-04 15:15:48 -03:00
Brian Fiete
0927656400 Fixed invalid variable declaration detection in string interpolation 2021-11-27 11:45:10 -08:00
Brian Fiete
1b26619087 Fixed method param attribute parsing with no type specified 2021-11-27 11:38:16 -08:00
Brian Fiete
041a17cf89 Support for autoprop initializers 2021-11-27 10:31:32 -08:00
Brian Fiete
40b0d78d16 Allow ref property setter specifier 2021-11-27 09:05:23 -08:00
Brian Fiete
7436b201be Fixed documentation-finding with attributed declarations 2021-10-31 07:31:08 -07:00
Brian Fiete
f7853fc348 Fixed method parameter parsing with decltype 2021-10-26 10:52:55 -07:00
Brian Fiete
27fd5552cc Enhanced ranges 2021-10-24 08:12:18 -07:00
Brian Fiete
5731b15b05 Fixed autoctor failed parsing issue 2021-10-03 06:23:42 -07:00
Brian Fiete
a5fff0fdbc Properly throw error on missing comma with multidim array 2021-09-25 07:24:09 -07:00
Brian Fiete
4cda126188 offsetof 2021-09-10 14:21:25 -07:00
Brian Fiete
288b99cc3c Fixed double-semicolon requirement on field dtors with compound stmt 2021-07-21 14:05:51 -07:00