Package com.asakusafw.dmdl.semantics

Examples of com.asakusafw.dmdl.semantics.ModelSymbol


                    expression,
                    Messages.getString("DmdlAnalyzer.diagnosticTooManyJoinTerms"))); //$NON-NLS-1$
        }
        for (AstJoin term : terms) {
            LOG.debug("Resolving joined term: {} -> {}", model.getName(), term.reference.name); //$NON-NLS-1$
            ModelSymbol source = context.getWorld().createModelSymbol(term.reference.name);
            if (source.findDeclaration() == null) {
                report(new Diagnostic(
                        Level.ERROR,
                        term.reference,
                        Messages.getString("DmdlAnalyzer.diagnosticMissingJoinModel"), //$NON-NLS-1$
                        term.reference.name));
View Full Code Here


        assert expression != null;
        LOG.debug("Resolving summarized: {}", model.getName()); //$NON-NLS-1$
        List<ReduceTerm<AstSummarize>> results = Lists.create();
        for (AstSummarize term : extract(expression)) {
            LOG.debug("Resolving summarized term: {} -> {}", model.getName(), term.reference.name); //$NON-NLS-1$
            ModelSymbol source = context.getWorld().createModelSymbol(term.reference.name);
            if (source.findDeclaration() == null) {
                report(new Diagnostic(
                        Level.ERROR,
                        term.reference,
                        Messages.getString("DmdlAnalyzer.diagnosticMissingSummarizeModel"), //$NON-NLS-1$
                        term.reference.name));
View Full Code Here

TOP

Related Classes of com.asakusafw.dmdl.semantics.ModelSymbol

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.