Package fr.adrienbrault.idea.symfony2plugin.templating.dict

Examples of fr.adrienbrault.idea.symfony2plugin.templating.dict.TwigBlockLookupElement


            List<TwigBlock> blocks = new TwigBlockParser(twigFilesByName).withSelfBlocks(true).walk(getElement().getContainingFile());
            List<String> uniqueList = new ArrayList<String>();
            for (TwigBlock block : blocks) {
                if(!uniqueList.contains(block.getName())) {
                    uniqueList.add(block.getName());
                    lookupElements.add(new TwigBlockLookupElement(block));
                }
            }

            return lookupElements;
        }
View Full Code Here

TOP

Related Classes of fr.adrienbrault.idea.symfony2plugin.templating.dict.TwigBlockLookupElement

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.