smithy-jmespath/src/main/java/software/amazon/smithy/jmespath/Lexer.java [156:163]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    private char peek(int offset) {
        int target = position + offset;
        if (target >= length || target < 0) {
            return Character.MIN_VALUE;
        }

        return expression.charAt(target);
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



smithy-utils/src/main/java/software/amazon/smithy/utils/SimpleParser.java [135:142]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public final char peek(int offset) {
        int target = position + offset;
        if (target >= length || target < 0) {
            return Character.MIN_VALUE;
        }

        return expression.charAt(target);
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



