diff options
author | umarcor <unai.martinezcorral@ehu.eus> | 2020-12-27 22:10:38 +0100 |
---|---|---|
committer | umarcor <unai.martinezcorral@ehu.eus> | 2020-12-27 23:13:21 +0100 |
commit | bf74a0983c2d534e217e7312ab559ca8929ff8a2 (patch) | |
tree | fb630d5b83afc2f112996ebb5f1eac44de868132 /python/libghdl/thin/vhdl/elocations.py | |
parent | 340fc792bba2ffdb4f930bc427a39ea3a1b659b2 (diff) | |
download | ghdl-bf74a0983c2d534e217e7312ab559ca8929ff8a2.tar.gz ghdl-bf74a0983c2d534e217e7312ab559ca8929ff8a2.tar.bz2 ghdl-bf74a0983c2d534e217e7312ab559ca8929ff8a2.zip |
rework 'python', rename to 'pyGHDL'
* Rename 'python' to 'pyGHDL'.
* Let 'thin' be 'libghdl'.
* Move move 'pyutils.py' from 'python/libghdl/vhdl' to a separate
package ('pyGHDL/libghdl/utils/').
* Update 'vhdl_langserver' accordingly.
* Rename 'vhdl_langserver' to 'lsp'.
* Move 'ghdl-ls' to 'pyGHDL/cli'.
Diffstat (limited to 'python/libghdl/thin/vhdl/elocations.py')
-rw-r--r-- | python/libghdl/thin/vhdl/elocations.py | 66 |
1 files changed, 0 insertions, 66 deletions
diff --git a/python/libghdl/thin/vhdl/elocations.py b/python/libghdl/thin/vhdl/elocations.py deleted file mode 100644 index 87d87b731..000000000 --- a/python/libghdl/thin/vhdl/elocations.py +++ /dev/null @@ -1,66 +0,0 @@ -from libghdl import libghdl - - -Get_Start_Location = libghdl.vhdl__elocations__get_start_location - -Set_Start_Location = libghdl.vhdl__elocations__set_start_location - -Get_Right_Paren_Location = libghdl.vhdl__elocations__get_right_paren_location - -Set_Right_Paren_Location = libghdl.vhdl__elocations__set_right_paren_location - -Get_End_Location = libghdl.vhdl__elocations__get_end_location - -Set_End_Location = libghdl.vhdl__elocations__set_end_location - -Get_Is_Location = libghdl.vhdl__elocations__get_is_location - -Set_Is_Location = libghdl.vhdl__elocations__set_is_location - -Get_Begin_Location = libghdl.vhdl__elocations__get_begin_location - -Set_Begin_Location = libghdl.vhdl__elocations__set_begin_location - -Get_Then_Location = libghdl.vhdl__elocations__get_then_location - -Set_Then_Location = libghdl.vhdl__elocations__set_then_location - -Get_Use_Location = libghdl.vhdl__elocations__get_use_location - -Set_Use_Location = libghdl.vhdl__elocations__set_use_location - -Get_Loop_Location = libghdl.vhdl__elocations__get_loop_location - -Set_Loop_Location = libghdl.vhdl__elocations__set_loop_location - -Get_Generate_Location = libghdl.vhdl__elocations__get_generate_location - -Set_Generate_Location = libghdl.vhdl__elocations__set_generate_location - -Get_Generic_Location = libghdl.vhdl__elocations__get_generic_location - -Set_Generic_Location = libghdl.vhdl__elocations__set_generic_location - -Get_Port_Location = libghdl.vhdl__elocations__get_port_location - -Set_Port_Location = libghdl.vhdl__elocations__set_port_location - -Get_Generic_Map_Location = libghdl.vhdl__elocations__get_generic_map_location - -Set_Generic_Map_Location = libghdl.vhdl__elocations__set_generic_map_location - -Get_Port_Map_Location = libghdl.vhdl__elocations__get_port_map_location - -Set_Port_Map_Location = libghdl.vhdl__elocations__set_port_map_location - -Get_Arrow_Location = libghdl.vhdl__elocations__get_arrow_location - -Set_Arrow_Location = libghdl.vhdl__elocations__set_arrow_location - -Get_Colon_Location = libghdl.vhdl__elocations__get_colon_location - -Set_Colon_Location = libghdl.vhdl__elocations__set_colon_location - -Get_Assign_Location = libghdl.vhdl__elocations__get_assign_location - -Set_Assign_Location = libghdl.vhdl__elocations__set_assign_location |