Jmespath.compile constructor

Jmespath.compile(
  1. String expression
)

Implementation

Jmespath.compile(String expression) {
  _ast = parse(expression);
  _intr = _newInterpreter();
}