Skip to content
#

graalvm

Here are 545 public repositories matching this topic...

picocli

Picocli is a modern framework for building powerful, user-friendly, GraalVM-enabled command line apps with ease. It supports colors, autocompletion, subcommands, and more. In 1 source file so apps can include as source & avoid adding a dependency. Written in Java, usable from Groovy, Kotlin, Scala, etc.

  • Updated Apr 22, 2022
  • Java
truffleruby
djberg96
djberg96 commented Mar 5, 2022

Ruby 3.0.2 allows a string for Process.euid=, and will (I assume) do a user lookup in that case:

# OS X
Process.euid = "test" # => can't find user for test (ArgumentError)
Process.euid = "dberger" # => "dberger"

But using Truffleruby 22.0.0.2:

Process.euid = "test" # => undefined method `to_int' for "test":String
Process.euid = "dberger" # => undefined method `to
TimoKramer
TimoKramer commented Apr 21, 2022

version

clj-kondo v2022.04.08

platform

native on Linux MNZNB0441 5.10.16.3-microsoft-standard-WSL2 #1 SMP Fri Apr 2 22:23:49 UTC 2021 x86_64 x86_64 x86_64 GNU/Linux

problem

My config was responsible for an error that is not easy to understand. Was searching for related stuff and found something on paid slack (yeah). This seems loosely related: https://github.com/clj-kond

kolipakakondal
kolipakakondal commented Oct 12, 2018

https://github.com/graalvm/graaljs/blob/21177b89d21e8082607d688567a55f020d91626d/graal-js/src/com.oracle.js.parser/src/com/oracle/js/parser/Parser.java#L1062

I'm planning to migrate from beaver JS parser to GraalJS parser for implementing javascript grammar in the eclipse editor. But I realised it doesn't have the implementation for error recovery strategies.

For example:
Math.

If I g

enhancement good first issue
neomatrix369
neomatrix369 commented Nov 6, 2019

As see from #53 we can have broken/dead links, links that once worked can be unavailable for reasons outside the control of this project/repo!

Hence I have decided to manually scan (for now) the repo from time to time for such links and fix them - if there is one. Here are the steps to take:

New broken/dead links

good first issue hacktoberfest
lread
lread commented Apr 13, 2022

Is your feature request related to a problem? Please describe.
When I am doing Java interop, I sometimes have long lists of classes names for my imports.
I find it easier to read these longer lists when the class names are sorted.

Describe the solution you'd like
I'd like clean-ns to also sort imported class names.

For example:

(ns some.ns.here
  (:import
   (a.love
enhancement good first issue
jjfumero
jjfumero commented Sep 17, 2020

Add Javadoc to document the examples in TornadoVM.

This affects the packages under the examples module:

https://github.com/beehive-lab/TornadoVM/tree/master/examples/src/main/java/uk/ac/manchester/tornado/examples

The documentation is at the class-level and it will contain a description of how the TornadoVM API is used for each example. Additionally, it contains how to run the example

good first issue documentation
abertschi
abertschi commented Aug 18, 2020

When bailing out with an error, print where in source error occurred. We already set source section in ast visitor but do not print it in error cases.

Decide if early or lazy loading is better for graalphp.

  • pro for eager: we may implement phpdoc semantics into parsing (types)
  • however, new versions of php support type hints and dont have to rely on comments
  • i think for now we lazy loa
documentation enhancement good first issue graaphp-language

Improve this page

Add a description, image, and links to the graalvm topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the graalvm topic, visit your repo's landing page and select "manage topics."

Learn more