This website requires JavaScript.
Explore
Help
Register
Sign In
shishantbiswas
/
c3c
Watch
1
Star
1
Fork
0
You've already forked c3c
mirror of
https://github.com/c3lang/c3c.git
synced
2026-02-27 12:01:16 +00:00
Code
Issues
Packages
Projects
Releases
Wiki
Activity
Files
7b516e6113b3c836c5ea0dbd65d00a36891de6bb
c3c
/
test
/
test_suite
/
generic
History
Christoffer Lerno
7b516e6113
@builtin
was not respected for generic modules
#1617
.
2024-11-13 23:34:34 +01:00
..
enum_in_other_module.c3t
Rename muldiv and update tests for LLVM 20
2024-08-09 23:56:26 +02:00
enum_set_test.c3t
Fixes to header gen.
2024-06-28 11:28:05 +02:00
generic_builtin.c3t
@builtin
was not respected for generic modules
#1617
.
2024-11-13 23:34:34 +01:00
generic_copy.c3t
New generic syntax and ad hoc invocation.
2023-07-06 23:43:36 +02:00
generic_cyclic.c3
New generic syntax and ad hoc invocation.
2023-07-06 23:43:36 +02:00
generic_idents.c3t
Also weaken libc and generic templates.
2024-10-12 02:13:35 +02:00
generic_interface.c3t
Interfaces not correctly copied with generics
#1545
.
2024-10-11 13:26:22 +02:00
generic_lambda_complex.c3t
Switch to
<* *>
docs. Fix issue with dynamically loaded C3 libs with other C3 code.
2024-10-14 02:14:34 +02:00
generic_local.c3
Refactor protocols.
2023-10-06 22:31:41 +02:00
generic_num.c3t
0.6.0: init_new/init_temp removed. LinkedList API rewritten. List "pop" and "remove" function now return Optionals. RingBuffer API rewritten. Allocator interface changed. Deprecated Allocator, DString and mem functions removed. "identity" functions are now constants for Matrix and Complex numbers.
@default
implementations for interfaces removed.
any*
=>
any
, same for interfaces. Emit local/private globals as "private" in LLVM, following C "static". Updated enum syntax. Add support [rgba] properties in vectors. Improved checks of aliased "void". Subarray -> slice. Fix of llvm codegen enum check. Improved alignment handling. Add --output-dir
#1155
. Removed List/Object append.
GenericList
renamed
AnyList
. Remove unused "unwrap". Fixes to cond. Optimize output in dead branches. Better checking of operator methods. Disallow
any
from implementing dynamic methods. Check for operator mismatch. Remove unnecessary bitfield. Remove numbering in --list* commands Old style enum declaration for params/type, but now the type is optional. Add note on
#1086
. Allow making distinct types out of "void", "typeid", "anyfault" and faults. Remove system linker build options. "Try" expressions must be simple expressions. Add optimized build to Mac tests. Register int.
assert(false)
only allowed in unused branches or in tests. Compile time failed asserts is a compile time error. Remove current_block_is_target. Bug when assigning an optional from an optional. Remove unused emit_zstring. Simplify phi code. Remove unnecessary unreachable blocks and remove unnecessary current_block NULL assignments. Proper handling of '.' and Win32 '//server' paths. Add "no discard" to expression blocks with a return value. Detect "unsigned >= 0" as errors. Fix issue with distinct void as a member
#1147
. Improve callstack debug information
#1184
. Fix issue with absolute output-dir paths. Lambdas were not type checked thoroughly
#1185
. Fix compilation warning
#1187
. Request jump table using @jump for switches. Path normalization - fix possible null terminator out of bounds. Improved error messages on inlined macros.
2024-06-12 10:14:26 +02:00
generic_over_fn.c3t
Also weaken libc and generic templates.
2024-10-12 02:13:35 +02:00
generic_recursion.c3t
0.6.0: init_new/init_temp removed. LinkedList API rewritten. List "pop" and "remove" function now return Optionals. RingBuffer API rewritten. Allocator interface changed. Deprecated Allocator, DString and mem functions removed. "identity" functions are now constants for Matrix and Complex numbers.
@default
implementations for interfaces removed.
any*
=>
any
, same for interfaces. Emit local/private globals as "private" in LLVM, following C "static". Updated enum syntax. Add support [rgba] properties in vectors. Improved checks of aliased "void". Subarray -> slice. Fix of llvm codegen enum check. Improved alignment handling. Add --output-dir
#1155
. Removed List/Object append.
GenericList
renamed
AnyList
. Remove unused "unwrap". Fixes to cond. Optimize output in dead branches. Better checking of operator methods. Disallow
any
from implementing dynamic methods. Check for operator mismatch. Remove unnecessary bitfield. Remove numbering in --list* commands Old style enum declaration for params/type, but now the type is optional. Add note on
#1086
. Allow making distinct types out of "void", "typeid", "anyfault" and faults. Remove system linker build options. "Try" expressions must be simple expressions. Add optimized build to Mac tests. Register int.
assert(false)
only allowed in unused branches or in tests. Compile time failed asserts is a compile time error. Remove current_block_is_target. Bug when assigning an optional from an optional. Remove unused emit_zstring. Simplify phi code. Remove unnecessary unreachable blocks and remove unnecessary current_block NULL assignments. Proper handling of '.' and Win32 '//server' paths. Add "no discard" to expression blocks with a return value. Detect "unsigned >= 0" as errors. Fix issue with distinct void as a member
#1147
. Improve callstack debug information
#1184
. Fix issue with absolute output-dir paths. Lambdas were not type checked thoroughly
#1185
. Fix compilation warning
#1187
. Request jump table using @jump for switches. Path normalization - fix possible null terminator out of bounds. Improved error messages on inlined macros.
2024-06-12 10:14:26 +02:00
generic_resolution_1402.c3t
Generic methods were incorrectly registered as functions, leading to naming collisions.
#1402
2024-09-04 15:13:29 +02:00
generic_void.c3t
Cannot use void as a generic parameter
#1546
. Interfaces now support .ptr and .type directly without casting to
any
.
2024-10-11 12:10:35 +02:00
generic_with_enum.c3t
Allow enum and fault constants to parameterize modules.
2023-07-15 17:03:52 +02:00
generic_without_param.c3
Bad error message when using a generic method without generic parameters
#1228
2024-07-08 17:32:39 +02:00
implicit_import_of_generic.c3
0.5.3: Single-module not respected. Fix issue with compiler defined types. Fix optimization levels for projects. Use GEP i8 on offsets. Optimize foreach on len 1 arrays. Move panic blocks last. Fix generic module wildcard imports. Deprecate init_temp / init_new. Fix issue with macro vaarg and untyped lists. Fix extern const globals.
2024-01-14 15:34:54 +01:00
incorrect_argument_type.c3
New generic syntax and ad hoc invocation.
2023-07-06 23:43:36 +02:00
nested_typedef.c3t
(uptr)&((Foo*)null).a
incorrectly inserts a null check.
#1544
.
2024-10-22 12:15:39 +02:00
used_without_param2.c3
Bad error on parameterized type without parameter
#1495
.
2024-09-28 19:44:57 +02:00
used_without_param3.c3
Bad error on parameterized type without parameter
#1495
.
2024-09-28 19:44:57 +02:00
used_without_param.c3
Bad error on parameterized type without parameter
#1495
.
2024-09-28 19:44:57 +02:00