module Haml::Precompiler

def mid_block_keyword?(text)

Otherwise, returns nil.
returns the name of that keyword.
If the text is a silent script text with one of Ruby's mid-block keywords,
def mid_block_keyword?(text)
  text[MID_BLOCK_KEYWORD_REGEX, 1]
end