2 require 'vtparse_tables'
5 # check that for every state, there is a transition defined
6 # for every character between 0 and A0.
11 $state_tables.each { |state, table|
12 table.each_with_index { |val, i|
14 raise "No transition defined from state #{state}, char 0x#{i.to_s(16)}!"
19 puts "Tables had all necessary transitions defined."