Artur

Results 189 issues of Artur

``` CompilationUnit cu = parseSource(Application.class.getClassLoader().getResourceAsStream("TestClass.java")); cu.addImport(AbortPolicy.class); ImportDeclaration added = cu.getImports().get(cu.getImports().size() - 1); added.getRange().ifPresent(r -> System.out.println(r.toString())); ``` prints ``` (line 1,col 1)-(line 1,col 59) ``` even though the import was added...

Improvement

Not sure if this is a known issue, a known limitation or something that can be fixed. If you modify a largish file (~1000 LOC) when using `LexicalPreservingPrinter` then the...

Improvement

Prevents polluting the browser console. You can still see the messages by e.g. setting the console log level to 'verbose' in Chrome

+0.0.1

### Describe the bug ![image](https://github.com/user-attachments/assets/e3f7af60-7d96-45f4-b219-3a15f0793e4c) Failed to execute mojo com.vaadin:vaadin-maven-plugin:24.4.12:prepare-frontend {execution: default} (com.vaadin:vaadin-maven-plugin:24.4.12:prepare-frontend:default:process-resources) ``` org.eclipse.core.runtime.CoreException: Failed to execute mojo com.vaadin:vaadin-maven-plugin:24.4.12:prepare-frontend {execution: default} at org.eclipse.m2e.core.internal.embedder.MavenExecutionContext.executeMojo(MavenExecutionContext.java:404) at org.eclipse.m2e.core.internal.embedder.MavenExecutionContext.lambda$2(MavenExecutionContext.java:355) at org.eclipse.m2e.core.internal.embedder.MavenExecutionContext.executeBare(MavenExecutionContext.java:458) at org.eclipse.m2e.core.internal.embedder.MavenExecutionContext.execute(MavenExecutionContext.java:339)...

bug