Package ro.redeul.google.go.lang.psi.types.struct

Examples of ro.redeul.google.go.lang.psi.types.struct.GoTypeStructPromotedFields


        ignoreNames = new HashSet<String>();
    }

    public GoTypeStructPromotedFields getPromotedFields() {
        discover();
        return new GoTypeStructPromotedFields(getNamedFields(), getAnonymousFields());
    }
View Full Code Here


                for (GoTypeStructAnonymousField anonymousField : type.getAnonymousFields()) {
                    anonymousField.accept(this);
                }

                GoTypeStructPromotedFields promotedFields = type.getPromotedFields();
                checkIdentifiers(reference.name(), promotedFields.getNamedFields());

                for (GoTypeStructAnonymousField anonymousField : promotedFields.getAnonymousFields()) {
                    anonymousField.accept(this);
                }
            }
        });
    }
View Full Code Here

TOP

Related Classes of ro.redeul.google.go.lang.psi.types.struct.GoTypeStructPromotedFields

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.