-
Notifications
You must be signed in to change notification settings - Fork 94
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support resolving external libraries (#4061)
* ABAP - support inline statements Signed-off-by: Iliyan Velichkov <velichkov.iliyan@gmail.com> * add comment Signed-off-by: Iliyan Velichkov <velichkov.iliyan@gmail.com> * support resolving external libraries Signed-off-by: Iliyan Velichkov <velichkov.iliyan@gmail.com> * roolback DatabaseResultSetHelper.java Signed-off-by: Iliyan Velichkov <velichkov.iliyan@gmail.com> --------- Signed-off-by: Iliyan Velichkov <velichkov.iliyan@gmail.com>
- Loading branch information
1 parent
b2a0801
commit d9d13ff
Showing
5 changed files
with
138 additions
and
106 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 7 additions & 0 deletions
7
...ore/src/main/java/org/eclipse/dirigible/graalium/core/modules/ExternalModuleResolver.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
package org.eclipse.dirigible.graalium.core.modules; | ||
|
||
import org.eclipse.dirigible.graalium.core.javascript.modules.ModuleResolver; | ||
|
||
public interface ExternalModuleResolver extends ModuleResolver { | ||
|
||
} |