forked from naddison36/sol2uml
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added depthLimit option to restrict recursive searching of sub folder
Fixed output files when no outputFileName is used Made writing the svg file async Catch all errors thrown and output to console Bumped version
- Loading branch information
Nicholas Addison
committed
Aug 16, 2019
1 parent
d1c206d
commit 5586bad
Showing
15 changed files
with
109 additions
and
198 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
import { ASTNode } from 'solidity-parser-antlr'; | ||
import { UmlClass } from './umlClass'; | ||
export declare const parseUmlClassesFromFiles: (fileOrFolders: string[]) => Promise<UmlClass[]>; | ||
export declare function getSolidityFilesFromFolderOrFiles(folderOrFilePaths: string[]): Promise<string[]>; | ||
export declare function getSolidityFilesFromFolderOrFile(folderOrFilePath: string): Promise<string[]>; | ||
export declare const parseUmlClassesFromFiles: (fileOrFolders: string[], depthLimit?: number) => Promise<UmlClass[]>; | ||
export declare function getSolidityFilesFromFolderOrFiles(folderOrFilePaths: string[], depthLimit?: number): Promise<string[]>; | ||
export declare function getSolidityFilesFromFolderOrFile(folderOrFilePath: string, depthLimit?: number): Promise<string[]>; | ||
export declare function parseSolidityFile(fileName: string): ASTNode; |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Oops, something went wrong.