Sha256: 2c7c52b4a6e1d077ba52ae8e4eec25f988f7853292f18f4397c5abf3fd36056e
Contents?: true
Size: 945 Bytes
Versions: 2
Compression:
Stored size: 945 Bytes
Contents
# # brainfuck.rb - a Brainfuck module of LangScan # # Copyright (C) 2005 MATSUNO Tokuhiro <tokuhirom at yahoo.co.jp> # All rights reserved. # This is free software with ABSOLUTELY NO WARRANTY. # # You can redistribute it and/or modify it under the terms of # the GNU General Public License version 2. # require 'langscan/_easyscanner' module LangScan module Brainfuck module_function def name "BrainFuck" end def abbrev "bf" end def extnames [".bf"] end Pattern = [ [:ident, '[<>+\\-.,\[\]]'], [:comment, '[^<>+\\-.,\[\]]+'], ] Types = [] Keywords = [] # LangScan::Brainfuck.scan iterates over Brainfuck program. # It yields for each Fragment. def scan(input, &block) EasyScanner.new(Pattern, Types, Keywords).scan(input) {|t| yield t } end LangScan.register(self) end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
langscan-1.2-x86-mswin32-60 | lib/langscan/brainfuck.rb |
langscan-1.2 | lib/langscan/brainfuck.rb |