Class: Regexp

Inherits:
Object
  • Object
show all
Defined in:
lib/ruby2ruby.rb

Overview

:stopdoc: REFACTOR: stolen from ruby_parser

Constant Summary collapse

ENC_NONE =
/x/n.options
ENC_EUC =
/x/e.options
ENC_SJIS =
/x/s.options
ENC_UTF8 =
/x/u.options
CODES =
{
  EXTENDED   => "x",
  IGNORECASE => "i",
  MULTILINE  => "m",
  ENC_NONE   => "n",
  ENC_EUC    => "e",
  ENC_SJIS   => "s",
  ENC_UTF8   => "u",
}