Corrado Mio

Results 17 issues of Corrado Mio

I suppose this is another instance of the same problem. JSS 3.15.22 Test class: ```java package test; class Test { private void ioexc() throws java.io.IOException { System.out.println("Hello World"); } }...

Bug report
Symbol Solver

Javaparser v3.24.2 In this code, I try to ""resolve"" a class and a "record". On the "class" there are no problems. On the "record" it is raised a "UnsupportedOperationException". But...

Bug report
Symbol Solver

You suppose to have the following class: ` java package a.b.c.d; import java.util.List; import not.existent.pkg.Unsolved; public class TestHLS8 { public static void main(String[] args) { List l; } } `...

Improvement

In the settings there is ONLY the entry "D Tools" but no "D Compiler" I have configured ONLY dub and dfmt I have created the default project with name "test"....

Clion

### ArcadeDB Version: 22.2.1 ### 11 ### OS: Windows ## Expected behavior To create a database distribution file to be used in the installation in another computer ## Actual behavior...

bug

In this code ```java import com.github.javaparser.StaticJavaParser; import com.github.javaparser.ast.CompilationUnit; import com.github.javaparser.ast.type.ClassOrInterfaceType; import com.github.javaparser.ast.visitor.VoidVisitorAdapter; import com.github.javaparser.symbolsolver.JavaSymbolSolver; import com.github.javaparser.symbolsolver.model.resolution.TypeSolver; import com.github.javaparser.symbolsolver.resolution.typesolvers.CombinedTypeSolver; import com.github.javaparser.symbolsolver.resolution.typesolvers.ReflectionTypeSolver; public class IssueHLS4 { public static void main(String[] args) {...

Improvement

Using JavaParser library 3.15.22, analyzing this code: ```java package test; class Test { private void ioexc() throws java.io.IOException { System.out.println("Hello World"); } void test() { try { ioexc(); } catch...

Improvement

Given the class ``` public class ComputationGraphSpace { public void test() { java.util.concurrent.atomic.AtomicInteger l = new AtomicInteger(); } } ``` JP parses ' java.util.concurrent.atomic' as a 'ClassOrInterfaceType'. If it is...

Question (JP usage)

Given the following classes: 1) ```public interface ParameterSpace { }``` 2) ```public abstract class AbstractParameterSpace implements ParameterSpace { }``` 3) ```public class RealParameterSpace implements ParameterSpace { }``` Using a Visitor...

Question (JP usage)

It could be useful to add the possibility to pass custom 'predict params' in 'predict' method as it is available in 'fit' method. Starting from 'predict', there are only 4...