Package com.jetbrains.au.jslintplugin.js.error.processor.fix

Examples of com.jetbrains.au.jslintplugin.js.error.processor.fix.AddGlobalPropertyFix


    @NotNull
    @Override
    public List<IntentionAction> getFixes(ErrorBeanWrapper errorWrapper) {
        final List<IntentionAction> fixes = super.getFixes(errorWrapper);
        fixes.add(new AddGlobalPropertyFix(errorWrapper));
        return fixes;
    }
View Full Code Here

TOP

Related Classes of com.jetbrains.au.jslintplugin.js.error.processor.fix.AddGlobalPropertyFix

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.