Class: JSONSchema::FancyRegexOptions
- Inherits:
-
Object
- Object
- JSONSchema::FancyRegexOptions
- Defined in:
- sig/jsonschema.rbs
Overview
Fancy regex engine options (ECMA-262 patterns).
Instance Method Summary collapse
-
#backtrack_limit ⇒ Integer?
Maximum backtracking steps.
-
#dfa_size_limit ⇒ Integer?
Maximum DFA size.
-
#initialize ⇒ Object
constructor
Create fancy regex engine options.
- #inspect ⇒ String
-
#size_limit ⇒ Integer?
Maximum compiled regex size.
- #to_s ⇒ String
Constructor Details
#initialize ⇒ Object
Create fancy regex engine options.
413 |
# File 'sig/jsonschema.rbs', line 413
def initialize: (
|
Instance Method Details
#backtrack_limit ⇒ Integer?
Maximum backtracking steps.
420 |
# File 'sig/jsonschema.rbs', line 420
def backtrack_limit: () -> Integer?
|
#dfa_size_limit ⇒ Integer?
Maximum DFA size.
426 |
# File 'sig/jsonschema.rbs', line 426
def dfa_size_limit: () -> Integer?
|
#inspect ⇒ String
428 |
# File 'sig/jsonschema.rbs', line 428
def inspect: () -> String
|
#size_limit ⇒ Integer?
Maximum compiled regex size.
423 |
# File 'sig/jsonschema.rbs', line 423
def size_limit: () -> Integer?
|
#to_s ⇒ String
429 |
# File 'sig/jsonschema.rbs', line 429
def to_s: () -> String
|