Package com.adobe.ac.pmd.nodes

Examples of com.adobe.ac.pmd.nodes.IFunction


      {
         if ( isNameEndsWithNumeric( namable.getName() ) )
         {
            if ( namable instanceof IFunction )
            {
               final IFunction function = ( IFunction ) namable;

               addViolation( function,
                             function.getName() );
            }
            else
            {
               addViolation( namable,
                             namable.getName() );
View Full Code Here


   {
      final Set< Integer > ignoredLines = new HashSet< Integer >();

      for ( final String functionName : privateFunctions.keySet() )
      {
         final IFunction function = privateFunctions.get( functionName );
         ignoredLines.clear();
         ignoredLines.add( getNameFromFunctionDeclaration( function.getInternalNode() ).getLine() );

         if ( getCurrentFile() instanceof IAs3File
               || !getCurrentFile().contains( functionName,
                                              ignoredLines ) )
         {
View Full Code Here

TOP

Related Classes of com.adobe.ac.pmd.nodes.IFunction

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.