Package org.yinwang.pysonar.types

Examples of org.yinwang.pysonar.types.ModuleType



    @NotNull
    @Override
    public Type transform(@NotNull State s) {
        ModuleType mt = new ModuleType(name, file, Analyzer.self.globaltable);
        s.insert(_.moduleQname(file), this, mt, Binding.Kind.MODULE);
        if (body != null) {
            transformExpr(body, mt.table);
        }
        return mt;
View Full Code Here

TOP

Related Classes of org.yinwang.pysonar.types.ModuleType

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.