Skip to content

Commit

Permalink
Add comment
Browse files Browse the repository at this point in the history
  • Loading branch information
petervdonovan committed Jun 20, 2024
1 parent c00b057 commit 7ce0fea
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions core/src/main/java/org/lflang/generator/LFGenerator.java
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,8 @@ public static FileConfig createFileConfig(
case Python -> new PyFileConfig(resource, srcGenBasePath, useHierarchicalBin);
case CPP -> new CppFileConfig(resource, srcGenBasePath, useHierarchicalBin);
case Rust -> new RustFileConfig(resource, srcGenBasePath, useHierarchicalBin);
// null is passed to the docker argument because it is up to the TS Generator to tell the
// FileConfig whether Docker is enabled
case TS -> new TSFileConfig(resource, srcGenBasePath, useHierarchicalBin, null);
};
} catch (IOException e) {
Expand Down

0 comments on commit 7ce0fea

Please sign in to comment.