com.cflint.plugins.core.StructKeyChecker Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of CFLint Show documentation
Show all versions of CFLint Show documentation
A static code analysis tool for ColdFusion (in the spirit of FindBugs and Lint). With CFLint, you are able to analyze your ColdFusion code base for code violations.
package com.cflint.plugins.core;
import com.cflint.BugList;
import com.cflint.plugins.CFLintScannerAdapter;
import com.cflint.plugins.Context;
import cfml.parsing.cfscript.CFExpression;
import cfml.parsing.cfscript.CFStructElementExpression;
import cfml.parsing.cfscript.CFStructExpression;
public class StructKeyChecker extends CFLintScannerAdapter {
@Override
public void expression(final CFExpression expression, final Context context, final BugList bugs) {
if (expression instanceof CFStructExpression) {
CFStructExpression structExpression = (CFStructExpression) expression;
for( Object element: structExpression.getElements()){
CFStructElementExpression structKeyExpression = (CFStructElementExpression)element;
String firstToken = structKeyExpression.getKey().getToken().getText();
if(!"'".equals(firstToken) && !"\"".equals(firstToken)){
context.addMessage("UNQUOTED_STRUCT_KEY", structKeyExpression.getKey().Decompile(0));
}
}
}
}
}