diff options
author | Tristan Gingold <tgingold@free.fr> | 2019-05-04 16:49:19 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2019-05-04 19:24:20 +0200 |
commit | fc028b5d21727da66dc8e146b3dbcfc870c64f90 (patch) | |
tree | 59462a5173067a24482976035564e135ce4303c0 /src/vhdl/evaluation.adb | |
parent | 7cee2ba98f47f6ee7b7ffbe0d9555a972c8afc8b (diff) | |
download | ghdl-fc028b5d21727da66dc8e146b3dbcfc870c64f90.tar.gz ghdl-fc028b5d21727da66dc8e146b3dbcfc870c64f90.tar.bz2 ghdl-fc028b5d21727da66dc8e146b3dbcfc870c64f90.zip |
vhdl: move scanner under vhdl hierarchy.
Diffstat (limited to 'src/vhdl/evaluation.adb')
-rw-r--r-- | src/vhdl/evaluation.adb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/vhdl/evaluation.adb b/src/vhdl/evaluation.adb index 72c5a9152..ec366aeef 100644 --- a/src/vhdl/evaluation.adb +++ b/src/vhdl/evaluation.adb @@ -17,7 +17,7 @@ -- 02111-1307, USA. with Ada.Unchecked_Deallocation; with Interfaces; -with Scanner; +with Vhdl.Scanner; with Errorout; use Errorout; with Name_Table; use Name_Table; with Str_Table; @@ -1906,7 +1906,7 @@ package body Evaluation is -- Separate string into numeric value and make lowercase unit. for I in reverse Val'range loop UnitName (I) := Ada.Characters.Handling.To_Lower (Val (I)); - if Scanner.Is_Whitespace (Val (I)) and Found_Unit then + if Vhdl.Scanner.Is_Whitespace (Val (I)) and Found_Unit then Sep := I; exit; else @@ -2193,11 +2193,11 @@ package body Evaluation is First := Value'First; Last := Value'Last; while First <= Last loop - exit when not Scanner.Is_Whitespace (Value (First)); + exit when not Vhdl.Scanner.Is_Whitespace (Value (First)); First := First + 1; end loop; while Last >= First loop - exit when not Scanner.Is_Whitespace (Value (Last)); + exit when not Vhdl.Scanner.Is_Whitespace (Value (Last)); Last := Last - 1; end loop; |