Set lexer for VHDL language.

Conflicts:

	test/test_blob.rb
This commit is contained in:
Martin d'Allens
2012-03-25 03:39:51 +02:00
committed by Joshua Peek
parent f029db563c
commit dc145ff715
3 changed files with 17 additions and 1 deletions

14
test/fixtures/foo.vhd vendored Normal file
View File

@@ -0,0 +1,14 @@
-- VHDL example file
library ieee;
use ieee.std_logic_1164.all;
entity inverter is
port(a : in std_logic;
b : out std_logic);
end entity;
architecture rtl of inverter is
begin
b <= not a;
end architecture;