Skip to content

Commit

Permalink
Define HasDefineSymbol.
Browse files Browse the repository at this point in the history
  • Loading branch information
Tak committed Jul 3, 2014
1 parent 0ba7d11 commit b9c5ac3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/Boo.MonoDevelop/ProjectModel/BooCompilationParameters.boo
Expand Up @@ -32,3 +32,6 @@ class BooCompilationParameters(ConfigurationParameters):

override def RemoveDefineSymbol (symbol as string):
_defines.Remove (symbol) if _defines.Contains (symbol)

override def HasDefineSymbol (symbol as string):
return _defines.Contains (symbol)
Expand Up @@ -25,3 +25,6 @@ class UnityScriptCompilationParameters(ConfigurationParameters):

override def RemoveDefineSymbol (symbol as string):
_defines.Remove (symbol) if _defines.Contains (symbol)

override def HasDefineSymbol (symbol as string):
return _defines.Contains (symbol)

0 comments on commit b9c5ac3

Please sign in to comment.