module BELParser::Parsers::BELScript::Unset
Constants
- MAX_LENGTH
Public Class Methods
parse(content) { |obj| ... }
click to toggle source
# File lib/bel_parser/parsers/bel_script/unset.rb, line 382 def parse(content) return nil unless content Parser.new(content).each do |obj| yield obj end end