asterix-graphix/src/main/java/org/apache/asterix/graphix/lang/rewrite/visitor/PostRewriteCheckVisitor.java [85:96]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    @Override
    public Expression visit(FromClause fc, ILangExpression arg) throws CompilationException {
        if (fc instanceof FromGraphClause) {
            return visit((FromGraphClause) fc, arg);

        } else {
            return super.visit(fc, arg);
        }
    }

    @Override
    public Expression visit(FromGraphClause fgc, ILangExpression arg) throws CompilationException {
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



asterix-graphix/src/main/java/org/apache/asterix/graphix/lang/visitor/base/AbstractGraphixQueryVisitor.java [65:76]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    @Override
    public Expression visit(FromClause fc, ILangExpression arg) throws CompilationException {
        if (fc instanceof FromGraphClause) {
            return visit((FromGraphClause) fc, arg);

        } else {
            return super.visit(fc, arg);
        }
    }

    @Override
    public Expression visit(FromGraphClause fgc, ILangExpression arg) throws CompilationException {
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



