Package ro.redeul.google.go.lang.psi.resolve.refs

Examples of ro.redeul.google.go.lang.psi.resolve.refs.InterfaceMethodReference


                                    data.add(new PackageSymbolReference(ident, goPackage));
                            }

                            @Override
                            public void visitName(GoTypeName type, List<Reference> data, TypeVisitor<List<Reference>> visitor) {
                                data.add(new InterfaceMethodReference(ident, type));
                                data.add(new MethodReference(ident, type));

                                // HACK: I should not have to do this here
                                if (type != type.underlyingType() && !(type.underlyingType() instanceof GoTypeName))
                                    type.underlyingType().accept(visitor);
View Full Code Here

TOP

Related Classes of ro.redeul.google.go.lang.psi.resolve.refs.InterfaceMethodReference

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.