diff options
author | Unai Martinez-Corral <38422348+umarcor@users.noreply.github.com> | 2021-07-02 00:10:18 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-02 00:10:18 +0100 |
commit | 1da694fe05363bf29359b5290042073774a11f25 (patch) | |
tree | b4d55f210cfbf90847dc56a60058afa819107030 /pyGHDL/libghdl/vhdl/scanner.py | |
parent | 69e6630acb723282ddde95ad0681ac71686df8e8 (diff) | |
parent | ae51fcf65f195e065987f379410d3f68c14f4a2b (diff) | |
download | ghdl-1da694fe05363bf29359b5290042073774a11f25.tar.gz ghdl-1da694fe05363bf29359b5290042073774a11f25.tar.bz2 ghdl-1da694fe05363bf29359b5290042073774a11f25.zip |
pyHDL: CLI Update for DOM (#1808)
Diffstat (limited to 'pyGHDL/libghdl/vhdl/scanner.py')
-rw-r--r-- | pyGHDL/libghdl/vhdl/scanner.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/pyGHDL/libghdl/vhdl/scanner.py b/pyGHDL/libghdl/vhdl/scanner.py index 15d41e9a9..f9db890a0 100644 --- a/pyGHDL/libghdl/vhdl/scanner.py +++ b/pyGHDL/libghdl/vhdl/scanner.py @@ -81,6 +81,7 @@ def Get_Current_Line() -> int: :return: Current token's line. """ + return 0 @export @@ -91,6 +92,7 @@ def Get_Token_Offset() -> int: :return: Current token's offset. """ + return 0 @export @@ -101,6 +103,7 @@ def Get_Token_Position(): :return: Current token's position. Type: ``Source_Ptr`` """ + return 0 @export @@ -111,6 +114,7 @@ def Get_Position(): :return: Current position. Type: ``Source_Ptr`` """ + return 0 @export @@ -123,3 +127,4 @@ def Current_Identifier() -> NameId: :return: NameId of the current token. """ + return 0 |