Skip to content

Commit

Permalink
Preparing for 2.6.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
bobbylight committed Sep 17, 2016
1 parent 98f8c89 commit 412ad0d
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 13 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Note that Maven- and signing-related properties are in <maven-home>/gradle.properties
javaVersion=1.6
version=2.6.0-SNAPSHOT
version=2.6.0
Original file line number Diff line number Diff line change
Expand Up @@ -13,21 +13,20 @@
import org.mozilla.javascript.ast.AstRoot;

/**
*
* Scripts to be processed before parsing main script text
*
* Useful for includes within JavaScript client
*
* Caches the completions so they do not have to parsed every single time the main script text is parsed
*/
public class PreProcesssingScripts {
* Scripts to be processed before parsing main script text
*
* Useful for includes within JavaScript client
*
* Caches the completions so they do not have to parsed every single time the main script text is parsed
*/
public class PreProcessingScripts {

private SourceCompletionProvider provider;

private Set<Completion> preProcessingCompletions = new HashSet<Completion>();


public PreProcesssingScripts(SourceCompletionProvider provider)
public PreProcessingScripts(SourceCompletionProvider provider)
{
this.provider = provider;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ public class SourceCompletionProvider extends DefaultCompletionProvider {

private VariableResolver variableResolver;

private PreProcesssingScripts preProcessing;
private PreProcessingScripts preProcessing;

//Shorthand completions (templates and comments)
private ShorthandCompletionCache shorthandCache;
Expand Down Expand Up @@ -567,12 +567,12 @@ public JavaScriptLanguageSupport getLanguageSupport() {
}


public void setPreProcessingScripts(PreProcesssingScripts preProcessing) {
public void setPreProcessingScripts(PreProcessingScripts preProcessing) {
this.preProcessing = preProcessing;
}


public PreProcesssingScripts getPreProcessingScripts() {
public PreProcessingScripts getPreProcessingScripts() {
return preProcessing;
}

Expand Down

0 comments on commit 412ad0d

Please sign in to comment.