exprVersion property

  1. @TagNumber.new(6)
String get exprVersion

The expr version indicates the major / minor version number of the expr representation.

The most common reason for a version change will be to indicate to the CEL runtimes that transformations have been performed on the expr during static analysis. In some cases, this will save the runtime the work of applying the same or similar transformations prior to evaluation.

Implementation

@$pb.TagNumber(6)
$core.String get exprVersion => $_getSZ(4);
  1. @TagNumber.new(6)
set exprVersion (String value)

Implementation

@$pb.TagNumber(6)
set exprVersion($core.String value) => $_setString(4, value);