hades-lang icon indicating copy to clipboard operation
hades-lang copied to clipboard

A systems programming language

Results 24 hades-lang issues
Sort by recently updated
recently updated
newest added

Bumps [com.github.ajalt.clikt:clikt](https://github.com/ajalt/clikt) from 3.5.2 to 4.2.2. Release notes Sourced from com.github.ajalt.clikt:clikt's releases. 4.2.2 Changed Options and arguments can now reference option groups in their defaultLazy and other finalization blocks. They...

dependencies
java

Bumps [jvm](https://github.com/JetBrains/kotlin) from 1.9.0 to 1.9.22. Release notes Sourced from jvm's releases. Kotlin 1.9.22 Changelog JavaScript KT-63719 KJS: Test results ignored for ES module kind KT-63808 compileTestDevelopmentExecutableKotlinJs failed in JsIntrinsicTransformers...

dependencies
java

Bumps org.apache.commons:commons-lang3 from 3.13.0 to 3.14.0. [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.apache.commons:commons-lang3&package-manager=gradle&previous-version=3.13.0&new-version=3.14.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a...

dependencies
java

Bumps `junitVersion` from 5.9.3 to 5.10.1. Updates `org.junit.jupiter:junit-jupiter-engine` from 5.9.3 to 5.10.1 Release notes Sourced from org.junit.jupiter:junit-jupiter-engine's releases. JUnit 5.10.1 = Platform 1.10.1 + Jupiter 5.10.1 + Vintage 5.10.1 See...

dependencies
java

Bumps `logbackVersion` from 1.4.7 to 1.4.11. Updates `ch.qos.logback:logback-classic` from 1.4.7 to 1.4.11 Commits 4b159c4 prepare release 1.4.11 4633df5 revert Configurator interface to match that in version 1.4.8 70071fe start work...

dependencies
java

``` def main(): Void { val x = 0 if true { val y = &x val z = move x // Error: Move while aliased. y holds a live...

enhancement

``` import hades.memory as Mem struct Box[T] { val _ptr: *mut T } def new_box[T](): Box[T] { // Uninferrable T even though return type annotation // should be enough to...

bug
has workaround

Failing case: https://github.com/dhruvrajvanshi/hades-lang/blob/master/test/bug_enum_unaligned_load.hds.disabled

bug