1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
|
#
# specifying raabro
#
# Sun Oct 11 04:24:32 SGT 2015
#
require 'spec_helper'
module Sample::OwnRewrite include Raabro
# parse
def hello(i); str(:hello, i, 'hello'); end
#alias root exp
# not necessary since Raabro takes the last defined parser as the root
# rewrite
def rewrite(t)
[ :ok, t.string ]
end
end
describe Raabro do
describe Sample::OwnRewrite do
it 'uses its own rewrite' do
expect(
Sample::OwnRewrite.parse('hello')
).to eq(
[ :ok, 'hello' ]
)
end
end
end
|