├── .gitignore ├── .project ├── .settings └── org.eclipse.core.resources.prefs ├── AUTHORS ├── Makefile.am ├── README.md ├── ast.model.boo ├── bin ├── .gitignore ├── Boo.Lang.CodeDom.dll ├── Boo.Lang.Compiler.dll ├── Boo.Lang.Extensions.dll ├── Boo.Lang.Interpreter.dll ├── Boo.Lang.Parser.dll ├── Boo.Lang.PatternMatching.dll ├── Boo.Lang.Useful.dll ├── Boo.Lang.dll ├── Boo.Microsoft.Build.targets ├── Boo.NAnt.Tasks.dll ├── Makefile.am ├── booc.exe ├── booc.exe.config ├── booc.rsp ├── booi.exe ├── booi.exe.config ├── booish.exe └── booish.exe.config ├── booc ├── booi ├── configure.in.in ├── default.build ├── docs ├── BooManifesto.sxw └── meta-programming.txt ├── examples ├── BuildingLanguages │ └── UsingCSharp │ │ ├── .gitignore │ │ └── Nih │ │ ├── Nih.Tests │ │ ├── CompilerTest.cs │ │ ├── Nih.Tests.csproj │ │ ├── ParserTest.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Nih.sln │ │ └── Nih │ │ ├── Compiler.cs │ │ ├── Nih.csproj │ │ ├── NihPipeline.cs │ │ ├── Parser.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ └── Runtime.cs ├── asp.net │ ├── Calendar.aspx │ ├── HelloAspNet.aspx │ ├── HelloAspNet.aspx.boo │ ├── InlineBooButtonClick.aspx │ ├── InlineBooExpression.aspx │ ├── InlineBooHelloAspNet.aspx │ ├── Math.asmx │ ├── Math.asmx.boo │ ├── PrettyPrinter.aspx │ ├── PrettyPrinter.aspx.boo │ ├── ScriptRunner.aspx │ ├── ScriptRunner.aspx.boo │ ├── YourName.aspx │ ├── YourName.aspx.boo │ ├── default.build │ └── web.config ├── attributes │ ├── Async │ │ ├── AsyncAttribute.boo │ │ ├── AttributeUsage.boo │ │ └── default.build │ ├── ViewState │ │ ├── AttributeUsage.boo │ │ ├── ViewStateAttribute.boo │ │ └── default.build │ └── coroutine │ │ ├── CoroutineAttribute.boo │ │ ├── coroutine-0.boo │ │ ├── coroutine-1.boo │ │ ├── coroutine-2.boo │ │ ├── coroutine-3.boo │ │ ├── coroutine-4.boo │ │ ├── coroutine-5.boo │ │ ├── spawn-0.boo │ │ └── spawn-1.boo ├── duck-typing │ ├── XmlObject.boo │ ├── ie.boo │ └── multimethods.boo ├── gac │ ├── GacLibrary │ │ ├── GacLibrary.snk │ │ └── GacType.boo │ ├── PrivateLibrary │ │ └── PrivateType.boo │ ├── default.build │ └── test │ │ └── test.boo ├── gtk │ ├── gsv.boo │ ├── gsvshell.boo │ ├── gtk.boo │ └── gtkshell.boo ├── macros │ ├── PerformTransaction │ │ ├── MacroUsage.boo │ │ ├── PerformTransactionMacro.boo │ │ └── default.build │ ├── With │ │ ├── MacroUsage.boo │ │ ├── WithMacro.boo │ │ └── default.build │ ├── alias │ │ ├── AliasMacro.boo │ │ ├── MacroUsage.boo │ │ └── default.build │ ├── ifdef.boo │ └── trace │ │ ├── TraceService.boo │ │ └── trace.boo ├── meta-programming │ └── PetDSL.boo ├── misc │ ├── FormatterServices.boo │ ├── GetOptions.boo │ ├── ObjectConstruction.boo │ ├── arrayperformance.boo │ ├── arrayperformance.cs │ ├── arrayperformance.java │ ├── arrayperformance.py │ ├── ast-to-string.boo │ ├── ast-to-xml.boo │ ├── ast.boo │ ├── ast2.boo │ ├── async.boo │ ├── buttonclick1.boo │ ├── changelog.boo │ ├── client.boo │ ├── closure-serialization.boo │ ├── coroutines.boo │ ├── countries.boo │ ├── countries.xml │ ├── customcollection.boo │ ├── download.boo │ ├── dsl-1.boo │ ├── dump.boo │ ├── fibonacci.boo │ ├── firstline.boo │ ├── functor.boo │ ├── grep.boo │ ├── helloforms.boo │ ├── helloforms2.boo │ ├── helloforms3.boo │ ├── lines.boo │ ├── listoperations.boo │ ├── lscope.boo │ ├── now.boo │ ├── propertygrid.boo │ ├── replace.boo │ ├── rgrep.boo │ ├── run-ast-without-compiler.boo │ ├── run-ast.boo │ ├── run.boo │ ├── selectElements.boo │ ├── serialize.boo │ ├── serializearray.boo │ ├── server.boo │ ├── showcompilersteps.boo │ ├── sincos.boo │ ├── stacktrace.boo │ ├── toolbar1.boo │ ├── toolbar2.boo │ ├── ugly.boo │ ├── ugly.cs │ ├── ugly.py │ ├── vectors.boo │ ├── vgrep.boo │ ├── vgrep2.boo │ ├── wget.boo │ ├── whichserver.boo │ ├── winforms.boo │ ├── wrapLines.boo │ ├── xml.boo │ └── xmllogdata.boo ├── pipeline │ ├── AutoImport │ │ ├── client.boo │ │ ├── globals.boo │ │ └── main.boo │ ├── EverybodyLovesDucks.boo │ ├── Extensibilidade.sxw │ ├── Extensibilidade.txt │ ├── HelloPipeline │ │ ├── default.build │ │ └── src │ │ │ ├── HelloPipeline.boo │ │ │ └── HelloWorld.boo │ ├── NoPrimitives.boo │ ├── StyleChecker │ │ ├── Example.boo │ │ ├── StyleChecker.boo │ │ └── default.build │ └── Trace │ │ ├── HelloWorld.boo │ │ ├── TracePipeline.boo │ │ └── default.build ├── prevalence │ └── tasks.boo ├── remoting │ ├── client.boo │ ├── default.build │ ├── library.boo │ └── server.boo ├── sharpdevelop │ └── pascalcase.boo ├── silverlight │ └── tetris │ │ ├── AppManifest.xaml │ │ └── Tetris.boo └── svnutils │ ├── default.build │ └── src │ ├── svn.boo │ ├── svn_changed.boo │ ├── svn_ignore.boo │ ├── svn_ignore_all.boo │ └── svn_locals.boo ├── extras ├── BooTemplate │ └── default.build ├── DEBIAN │ ├── control │ ├── postinst │ └── prerm ├── Gendarme.Rules.Abstract │ ├── DependenciesMacro.boo │ └── DependencyCheckingRule.boo ├── Gendarme.Rules.Boo │ └── BooDependenciesCheckingRule.boo ├── Makefile.am ├── SharpDevelop │ └── BooBinding │ │ ├── Boo.Empty.xft │ │ ├── Boo.EmptyClass.xft │ │ ├── Boo.Form.xft │ │ ├── Boo.xshd │ │ ├── BooBinding.addin │ │ ├── BooBinding.cmbx │ │ ├── ConsoleProject.xpt │ │ ├── FormsProject.xpt │ │ ├── Library.xpt │ │ ├── default.build │ │ ├── icons │ │ ├── BitmapResources.txtres │ │ ├── Boo.File.EmptyFile.png │ │ ├── Boo.File.Form.png │ │ ├── Boo.FileIcon.png │ │ ├── Boo.Project.EmptyProject.png │ │ ├── Boo.Project.Form.png │ │ ├── Boo.ProjectIcon.png │ │ └── ResAsm.cs │ │ └── src │ │ ├── AssemblyInfo.boo │ │ ├── BooAmbience.boo │ │ ├── BooBinding.prjx │ │ ├── BooCompiler.boo │ │ ├── BooDesigner.boo │ │ ├── BooProject.boo │ │ ├── BooRefactory.boo │ │ ├── BooVisitor.boo │ │ ├── BooishView.boo │ │ ├── CodeCompletion │ │ ├── BooParser.boo │ │ ├── ExpressionFinder.boo │ │ ├── ExpressionTypeVisitor.boo │ │ ├── Resolver.boo │ │ ├── ReturnType.boo │ │ ├── Tree.boo │ │ ├── TypeMembers.boo │ │ ├── VariableLookupVisitor.boo │ │ └── Visitor.boo │ │ ├── CodeDomVisitor.boo │ │ ├── CompilerManager.boo │ │ ├── CompilerParameters.boo │ │ ├── ConvertCommand.boo │ │ ├── ExecutionManager.boo │ │ ├── FormattingStrategy.boo │ │ ├── LanguageBinding.boo │ │ └── OptionsPanel.boo ├── bisect.sh ├── boo-completion.bash ├── boo-jedit41.xml ├── boo-jedit42.xml ├── boo-mime-info.xml ├── boo.keys ├── boo.lang ├── boo.mime ├── boo.nanorc ├── boo.pc.in ├── boo.vim ├── boo.xml ├── booc.in ├── booi.in ├── booish.gui │ ├── default.build │ └── src │ │ ├── CodeCompletionData.boo │ │ ├── InteractiveInterpreterControl.boo │ │ ├── MainForm.boo │ │ ├── booish.gui.cmbx │ │ └── booish.gui.prjx ├── booish.in ├── boox │ ├── BooExplorer.Common │ │ ├── BooExplorer.Common.cmbx │ │ ├── BooExplorer.Common.prjx │ │ └── CodeCompletion.boo │ ├── COPYING │ ├── README.TXT │ ├── booxg │ │ ├── ApplicationResources.boo │ │ ├── BooEditor.boo │ │ ├── BooSourceView.boo │ │ ├── DocumentOutline.boo │ │ ├── MainWindow.boo │ │ └── booxg.boo │ ├── booxw │ │ ├── default.build │ │ ├── scripts │ │ │ └── AutomaticClose.int │ │ ├── src │ │ │ ├── AssemblyInfo.boo │ │ │ ├── BooEditor.boo │ │ │ ├── BooFoldingStrategy.boo │ │ │ ├── BooFormattingStrategy.boo │ │ │ ├── BooxSettings.boo │ │ │ ├── BooxTextAreaControl.boo │ │ │ ├── CodeCompletionData.boo │ │ │ ├── CompileHelper.boo │ │ │ ├── DocumentOutline.boo │ │ │ ├── ITextInterceptor.boo │ │ │ ├── InteractiveConsole.boo │ │ │ ├── MainForm.boo │ │ │ ├── OutputPane.boo │ │ │ ├── PromptDialog.boo │ │ │ ├── TaskList.boo │ │ │ ├── TextManipulator.boo │ │ │ ├── boox.boo │ │ │ ├── booxw.cmbx │ │ │ └── booxw.prjx │ │ └── todo.txt │ ├── default.build │ └── resources │ │ ├── ClassBrowserIcons │ │ ├── InternalClass.png │ │ ├── InternalEnum.png │ │ ├── InternalField.png │ │ ├── InternalInterface.png │ │ ├── InternalMethod.png │ │ ├── InternalProperty.png │ │ ├── PrivateClass.png │ │ ├── PrivateEnum.png │ │ ├── PrivateField.png │ │ ├── PrivateInterface.png │ │ ├── PrivateMethod.png │ │ ├── PrivateProperty.png │ │ ├── ProtectedClass.png │ │ ├── ProtectedEnum.png │ │ ├── ProtectedField.png │ │ ├── ProtectedInterface.png │ │ ├── ProtectedMethod.png │ │ ├── ProtectedProperty.png │ │ ├── class.png │ │ ├── enum.png │ │ ├── event.png │ │ ├── field.png │ │ ├── interface.png │ │ ├── method.png │ │ ├── namespace.png │ │ └── property.png │ │ └── boo.ico ├── common-properties.build ├── genchangelog.boo ├── gendarme.ignore ├── install-gtksourceview-mode ├── makedeb.build ├── man │ ├── booc.1 │ ├── booi.1 │ └── booish.1 ├── rules.xml ├── suse-install-gtksourceview-mode └── template.config.in ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── il ├── il.bat ├── lib ├── antlr-2.7.5 │ ├── INSTALL.txt │ ├── LICENSE.txt │ ├── Makefile.in │ ├── README.txt │ ├── aclocal.m4 │ ├── antlr-2.7.5.jar │ ├── antlr │ │ ├── ANTLRError.java │ │ ├── ANTLRException.java │ │ ├── ANTLRGrammarParseBehavior.java │ │ ├── ANTLRHashString.java │ │ ├── ANTLRLexer.java │ │ ├── ANTLRParser.java │ │ ├── ANTLRStringBuffer.java │ │ ├── ANTLRTokdefLexer.java │ │ ├── ANTLRTokdefParser.java │ │ ├── ANTLRTokdefParserTokenTypes.java │ │ ├── ANTLRTokenTypes.java │ │ ├── ASTFactory.java │ │ ├── ASTIterator.java │ │ ├── ASTNULLType.java │ │ ├── ASTPair.java │ │ ├── ASTVisitor.java │ │ ├── ActionElement.java │ │ ├── ActionTransInfo.java │ │ ├── Alternative.java │ │ ├── AlternativeBlock.java │ │ ├── AlternativeElement.java │ │ ├── BaseAST.java │ │ ├── BlockContext.java │ │ ├── BlockEndElement.java │ │ ├── BlockWithImpliedExitPath.java │ │ ├── BooBlockFinishingInfo.java │ │ ├── BooCharFormatter.java │ │ ├── BooCodeGenerator.java │ │ ├── BooNameSpace.java │ │ ├── ByteBuffer.java │ │ ├── CSharpBlockFinishingInfo.java │ │ ├── CSharpCharFormatter.java │ │ ├── CSharpCodeGenerator.java │ │ ├── CSharpNameSpace.java │ │ ├── CharBuffer.java │ │ ├── CharFormatter.java │ │ ├── CharLiteralElement.java │ │ ├── CharQueue.java │ │ ├── CharRangeElement.java │ │ ├── CharScanner.java │ │ ├── CharStreamException.java │ │ ├── CharStreamIOException.java │ │ ├── CodeGenerator.java │ │ ├── CommonAST.java │ │ ├── CommonASTWithHiddenTokens.java │ │ ├── CommonHiddenStreamToken.java │ │ ├── CommonToken.java │ │ ├── CppBlockFinishingInfo.java │ │ ├── CppCharFormatter.java │ │ ├── CppCodeGenerator.java │ │ ├── DefaultFileLineFormatter.java │ │ ├── DefaultToolErrorHandler.java │ │ ├── DefineGrammarSymbols.java │ │ ├── DiagnosticCodeGenerator.java │ │ ├── DocBookCodeGenerator.java │ │ ├── DumpASTVisitor.java │ │ ├── ExceptionHandler.java │ │ ├── ExceptionSpec.java │ │ ├── FileCopyException.java │ │ ├── FileLineFormatter.java │ │ ├── Grammar.java │ │ ├── GrammarAnalyzer.java │ │ ├── GrammarAtom.java │ │ ├── GrammarElement.java │ │ ├── GrammarSymbol.java │ │ ├── HTMLCodeGenerator.java │ │ ├── ImportVocabTokenManager.java │ │ ├── InputBuffer.java │ │ ├── JavaBlockFinishingInfo.java │ │ ├── JavaCharFormatter.java │ │ ├── JavaCodeGenerator.java │ │ ├── LLkAnalyzer.java │ │ ├── LLkGrammarAnalyzer.java │ │ ├── LLkParser.java │ │ ├── LexerGrammar.java │ │ ├── LexerSharedInputState.java │ │ ├── Lookahead.java │ │ ├── MakeGrammar.java │ │ ├── Makefile.in │ │ ├── MismatchedCharException.java │ │ ├── MismatchedTokenException.java │ │ ├── NameSpace.java │ │ ├── NoViableAltException.java │ │ ├── NoViableAltForCharException.java │ │ ├── OneOrMoreBlock.java │ │ ├── ParseTree.java │ │ ├── ParseTreeRule.java │ │ ├── ParseTreeToken.java │ │ ├── Parser.java │ │ ├── ParserGrammar.java │ │ ├── ParserSharedInputState.java │ │ ├── PreservingFileWriter.java │ │ ├── PythonBlockFinishingInfo.java │ │ ├── PythonCharFormatter.java │ │ ├── PythonCodeGenerator.java │ │ ├── RecognitionException.java │ │ ├── RuleBlock.java │ │ ├── RuleEndElement.java │ │ ├── RuleRefElement.java │ │ ├── RuleSymbol.java │ │ ├── SemanticException.java │ │ ├── SimpleTokenManager.java │ │ ├── StringLiteralElement.java │ │ ├── StringLiteralSymbol.java │ │ ├── StringUtils.java │ │ ├── SynPredBlock.java │ │ ├── Token.java │ │ ├── TokenBuffer.java │ │ ├── TokenManager.java │ │ ├── TokenQueue.java │ │ ├── TokenRangeElement.java │ │ ├── TokenRefElement.java │ │ ├── TokenStream.java │ │ ├── TokenStreamBasicFilter.java │ │ ├── TokenStreamException.java │ │ ├── TokenStreamHiddenTokenFilter.java │ │ ├── TokenStreamIOException.java │ │ ├── TokenStreamRecognitionException.java │ │ ├── TokenStreamRetryException.java │ │ ├── TokenStreamRewriteEngine.java │ │ ├── TokenStreamSelector.java │ │ ├── TokenSymbol.java │ │ ├── TokenWithIndex.java │ │ ├── Tool.java │ │ ├── ToolErrorHandler.java │ │ ├── TreeBlockContext.java │ │ ├── TreeElement.java │ │ ├── TreeParser.java │ │ ├── TreeParserSharedInputState.java │ │ ├── TreeSpecifierNode.java │ │ ├── TreeWalkerGrammar.java │ │ ├── Version.java │ │ ├── Version.java.in │ │ ├── WildcardElement.java │ │ ├── ZeroOrMoreBlock.java │ │ ├── actions │ │ │ ├── cpp │ │ │ │ ├── ActionLexer.java │ │ │ │ ├── ActionLexerTokenTypes.java │ │ │ │ └── action.g │ │ │ ├── csharp │ │ │ │ ├── ActionLexer.java │ │ │ │ ├── ActionLexerTokenTypes.java │ │ │ │ └── action.g │ │ │ ├── java │ │ │ │ ├── ActionLexer.java │ │ │ │ ├── ActionLexerTokenTypes.java │ │ │ │ └── action.g │ │ │ └── python │ │ │ │ ├── ActionLexer.java │ │ │ │ ├── ActionLexerTokenTypes.java │ │ │ │ ├── CodeLexer.java │ │ │ │ ├── CodeLexerTokenTypes.java │ │ │ │ ├── action.g │ │ │ │ └── code.g │ │ ├── antlr.g │ │ ├── antlr.javaproj │ │ ├── antlr.sln │ │ ├── build │ │ │ ├── ANTLR.java │ │ │ ├── StreamScarfer.java │ │ │ └── Tool.java │ │ ├── collections │ │ │ ├── AST.java │ │ │ ├── ASTEnumeration.java │ │ │ ├── Enumerator.java │ │ │ ├── List.java │ │ │ ├── Stack.java │ │ │ └── impl │ │ │ │ ├── ASTArray.java │ │ │ │ ├── ASTEnumerator.java │ │ │ │ ├── BitSet.java │ │ │ │ ├── IndexedVector.java │ │ │ │ ├── IntRange.java │ │ │ │ ├── LLCell.java │ │ │ │ ├── LLEnumeration.java │ │ │ │ ├── LList.java │ │ │ │ ├── Vector.java │ │ │ │ ├── VectorEnumeration.java │ │ │ │ └── VectorEnumerator.java │ │ ├── debug │ │ │ ├── DebuggingCharScanner.java │ │ │ ├── DebuggingInputBuffer.java │ │ │ ├── DebuggingParser.java │ │ │ ├── Event.java │ │ │ ├── GuessingEvent.java │ │ │ ├── InputBufferAdapter.java │ │ │ ├── InputBufferEvent.java │ │ │ ├── InputBufferEventSupport.java │ │ │ ├── InputBufferListener.java │ │ │ ├── InputBufferReporter.java │ │ │ ├── LLkDebuggingParser.java │ │ │ ├── ListenerBase.java │ │ │ ├── MessageAdapter.java │ │ │ ├── MessageEvent.java │ │ │ ├── MessageListener.java │ │ │ ├── NewLineEvent.java │ │ │ ├── NewLineListener.java │ │ │ ├── ParseTreeDebugParser.java │ │ │ ├── ParserAdapter.java │ │ │ ├── ParserController.java │ │ │ ├── ParserEventSupport.java │ │ │ ├── ParserListener.java │ │ │ ├── ParserMatchAdapter.java │ │ │ ├── ParserMatchEvent.java │ │ │ ├── ParserMatchListener.java │ │ │ ├── ParserReporter.java │ │ │ ├── ParserTokenAdapter.java │ │ │ ├── ParserTokenEvent.java │ │ │ ├── ParserTokenListener.java │ │ │ ├── SemanticPredicateAdapter.java │ │ │ ├── SemanticPredicateEvent.java │ │ │ ├── SemanticPredicateListener.java │ │ │ ├── SyntacticPredicateAdapter.java │ │ │ ├── SyntacticPredicateEvent.java │ │ │ ├── SyntacticPredicateListener.java │ │ │ ├── TraceAdapter.java │ │ │ ├── TraceEvent.java │ │ │ ├── TraceListener.java │ │ │ ├── Tracer.java │ │ │ └── misc │ │ │ │ ├── ASTFrame.java │ │ │ │ ├── JTreeASTModel.java │ │ │ │ └── JTreeASTPanel.java │ │ ├── preprocessor │ │ │ ├── Grammar.java │ │ │ ├── GrammarFile.java │ │ │ ├── Hierarchy.java │ │ │ ├── Option.java │ │ │ ├── Preprocessor.java │ │ │ ├── PreprocessorLexer.java │ │ │ ├── PreprocessorTokenTypes.java │ │ │ ├── Rule.java │ │ │ ├── Tool.java │ │ │ └── preproc.g │ │ └── tokdef.g │ ├── config.log │ ├── configure │ ├── configure.in │ ├── doc │ │ ├── ANTLRException.gif │ │ ├── Makefile.in │ │ ├── closure.gif │ │ ├── cpp-runtime.html │ │ ├── csharp-runtime.html │ │ ├── err.html │ │ ├── glossary.html │ │ ├── hidden.stream.gif │ │ ├── index.html │ │ ├── inheritance.html │ │ ├── j-guru-blue.jpg │ │ ├── jguru-logo.gif │ │ ├── lexer.html │ │ ├── lexer.to.parser.tokens.gif │ │ ├── logo.gif │ │ ├── metalang.html │ │ ├── optional.gif │ │ ├── options.html │ │ ├── posclosure.gif │ │ ├── python-runtime.html │ │ ├── runtime.html │ │ ├── sor.html │ │ ├── stream.perspectives.gif │ │ ├── stream.selector.gif │ │ ├── stream.splitter.gif │ │ ├── streams.html │ │ ├── subrule.gif │ │ ├── trees.html │ │ └── vocab.html │ ├── examples │ │ ├── Makefile.in │ │ ├── boo │ │ │ └── calc │ │ │ │ ├── calc.boo │ │ │ │ ├── calc.g │ │ │ │ └── default.build │ │ ├── cpp │ │ │ ├── ASTsupport │ │ │ │ ├── Main.cpp │ │ │ │ ├── Makefile.in │ │ │ │ └── test.g │ │ │ ├── HTML │ │ │ │ ├── Main.cpp │ │ │ │ ├── Makefile.in │ │ │ │ ├── html.g │ │ │ │ └── test.html │ │ │ ├── IDL │ │ │ │ ├── Main.cpp │ │ │ │ ├── Makefile.in │ │ │ │ ├── idl.g │ │ │ │ └── test.idl │ │ │ ├── Makefile.in │ │ │ ├── calc │ │ │ │ ├── Main.cpp │ │ │ │ ├── Main2.cpp │ │ │ │ ├── Main3.cpp │ │ │ │ ├── Makefile.in │ │ │ │ ├── calc.g │ │ │ │ └── test.in │ │ │ ├── cleanup.ksh │ │ │ ├── exprAST │ │ │ │ ├── Main.cpp │ │ │ │ ├── Makefile.in │ │ │ │ ├── expr.g │ │ │ │ ├── test.in │ │ │ │ └── test2.in │ │ │ ├── filter │ │ │ │ ├── Makefile.in │ │ │ │ ├── Test.cpp │ │ │ │ ├── t.g │ │ │ │ └── test.html │ │ │ ├── filterWithRule │ │ │ │ ├── Makefile.in │ │ │ │ ├── Test.cpp │ │ │ │ ├── t.g │ │ │ │ └── t.html │ │ │ ├── flexLexer │ │ │ │ ├── LexTokenStream.cpp │ │ │ │ ├── LexTokenStream.hpp │ │ │ │ ├── Main.cpp │ │ │ │ ├── Makefile.in │ │ │ │ ├── T.java │ │ │ │ ├── java.g │ │ │ │ ├── java.l │ │ │ │ └── java.tree.g │ │ │ ├── heteroAST │ │ │ │ ├── BinaryOperatorAST.hpp │ │ │ │ ├── CalcAST.hpp │ │ │ │ ├── INTNode.hpp │ │ │ │ ├── MULTNode.hpp │ │ │ │ ├── Main.cpp │ │ │ │ ├── PLUSNode.hpp │ │ │ │ ├── calc.g │ │ │ │ └── test.in │ │ │ ├── imagNodeAST │ │ │ │ ├── Main.cpp │ │ │ │ ├── Makefile.in │ │ │ │ ├── simple.in │ │ │ │ ├── test.in │ │ │ │ └── treewalk.g │ │ │ ├── includeFile │ │ │ │ ├── Main.cpp │ │ │ │ ├── Main.hpp │ │ │ │ ├── Makefile.in │ │ │ │ ├── P.g │ │ │ │ ├── incl.h │ │ │ │ ├── subincl.h │ │ │ │ └── test.c │ │ │ ├── inherit.tinyc │ │ │ │ ├── Main.cpp │ │ │ │ ├── Makefile.in │ │ │ │ ├── input.c │ │ │ │ ├── runtest.bat │ │ │ │ └── subc.g │ │ │ ├── java │ │ │ │ ├── Main.cpp │ │ │ │ ├── Makefile.in │ │ │ │ ├── java.g │ │ │ │ ├── java.tree.g │ │ │ │ └── tests │ │ │ │ │ ├── E.java │ │ │ │ │ └── T.java │ │ │ ├── lexRewrite │ │ │ │ ├── Main.cpp │ │ │ │ ├── Makefile.in │ │ │ │ ├── rewrite.g │ │ │ │ └── test.in │ │ │ ├── multiLexer │ │ │ │ ├── CommonTokenTypes.txt │ │ │ │ ├── Main.cpp │ │ │ │ ├── Makefile.in │ │ │ │ ├── javadoclex.g │ │ │ │ ├── javadocparse.g │ │ │ │ ├── javalex.g │ │ │ │ ├── javaparse.g │ │ │ │ └── test.in │ │ │ ├── multiParser │ │ │ │ ├── Main.cpp │ │ │ │ ├── Makefile.in │ │ │ │ ├── lexer.g │ │ │ │ ├── parser1.g │ │ │ │ ├── parser2.g │ │ │ │ └── test.in │ │ │ ├── parseBinary │ │ │ │ ├── Main.cpp │ │ │ │ ├── Makefile.in │ │ │ │ ├── data │ │ │ │ └── data.g │ │ │ ├── preserveWhiteSpace │ │ │ │ ├── Main.cpp │ │ │ │ ├── Makefile.in │ │ │ │ ├── instr.g │ │ │ │ ├── readme.txt │ │ │ │ └── test.in │ │ │ ├── tinyc │ │ │ │ ├── Main.cpp │ │ │ │ ├── Makefile.in │ │ │ │ ├── input.c │ │ │ │ ├── lexer.g │ │ │ │ └── tinyc.g │ │ │ ├── tokenStreamRewrite │ │ │ │ ├── Makefile.in │ │ │ │ ├── input.c │ │ │ │ ├── main.cpp │ │ │ │ └── tinyc.g │ │ │ ├── transform │ │ │ │ ├── Main.cpp │ │ │ │ ├── Makefile.in │ │ │ │ ├── calc.g │ │ │ │ └── test.in │ │ │ ├── treewalk │ │ │ │ ├── Main.cpp │ │ │ │ ├── Makefile.in │ │ │ │ ├── MyAST.h │ │ │ │ ├── simple.in │ │ │ │ ├── test.in │ │ │ │ └── treewalk.g │ │ │ └── unicode │ │ │ │ ├── Makefile.in │ │ │ │ ├── MismatchedUnicodeCharException.cpp │ │ │ │ ├── MismatchedUnicodeCharException.hpp │ │ │ │ ├── UnicodeCharBuffer.hpp │ │ │ │ ├── UnicodeCharScanner.hpp │ │ │ │ ├── main.cpp │ │ │ │ ├── test.in │ │ │ │ └── unicode.g │ │ ├── csharp │ │ │ ├── ASTsupport │ │ │ │ ├── ASTSupport.build │ │ │ │ ├── ASTType49.cs │ │ │ │ ├── Makefile.in │ │ │ │ ├── MyAST.cs │ │ │ │ ├── TestASTFactory.cs │ │ │ │ ├── csccbug.cs │ │ │ │ ├── shiplist │ │ │ │ ├── t.bat │ │ │ │ └── test.g │ │ │ ├── HTML │ │ │ │ ├── HTML.build │ │ │ │ ├── Main.cs │ │ │ │ ├── Makefile.in │ │ │ │ ├── html.g │ │ │ │ ├── shiplist │ │ │ │ └── test.html │ │ │ ├── IDL │ │ │ │ ├── IDL.build │ │ │ │ ├── Main.cs │ │ │ │ ├── Makefile.in │ │ │ │ ├── idl.g │ │ │ │ ├── shiplist │ │ │ │ └── test.idl │ │ │ ├── Makefile.in │ │ │ ├── ParseTreeDebug │ │ │ │ ├── Makefile.in │ │ │ │ ├── ParseTreeDebug.build │ │ │ │ ├── Test.cs │ │ │ │ ├── decl.c │ │ │ │ ├── input.c │ │ │ │ └── tinyc.g │ │ │ ├── TokenStreamRewrite │ │ │ │ ├── GenHdr.cs │ │ │ │ ├── Makefile.in │ │ │ │ ├── TokenStreamRewrite.build │ │ │ │ ├── input.c │ │ │ │ └── tinyc.g │ │ │ ├── calc │ │ │ │ ├── Calc.cs │ │ │ │ ├── Makefile.in │ │ │ │ ├── calc.build │ │ │ │ ├── calc.g │ │ │ │ ├── shiplist │ │ │ │ └── test.in │ │ │ ├── columns │ │ │ │ ├── Makefile.in │ │ │ │ ├── columns.build │ │ │ │ ├── csccbug.cs │ │ │ │ ├── shiplist │ │ │ │ ├── test.in │ │ │ │ └── track.g │ │ │ ├── cpp │ │ │ │ ├── Makefile.in │ │ │ │ ├── cpp.build │ │ │ │ ├── cpp.g │ │ │ │ ├── cpp.in │ │ │ │ ├── incl.h │ │ │ │ └── subincl.h │ │ │ ├── csccbug.cs │ │ │ ├── exprAST │ │ │ │ ├── Main.cs │ │ │ │ ├── Makefile.in │ │ │ │ ├── expr.g │ │ │ │ ├── exprAST.build │ │ │ │ ├── shiplist │ │ │ │ ├── test.in │ │ │ │ └── test2.in │ │ │ ├── filter │ │ │ │ ├── Makefile.in │ │ │ │ ├── Test.cs │ │ │ │ ├── filter.build │ │ │ │ ├── shiplist │ │ │ │ ├── t.g │ │ │ │ └── test.html │ │ │ ├── filterWithRule │ │ │ │ ├── Makefile.in │ │ │ │ ├── Test.cs │ │ │ │ ├── Test.java │ │ │ │ ├── filterWithRule.build │ │ │ │ ├── shiplist │ │ │ │ ├── t.g │ │ │ │ └── t.html │ │ │ ├── heteroAST │ │ │ │ ├── BinaryOperatorAST.cs │ │ │ │ ├── CalcAST.cs │ │ │ │ ├── INTNode.cs │ │ │ │ ├── MULTNode.cs │ │ │ │ ├── Main.cs │ │ │ │ ├── Makefile.in │ │ │ │ ├── PLUSNode.cs │ │ │ │ ├── calc.g │ │ │ │ ├── heteroAST.build │ │ │ │ ├── shiplist │ │ │ │ └── test.in │ │ │ ├── imagNodeAST │ │ │ │ ├── Main.cs │ │ │ │ ├── Makefile.in │ │ │ │ ├── imagNodeAST.build │ │ │ │ ├── shiplist │ │ │ │ ├── simple.in │ │ │ │ ├── test.in │ │ │ │ └── treewalk.g │ │ │ ├── includeFile │ │ │ │ ├── Main.cs │ │ │ │ ├── Makefile.in │ │ │ │ ├── P.g │ │ │ │ ├── incl.h │ │ │ │ ├── includeFile.build │ │ │ │ ├── shiplist │ │ │ │ ├── subincl.h │ │ │ │ └── test.c │ │ │ ├── inherit.tinyc │ │ │ │ ├── Main.cs │ │ │ │ ├── Makefile.in │ │ │ │ ├── inherit.tinyc.build │ │ │ │ ├── input.c │ │ │ │ ├── runtest.bat │ │ │ │ ├── runtest.sh │ │ │ │ ├── shiplist │ │ │ │ └── subc.g │ │ │ ├── java │ │ │ │ ├── JavaParser.csproj │ │ │ │ ├── Main.cs │ │ │ │ ├── Main.java │ │ │ │ ├── Makefile.in │ │ │ │ ├── T.java │ │ │ │ ├── java.build │ │ │ │ ├── java.g │ │ │ │ ├── java.tree.g │ │ │ │ ├── shiplist │ │ │ │ └── tests │ │ │ │ │ ├── E.java │ │ │ │ │ ├── Main.java │ │ │ │ │ └── T.java │ │ │ ├── multiLexer │ │ │ │ ├── Main.cs │ │ │ │ ├── Makefile.in │ │ │ │ ├── javadoclex.g │ │ │ │ ├── javadocparse.g │ │ │ │ ├── javalex.g │ │ │ │ ├── javaparse.g │ │ │ │ ├── multiLexer.build │ │ │ │ ├── shiplist │ │ │ │ └── test.in │ │ │ ├── parseBinary │ │ │ │ ├── Main.cs │ │ │ │ ├── Makefile.in │ │ │ │ ├── MkData.cs │ │ │ │ ├── data │ │ │ │ ├── data.g │ │ │ │ ├── parseBinary.build │ │ │ │ ├── runtests.bat │ │ │ │ └── shiplist │ │ │ ├── preserveWhiteSpace │ │ │ │ ├── InstrMain.cs │ │ │ │ ├── Makefile.in │ │ │ │ ├── instr.g │ │ │ │ ├── preserveWhiteSpace.build │ │ │ │ ├── readme.txt │ │ │ │ ├── shiplist │ │ │ │ └── test.in │ │ │ ├── tinyc │ │ │ │ ├── Makefile.in │ │ │ │ ├── input.c │ │ │ │ ├── lexer.g │ │ │ │ ├── shiplist │ │ │ │ ├── tinyc.build │ │ │ │ └── tinyc.g │ │ │ └── unicode │ │ │ │ ├── Makefile.in │ │ │ │ ├── csccbug.cs │ │ │ │ ├── shiplist │ │ │ │ ├── test.in │ │ │ │ ├── unicode.build │ │ │ │ └── unicode.g │ │ ├── java │ │ │ ├── ASTsupport │ │ │ │ ├── ASTType49.java │ │ │ │ ├── Makefile.in │ │ │ │ ├── MyAST.java │ │ │ │ ├── TestASTFactory.java │ │ │ │ ├── shiplist │ │ │ │ ├── t.bat │ │ │ │ └── test.g │ │ │ ├── HTML │ │ │ │ ├── Main.java │ │ │ │ ├── Makefile.in │ │ │ │ ├── html.g │ │ │ │ ├── shiplist │ │ │ │ └── test.html │ │ │ ├── IDL │ │ │ │ ├── Main.java │ │ │ │ ├── Makefile.in │ │ │ │ ├── idl.g │ │ │ │ ├── shiplist │ │ │ │ └── test.idl │ │ │ ├── Makefile.in │ │ │ ├── calc │ │ │ │ ├── Calc.java │ │ │ │ ├── Makefile.in │ │ │ │ ├── calc.g │ │ │ │ ├── shiplist │ │ │ │ └── test.in │ │ │ ├── columns │ │ │ │ ├── Makefile.in │ │ │ │ ├── shiplist │ │ │ │ ├── test.in │ │ │ │ └── track.g │ │ │ ├── cpp │ │ │ │ ├── Makefile.in │ │ │ │ ├── cpp.g │ │ │ │ ├── cpp.in │ │ │ │ ├── incl.h │ │ │ │ └── subincl.h │ │ │ ├── exprAST │ │ │ │ ├── Main.java │ │ │ │ ├── Makefile.in │ │ │ │ ├── expr.g │ │ │ │ ├── shiplist │ │ │ │ ├── test.in │ │ │ │ └── test2.in │ │ │ ├── filter │ │ │ │ ├── Makefile.in │ │ │ │ ├── Test.java │ │ │ │ ├── shiplist │ │ │ │ ├── t.g │ │ │ │ └── test.html │ │ │ ├── filterWithRule │ │ │ │ ├── Makefile.in │ │ │ │ ├── Test.java │ │ │ │ ├── shiplist │ │ │ │ ├── t.g │ │ │ │ └── t.html │ │ │ ├── heteroAST │ │ │ │ ├── BinaryOperatorAST.java │ │ │ │ ├── CalcAST.java │ │ │ │ ├── INTNode.java │ │ │ │ ├── MULTNode.java │ │ │ │ ├── Main.java │ │ │ │ ├── Makefile.in │ │ │ │ ├── PLUSNode.java │ │ │ │ ├── calc.g │ │ │ │ ├── shiplist │ │ │ │ └── test.in │ │ │ ├── imagNodeAST │ │ │ │ ├── Main.java │ │ │ │ ├── Makefile.in │ │ │ │ ├── shiplist │ │ │ │ ├── simple.in │ │ │ │ ├── test.in │ │ │ │ └── treewalk.g │ │ │ ├── includeFile │ │ │ │ ├── Main.java │ │ │ │ ├── Makefile.in │ │ │ │ ├── P.g │ │ │ │ ├── incl.h │ │ │ │ ├── shiplist │ │ │ │ ├── subincl.h │ │ │ │ └── test.c │ │ │ ├── inherit.tinyc │ │ │ │ ├── Main.java │ │ │ │ ├── Makefile.in │ │ │ │ ├── input.c │ │ │ │ ├── runtest.bat │ │ │ │ ├── runtest.sh │ │ │ │ ├── shiplist │ │ │ │ └── subc.g │ │ │ ├── java │ │ │ │ ├── Main.java │ │ │ │ ├── Makefile.in │ │ │ │ ├── java.g │ │ │ │ ├── java.tree.g │ │ │ │ ├── shiplist │ │ │ │ └── tests │ │ │ │ │ ├── E.java │ │ │ │ │ └── T.java │ │ │ ├── lexRewrite │ │ │ │ ├── Main.java │ │ │ │ ├── Makefile.in │ │ │ │ ├── rewrite.g │ │ │ │ ├── shiplist │ │ │ │ └── test.in │ │ │ ├── linkChecker │ │ │ │ ├── LinkChecker.java │ │ │ │ ├── LinkListener.java │ │ │ │ ├── Main.java │ │ │ │ ├── Makefile.in │ │ │ │ ├── links.g │ │ │ │ ├── shiplist │ │ │ │ └── test.html │ │ │ ├── multiLexer │ │ │ │ ├── Main.java │ │ │ │ ├── Makefile.in │ │ │ │ ├── javadoclex.g │ │ │ │ ├── javadocparse.g │ │ │ │ ├── javalex.g │ │ │ │ ├── javaparse.g │ │ │ │ ├── shiplist │ │ │ │ └── test.in │ │ │ ├── parseBinary │ │ │ │ ├── Main.java │ │ │ │ ├── Makefile.in │ │ │ │ ├── MkData.java │ │ │ │ ├── data │ │ │ │ ├── data.g │ │ │ │ └── shiplist │ │ │ ├── pascal │ │ │ │ ├── ArrayType.java │ │ │ │ ├── Constant.java │ │ │ │ ├── Field.java │ │ │ │ ├── Function.java │ │ │ │ ├── IntegerConstant.java │ │ │ │ ├── IntegerType.java │ │ │ │ ├── Makefile.in │ │ │ │ ├── PascalAST.java │ │ │ │ ├── PascalLexer.java │ │ │ │ ├── PascalParser.java │ │ │ │ ├── PascalTokenTypes.java │ │ │ │ ├── PascalTreeParserSuper.java │ │ │ │ ├── PascalTreeParserSuperTokenTypes.java │ │ │ │ ├── Procedure.java │ │ │ │ ├── RealConstant.java │ │ │ │ ├── RealType.java │ │ │ │ ├── RecordType.java │ │ │ │ ├── ScalarType.java │ │ │ │ ├── Scope.java │ │ │ │ ├── Symbol.java │ │ │ │ ├── SymbolTable.java │ │ │ │ ├── SymtabPhase.java │ │ │ │ ├── SymtabPhaseTokenTypes.java │ │ │ │ ├── TypeSpecifier.java │ │ │ │ ├── Unit.java │ │ │ │ ├── UserDefinedType.java │ │ │ │ ├── Variable.java │ │ │ │ ├── pascal.g │ │ │ │ ├── pascal.tree.g │ │ │ │ ├── shiplist │ │ │ │ ├── symtab.g │ │ │ │ └── test │ │ │ │ │ ├── P_0_1.PAS │ │ │ │ │ ├── P_3_1.PAS │ │ │ │ │ ├── P_4_1.PAS │ │ │ │ │ ├── P_4_2.PAS │ │ │ │ │ ├── P_4_3.PAS │ │ │ │ │ ├── P_4_4.PAS │ │ │ │ │ ├── P_4_5.PAS │ │ │ │ │ ├── P_8_2.PAS │ │ │ │ │ └── big.pas │ │ │ ├── preserveWhiteSpace │ │ │ │ ├── InstrMain.java │ │ │ │ ├── Makefile.in │ │ │ │ ├── instr.g │ │ │ │ ├── readme.txt │ │ │ │ ├── shiplist │ │ │ │ └── test.in │ │ │ ├── tinybasic │ │ │ │ ├── Context.java │ │ │ │ ├── DTArray1D.java │ │ │ │ ├── DTArray2D.java │ │ │ │ ├── DTArray3D.java │ │ │ │ ├── DTCodeType.java │ │ │ │ ├── DTDataType.java │ │ │ │ ├── DTDataTypeProxy.java │ │ │ │ ├── DTExecException.java │ │ │ │ ├── DTExitModuleException.java │ │ │ │ ├── DTFloat.java │ │ │ │ ├── DTFunction.java │ │ │ │ ├── DTInteger.java │ │ │ │ ├── DTString.java │ │ │ │ ├── DTSubroutine.java │ │ │ │ ├── FunctionScope.java │ │ │ │ ├── GlobalScope.java │ │ │ │ ├── Main.java │ │ │ │ ├── Makefile.in │ │ │ │ ├── ProgramScope.java │ │ │ │ ├── README.txt │ │ │ │ ├── Scope.java │ │ │ │ ├── SubroutineScope.java │ │ │ │ ├── TinyBasic.g │ │ │ │ ├── TinyBasicTreeWalker.g │ │ │ │ ├── shiplist │ │ │ │ ├── try.bas │ │ │ │ ├── try1.bas │ │ │ │ └── try2.bas │ │ │ ├── tinyc │ │ │ │ ├── Makefile.in │ │ │ │ ├── input.c │ │ │ │ ├── lexer.g │ │ │ │ ├── shiplist │ │ │ │ └── tinyc.g │ │ │ ├── transform │ │ │ │ ├── Calc.java │ │ │ │ ├── Makefile.in │ │ │ │ ├── calc.g │ │ │ │ ├── shiplist │ │ │ │ └── test.in │ │ │ ├── treewalk │ │ │ │ ├── Main.java │ │ │ │ ├── Makefile.in │ │ │ │ ├── shiplist │ │ │ │ ├── simple.in │ │ │ │ ├── test.in │ │ │ │ └── treewalk.g │ │ │ ├── unicode.IDENTs │ │ │ │ ├── Debug.java │ │ │ │ ├── Main.java │ │ │ │ ├── Makefile.in │ │ │ │ ├── ShowString.java │ │ │ │ ├── StreamConverter.java │ │ │ │ ├── Unicode.g │ │ │ │ ├── Unicode.readme │ │ │ │ ├── font.properties │ │ │ │ ├── shiplist │ │ │ │ └── test.in │ │ │ ├── unicode │ │ │ │ ├── Makefile.in │ │ │ │ ├── shiplist │ │ │ │ ├── test.in │ │ │ │ └── unicode.g │ │ │ └── xml │ │ │ │ ├── Main.java │ │ │ │ ├── Makefile.in │ │ │ │ ├── test.xml │ │ │ │ └── xml.g │ │ └── python │ │ │ ├── ASTsupport │ │ │ ├── Makefile.in │ │ │ ├── astsupport.g │ │ │ └── astsupport.py │ │ │ ├── HTML │ │ │ ├── Makefile.in │ │ │ ├── html.g │ │ │ └── html.in │ │ │ ├── IDL │ │ │ ├── Makefile.in │ │ │ ├── idl.g │ │ │ ├── idl.in │ │ │ └── idl.py │ │ │ ├── Makefile.in │ │ │ ├── asn1 │ │ │ ├── Makefile.in │ │ │ ├── asn1.g │ │ │ ├── asn1.in │ │ │ ├── asn1.py │ │ │ └── asn1tokens.txt │ │ │ ├── calc │ │ │ ├── Makefile.in │ │ │ ├── calc.g │ │ │ ├── calc.in │ │ │ └── calc.py │ │ │ ├── columns │ │ │ ├── Makefile.in │ │ │ ├── columns.g │ │ │ └── columns.in │ │ │ ├── cpp │ │ │ ├── Makefile.in │ │ │ ├── cpp.g │ │ │ ├── cpp.in │ │ │ ├── incl.h │ │ │ └── subincl.h │ │ │ ├── exprAST │ │ │ ├── Makefile.in │ │ │ ├── expr.g │ │ │ ├── expr.in │ │ │ ├── expr.py │ │ │ └── expr2.in │ │ │ ├── filter │ │ │ ├── Makefile.in │ │ │ ├── filter.g │ │ │ └── filter.in │ │ │ ├── filterWithRule │ │ │ ├── Makefile.in │ │ │ ├── rulefilter.g │ │ │ └── rulefilter.in │ │ │ ├── heteroAST │ │ │ ├── Makefile.in │ │ │ ├── hetero.g │ │ │ ├── hetero.in │ │ │ └── hetero.py │ │ │ ├── imagNodeAST │ │ │ ├── Makefile.in │ │ │ ├── imagnode.g │ │ │ ├── imagnode.in │ │ │ └── imagnode.py │ │ │ ├── includeFile │ │ │ ├── Makefile.in │ │ │ ├── incfile.g │ │ │ ├── incfile.in │ │ │ ├── incfile.py │ │ │ ├── incl.h │ │ │ └── subincl.h │ │ │ ├── inherit.tinyc │ │ │ ├── Makefile.in │ │ │ ├── inherit.g │ │ │ ├── inherit.in │ │ │ └── inherit.py │ │ │ ├── java │ │ │ ├── Makefile.in │ │ │ ├── java.g │ │ │ ├── java.in │ │ │ ├── java.py │ │ │ └── java_w.g │ │ │ ├── lexRewrite │ │ │ ├── Makefile.in │ │ │ ├── rewrite.g │ │ │ ├── rewrite.in │ │ │ └── rewrite.py │ │ │ ├── lexerTester │ │ │ ├── LT1test.py │ │ │ ├── LT2test.py │ │ │ ├── LT3test.py │ │ │ ├── LT4test.py │ │ │ ├── LT5test.py │ │ │ ├── Makefile.in │ │ │ ├── lexertester.g │ │ │ ├── shiplist │ │ │ ├── simplelexer1.g │ │ │ ├── simplelexer2.g │ │ │ ├── simplelexer3.g │ │ │ ├── simplelexer4.g │ │ │ ├── simplelexer5.g │ │ │ └── test.in │ │ │ ├── linkChecker │ │ │ ├── LinkChecker.py │ │ │ ├── Makefile.in │ │ │ ├── links.g │ │ │ └── test.html │ │ │ ├── multiLexer │ │ │ ├── Makefile.in │ │ │ ├── javadoc_l.g │ │ │ ├── javadoc_p.g │ │ │ ├── multilex.in │ │ │ ├── multilex.py │ │ │ ├── multilex.tok │ │ │ ├── multilex_l.g │ │ │ └── multilex_p.g │ │ │ ├── multiParser │ │ │ ├── Makefile.in │ │ │ ├── lexer.g │ │ │ ├── multiparser.in │ │ │ ├── multiparser.py │ │ │ ├── parser1.g │ │ │ └── parser2.g │ │ │ ├── parseBinary │ │ │ ├── Makefile.in │ │ │ ├── binary.g │ │ │ ├── binary.in │ │ │ └── binary.py │ │ │ ├── pascal │ │ │ ├── Makefile.in │ │ │ ├── pascal.g │ │ │ ├── pascal.in │ │ │ ├── pascal.py │ │ │ └── pascalw.g │ │ │ ├── preserveWhiteSpace │ │ │ ├── Makefile.in │ │ │ ├── keepws.g │ │ │ ├── keepws.in │ │ │ └── keepws.py │ │ │ ├── tinybasic │ │ │ ├── Makefile.in │ │ │ ├── basic.g │ │ │ ├── basic.in │ │ │ ├── basic.py │ │ │ ├── basic1.in │ │ │ ├── basic2.in │ │ │ └── basic_w.g │ │ │ ├── tinyc │ │ │ ├── Makefile.in │ │ │ ├── tinyc.in │ │ │ ├── tinyc_l.g │ │ │ └── tinyc_p.g │ │ │ ├── transform │ │ │ ├── Makefile.in │ │ │ ├── transform.g │ │ │ ├── transform.in │ │ │ └── transform.py │ │ │ ├── treewalk │ │ │ ├── Makefile.in │ │ │ ├── treewalk.g │ │ │ ├── treewalk.in │ │ │ └── treewalk.py │ │ │ ├── unicode.IDENTs │ │ │ ├── Makefile.in │ │ │ ├── ident.g │ │ │ ├── ident.in │ │ │ └── ident.py │ │ │ ├── unicode │ │ │ ├── Makefile.in │ │ │ ├── unicode.g │ │ │ ├── unicode.in │ │ │ └── unicode.py │ │ │ └── xml │ │ │ ├── Makefile.in │ │ │ ├── xml.g │ │ │ ├── xml.in │ │ │ └── xml.py │ ├── extras │ │ ├── antlr-jedit.xml │ │ ├── antlr-mode.el │ │ ├── antlr-x.y.z.README │ │ └── setup.hint │ ├── lib │ │ ├── Makefile.in │ │ ├── antlr.astframe.dll │ │ ├── antlr.runtime.dll │ │ ├── cpp │ │ │ ├── AUTHORS │ │ │ ├── ChangeLog │ │ │ ├── Makefile.in │ │ │ ├── README │ │ │ ├── TODO │ │ │ ├── antlr │ │ │ │ ├── ANTLRException.hpp │ │ │ │ ├── ANTLRUtil.hpp │ │ │ │ ├── AST.hpp │ │ │ │ ├── ASTArray.hpp │ │ │ │ ├── ASTFactory.hpp │ │ │ │ ├── ASTNULLType.hpp │ │ │ │ ├── ASTPair.hpp │ │ │ │ ├── ASTRefCount.hpp │ │ │ │ ├── BaseAST.hpp │ │ │ │ ├── BitSet.hpp │ │ │ │ ├── CharBuffer.hpp │ │ │ │ ├── CharInputBuffer.hpp │ │ │ │ ├── CharScanner.hpp │ │ │ │ ├── CharStreamException.hpp │ │ │ │ ├── CharStreamIOException.hpp │ │ │ │ ├── CircularQueue.hpp │ │ │ │ ├── CommonAST.hpp │ │ │ │ ├── CommonASTWithHiddenTokens.hpp │ │ │ │ ├── CommonHiddenStreamToken.hpp │ │ │ │ ├── CommonToken.hpp │ │ │ │ ├── IOException.hpp │ │ │ │ ├── InputBuffer.hpp │ │ │ │ ├── LLkParser.hpp │ │ │ │ ├── LexerSharedInputState.hpp │ │ │ │ ├── Makefile.in │ │ │ │ ├── MismatchedCharException.hpp │ │ │ │ ├── MismatchedTokenException.hpp │ │ │ │ ├── NoViableAltException.hpp │ │ │ │ ├── NoViableAltForCharException.hpp │ │ │ │ ├── Parser.hpp │ │ │ │ ├── ParserSharedInputState.hpp │ │ │ │ ├── RecognitionException.hpp │ │ │ │ ├── RefCount.hpp │ │ │ │ ├── SemanticException.hpp │ │ │ │ ├── String.hpp │ │ │ │ ├── Token.hpp │ │ │ │ ├── TokenBuffer.hpp │ │ │ │ ├── TokenRefCount.hpp │ │ │ │ ├── TokenStream.hpp │ │ │ │ ├── TokenStreamBasicFilter.hpp │ │ │ │ ├── TokenStreamException.hpp │ │ │ │ ├── TokenStreamHiddenTokenFilter.hpp │ │ │ │ ├── TokenStreamIOException.hpp │ │ │ │ ├── TokenStreamRecognitionException.hpp │ │ │ │ ├── TokenStreamRetryException.hpp │ │ │ │ ├── TokenStreamRewriteEngine.hpp │ │ │ │ ├── TokenStreamSelector.hpp │ │ │ │ ├── TokenWithIndex.hpp │ │ │ │ ├── TreeParser.hpp │ │ │ │ ├── TreeParserSharedInputState.hpp │ │ │ │ └── config.hpp │ │ │ ├── contrib │ │ │ │ └── bcb4 │ │ │ │ │ ├── README │ │ │ │ │ ├── antlr.bpr │ │ │ │ │ └── antlr.cpp │ │ │ ├── doxygen.cfg │ │ │ ├── scripts │ │ │ │ ├── cr_stripper.sh │ │ │ │ └── make_change_log.tcl │ │ │ └── src │ │ │ │ ├── ANTLRUtil.cpp │ │ │ │ ├── ASTFactory.cpp │ │ │ │ ├── ASTNULLType.cpp │ │ │ │ ├── ASTRefCount.cpp │ │ │ │ ├── BaseAST.cpp │ │ │ │ ├── BitSet.cpp │ │ │ │ ├── CharBuffer.cpp │ │ │ │ ├── CharScanner.cpp │ │ │ │ ├── CommonAST.cpp │ │ │ │ ├── CommonASTWithHiddenTokens.cpp │ │ │ │ ├── CommonHiddenStreamToken.cpp │ │ │ │ ├── CommonToken.cpp │ │ │ │ ├── InputBuffer.cpp │ │ │ │ ├── LLkParser.cpp │ │ │ │ ├── Makefile.in │ │ │ │ ├── MismatchedCharException.cpp │ │ │ │ ├── MismatchedTokenException.cpp │ │ │ │ ├── NoViableAltException.cpp │ │ │ │ ├── NoViableAltForCharException.cpp │ │ │ │ ├── Parser.cpp │ │ │ │ ├── RecognitionException.cpp │ │ │ │ ├── String.cpp │ │ │ │ ├── Token.cpp │ │ │ │ ├── TokenBuffer.cpp │ │ │ │ ├── TokenRefCount.cpp │ │ │ │ ├── TokenStreamBasicFilter.cpp │ │ │ │ ├── TokenStreamHiddenTokenFilter.cpp │ │ │ │ ├── TokenStreamRewriteEngine.cpp │ │ │ │ ├── TokenStreamSelector.cpp │ │ │ │ ├── TreeParser.cpp │ │ │ │ └── dll.cpp │ │ ├── csharp │ │ │ ├── ASTFrame │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── Makefile.in │ │ │ │ ├── antlr.astframe.csproj │ │ │ │ ├── antlr.astframe.dll │ │ │ │ └── antlr.debug.misc │ │ │ │ │ ├── ASTFrame.cs │ │ │ │ │ ├── ASTFrame.resx │ │ │ │ │ ├── JTreeASTPanel.cs │ │ │ │ │ └── JTreeASTPanel.resx │ │ │ ├── Makefile.in │ │ │ ├── antlr.net-runtime-2.7.5.sln │ │ │ ├── antlr.runtime.build │ │ │ └── src │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── Makefile.in │ │ │ │ ├── SupportClass.cs │ │ │ │ ├── antlr.collections.impl │ │ │ │ ├── ASTArray.cs │ │ │ │ └── BitSet.cs │ │ │ │ ├── antlr.collections │ │ │ │ └── AST.cs │ │ │ │ ├── antlr.debug │ │ │ │ ├── ANTLREventArgs.cs │ │ │ │ ├── DebuggingCharScanner.cs │ │ │ │ ├── DebuggingInputBuffer.cs │ │ │ │ ├── DebuggingParser.cs │ │ │ │ ├── GuessingEventArgs.cs │ │ │ │ ├── ICharScannerDebugSubject.cs │ │ │ │ ├── IDebugSubject.cs │ │ │ │ ├── IParserDebugSubject.cs │ │ │ │ ├── InputBufferEventArgs.cs │ │ │ │ ├── InputBufferEventSupport.cs │ │ │ │ ├── InputBufferListener.cs │ │ │ │ ├── InputBufferListenerBase.cs │ │ │ │ ├── InputBufferReporter.cs │ │ │ │ ├── LLkDebuggingParser.cs │ │ │ │ ├── Listener.cs │ │ │ │ ├── MessageEventArgs.cs │ │ │ │ ├── MessageListener.cs │ │ │ │ ├── MessageListenerBase.cs │ │ │ │ ├── NewLineEventArgs.cs │ │ │ │ ├── NewLineListener.cs │ │ │ │ ├── ParseTreeDebugParser.cs │ │ │ │ ├── ParserController.cs │ │ │ │ ├── ParserEventSupport.cs │ │ │ │ ├── ParserListener.cs │ │ │ │ ├── ParserListenerBase.cs │ │ │ │ ├── ParserMatchEventArgs.cs │ │ │ │ ├── ParserMatchListener.cs │ │ │ │ ├── ParserMatchListenerBase.cs │ │ │ │ ├── ParserReporter.cs │ │ │ │ ├── ParserTokenEventArgs.cs │ │ │ │ ├── ParserTokenListener.cs │ │ │ │ ├── ParserTokenListenerBase.cs │ │ │ │ ├── ScannerEventSupport.cs │ │ │ │ ├── SemanticPredicateEventArgs.cs │ │ │ │ ├── SemanticPredicateListener.cs │ │ │ │ ├── SemanticPredicateListenerBase.cs │ │ │ │ ├── SyntacticPredicateEventArgs.cs │ │ │ │ ├── SyntacticPredicateListener.cs │ │ │ │ ├── SyntacticPredicateListenerBase.cs │ │ │ │ ├── TraceEventArgs.cs │ │ │ │ ├── TraceListener.cs │ │ │ │ ├── TraceListenerBase.cs │ │ │ │ └── Tracer.cs │ │ │ │ ├── antlr.runtime-2.7.5.csproj │ │ │ │ └── antlr │ │ │ │ ├── ANTLRException.cs │ │ │ │ ├── ANTLRPanicException.cs │ │ │ │ ├── ASTFactory.cs │ │ │ │ ├── ASTNULLType.cs │ │ │ │ ├── ASTNodeCreator.cs │ │ │ │ ├── ASTPair.cs │ │ │ │ ├── ASTVisitor.cs │ │ │ │ ├── BaseAST.cs │ │ │ │ ├── ByteBuffer.cs │ │ │ │ ├── CharBuffer.cs │ │ │ │ ├── CharQueue.cs │ │ │ │ ├── CharScanner.cs │ │ │ │ ├── CharStreamException.cs │ │ │ │ ├── CharStreamIOException.cs │ │ │ │ ├── CommonAST.cs │ │ │ │ ├── CommonASTWithHiddenTokens.cs │ │ │ │ ├── CommonHiddenStreamToken.cs │ │ │ │ ├── CommonToken.cs │ │ │ │ ├── DefaultFileLineFormatter.cs │ │ │ │ ├── DumpASTVisitor.cs │ │ │ │ ├── FileLineFormatter.cs │ │ │ │ ├── IHiddenStreamToken.cs │ │ │ │ ├── IToken.cs │ │ │ │ ├── InputBuffer.cs │ │ │ │ ├── LLkParser.cs │ │ │ │ ├── LexerSharedInputState.cs │ │ │ │ ├── MismatchedCharException.cs │ │ │ │ ├── MismatchedTokenException.cs │ │ │ │ ├── NoViableAltException.cs │ │ │ │ ├── NoViableAltForCharException.cs │ │ │ │ ├── ParseTree.cs │ │ │ │ ├── ParseTreeRule.cs │ │ │ │ ├── ParseTreeToken.cs │ │ │ │ ├── Parser.cs │ │ │ │ ├── ParserSharedInputState.cs │ │ │ │ ├── RecognitionException.cs │ │ │ │ ├── SemanticException.cs │ │ │ │ ├── StringUtils.cs │ │ │ │ ├── Token.cs │ │ │ │ ├── TokenBuffer.cs │ │ │ │ ├── TokenCreator.cs │ │ │ │ ├── TokenQueue.cs │ │ │ │ ├── TokenStream.cs │ │ │ │ ├── TokenStreamBasicFilter.cs │ │ │ │ ├── TokenStreamException.cs │ │ │ │ ├── TokenStreamHiddenTokenFilter.cs │ │ │ │ ├── TokenStreamIOException.cs │ │ │ │ ├── TokenStreamRecognitionException.cs │ │ │ │ ├── TokenStreamRetryException.cs │ │ │ │ ├── TokenStreamRewriteEngine.cs │ │ │ │ ├── TokenStreamSelector.cs │ │ │ │ ├── TokenWithIndex.cs │ │ │ │ ├── TreeParser.cs │ │ │ │ └── TreeParserSharedInputState.cs │ │ └── python │ │ │ ├── Makefile.in │ │ │ ├── antlr │ │ │ ├── __init__.py │ │ │ └── antlr.py │ │ │ └── setup.py │ └── scripts │ │ ├── Rules.make │ │ ├── antlr-config.in │ │ ├── antlr.sh │ │ ├── antlr.sh.in │ │ ├── antlr.spec │ │ ├── antlr.spec.in │ │ ├── c.sh │ │ ├── c.sh.in │ │ ├── config.deps │ │ ├── config.deps.in │ │ ├── config.guess │ │ ├── config.make │ │ ├── config.make.in │ │ ├── config.sub │ │ ├── config.vars │ │ ├── config.vars.in │ │ ├── cpp.sh │ │ ├── cpp.sh.in │ │ ├── csc.sh │ │ ├── csc.sh.in │ │ ├── cxx.sh │ │ ├── cxx.sh.in │ │ ├── install-sh │ │ ├── jar.sh │ │ ├── jar.sh.in │ │ ├── java.sh │ │ ├── java.sh.in │ │ ├── javac.sh │ │ ├── javac.sh.in │ │ ├── lib.sh │ │ ├── lib.sh.in │ │ ├── link.sh │ │ ├── link.sh.in │ │ ├── pyantlr.sh │ │ ├── pyinst.sh.in │ │ ├── python.sh │ │ ├── python.sh.in │ │ └── run-antlr.in └── moq-3.1.416.3 │ ├── License.txt │ ├── Moq.dll │ └── Moq.xml ├── license.txt ├── micro-profile.build ├── notice.txt ├── performance ├── ArrayInitializer.boo ├── ArrayInitializer.cs ├── callables.boo ├── char-in-string.boo ├── delegate.boo ├── duckoperators.boo ├── duckoperators.py ├── implicit-bool.boo └── unboxing.cs ├── scripts ├── Templates │ ├── CodeSerializer.cs │ ├── Collection.cs │ ├── CollectionImpl.cs │ ├── DepthFirstGuide.cs │ ├── DepthFirstTransformer.cs │ ├── DepthFirstVisitor.cs │ ├── Enum.cs │ ├── FastDepthFirstVisitor.cs │ ├── IAstVisitor.cs │ ├── Node.cs │ ├── NodeImpl.cs │ └── NodeType.cs ├── VisitorBenchmark.boo ├── astgen.boo ├── dumptokens.boo ├── removenotice.boo ├── rename-types.boo └── update-vs2005-env.boo ├── settings.gradle ├── src ├── .gitattributes ├── .gitignore ├── Boo-VS2010.sln ├── Boo-VS2010.sln.DotSettings ├── Boo.Lang.CodeDom │ ├── AssemblyInfo.boo │ ├── Boo.Lang.CodeDom.booproj │ ├── BooCodeCompiler.boo │ ├── BooCodeGenerator.boo │ ├── BooCodeProvider.boo │ ├── Extensions.boo │ ├── README │ ├── default.build │ └── test.xsd ├── Boo.Lang.Compiler │ ├── .monolipse │ ├── AbstractAstAttribute.cs │ ├── AbstractAstGeneratorMacro.cs │ ├── AbstractAstMacro.cs │ ├── AbstractCompilerComponent.cs │ ├── AssemblyInfo.cs │ ├── Ast │ │ ├── ArrayLiteralExpression.cs │ │ ├── ArrayTypeReference.cs │ │ ├── AstNodePredicates.cs │ │ ├── AstUtil.cs │ │ ├── Attribute.cs │ │ ├── AttributeCollection.cs │ │ ├── BinaryExpression.cs │ │ ├── BinaryOperatorKind.Generated.cs │ │ ├── BinaryOperatorType.Generated.cs │ │ ├── Block.cs │ │ ├── BlockExpression.cs │ │ ├── BoolLiteralExpression.cs │ │ ├── BreakStatement.cs │ │ ├── CallableDefinition.cs │ │ ├── CallableTypeReference.cs │ │ ├── CastExpression.cs │ │ ├── CharLiteralExpression.cs │ │ ├── ClassDefinition.cs │ │ ├── CodeSerializer.cs │ │ ├── CollectionInitializationExpression.cs │ │ ├── CompileUnit.cs │ │ ├── ConditionalExpression.cs │ │ ├── ConditionalStatement.Generated.cs │ │ ├── Constructor.cs │ │ ├── ContinueStatement.cs │ │ ├── CustomExpression.Generated.cs │ │ ├── CustomStatement.Generated.cs │ │ ├── Declaration.cs │ │ ├── DeclarationCollection.cs │ │ ├── DeclarationStatement.cs │ │ ├── DepthFirstTransformer.cs │ │ ├── DepthFirstVisitor.cs │ │ ├── Destructor.cs │ │ ├── DoubleLiteralExpression.cs │ │ ├── EnumDefinition.cs │ │ ├── EnumMember.cs │ │ ├── Event.cs │ │ ├── ExceptionHandler.cs │ │ ├── ExceptionHandlerCollection.cs │ │ ├── ExceptionHandlerFlags.Generated.cs │ │ ├── ExplicitMemberInfo.cs │ │ ├── Expression.cs │ │ ├── ExpressionCollection.cs │ │ ├── ExpressionInterpolationExpression.cs │ │ ├── ExpressionPair.cs │ │ ├── ExpressionPairCollection.cs │ │ ├── ExpressionStatement.cs │ │ ├── ExtendedGeneratorExpression.cs │ │ ├── Field.cs │ │ ├── ForStatement.cs │ │ ├── GeneratorExpression.cs │ │ ├── GeneratorExpressionCollection.cs │ │ ├── GenericParameterConstraints.Generated.cs │ │ ├── GenericParameterDeclaration.cs │ │ ├── GenericParameterDeclarationCollection.cs │ │ ├── GenericReferenceExpression.Generated.cs │ │ ├── GenericTypeDefinitionReference.cs │ │ ├── GenericTypeReference.cs │ │ ├── GotoStatement.cs │ │ ├── HashLiteralExpression.cs │ │ ├── IAstVisitor.Generated.cs │ │ ├── IExplicitMember.cs │ │ ├── INodeWithArguments.cs │ │ ├── INodeWithAttributes.cs │ │ ├── INodeWithBody.cs │ │ ├── INodeWithGenericParameters.cs │ │ ├── INodeWithParameters.cs │ │ ├── IfStatement.cs │ │ ├── Impl │ │ │ ├── ArrayLiteralExpressionImpl.cs │ │ │ ├── ArrayTypeReferenceImpl.cs │ │ │ ├── AttributeCollectionImpl.cs │ │ │ ├── AttributeImpl.cs │ │ │ ├── BinaryExpressionImpl.cs │ │ │ ├── BlockExpressionImpl.cs │ │ │ ├── BlockImpl.cs │ │ │ ├── BoolLiteralExpressionImpl.cs │ │ │ ├── BreakStatementImpl.cs │ │ │ ├── CallableDefinitionImpl.cs │ │ │ ├── CallableTypeReferenceImpl.cs │ │ │ ├── CastExpressionImpl.cs │ │ │ ├── CharLiteralExpressionImpl.cs │ │ │ ├── ClassDefinitionImpl.cs │ │ │ ├── CodeSerializer.cs │ │ │ ├── CollectionInitializationExpressionImpl.cs │ │ │ ├── CompileUnitImpl.cs │ │ │ ├── ConditionalExpressionImpl.cs │ │ │ ├── ConditionalStatementImpl.cs │ │ │ ├── ConstructorImpl.cs │ │ │ ├── ContinueStatementImpl.cs │ │ │ ├── CustomExpressionImpl.cs │ │ │ ├── CustomStatementImpl.cs │ │ │ ├── DeclarationCollectionImpl.cs │ │ │ ├── DeclarationImpl.cs │ │ │ ├── DeclarationStatementImpl.cs │ │ │ ├── DepthFirstGuide.cs │ │ │ ├── DepthFirstTransformer.cs │ │ │ ├── DepthFirstVisitor.cs │ │ │ ├── DestructorImpl.cs │ │ │ ├── DoubleLiteralExpressionImpl.cs │ │ │ ├── EnumDefinitionImpl.cs │ │ │ ├── EnumMemberImpl.cs │ │ │ ├── EventImpl.cs │ │ │ ├── ExceptionHandlerCollectionImpl.cs │ │ │ ├── ExceptionHandlerImpl.cs │ │ │ ├── ExplicitMemberInfoImpl.cs │ │ │ ├── ExpressionCollectionImpl.cs │ │ │ ├── ExpressionImpl.cs │ │ │ ├── ExpressionInterpolationExpressionImpl.cs │ │ │ ├── ExpressionPairCollectionImpl.cs │ │ │ ├── ExpressionPairImpl.cs │ │ │ ├── ExpressionStatementImpl.cs │ │ │ ├── ExtendedGeneratorExpressionImpl.cs │ │ │ ├── FastDepthFirstVisitor.cs │ │ │ ├── FieldImpl.cs │ │ │ ├── ForStatementImpl.cs │ │ │ ├── GeneratorExpressionCollectionImpl.cs │ │ │ ├── GeneratorExpressionImpl.cs │ │ │ ├── GenericParameterDeclarationCollectionImpl.cs │ │ │ ├── GenericParameterDeclarationImpl.cs │ │ │ ├── GenericReferenceExpressionImpl.cs │ │ │ ├── GenericTypeDefinitionReferenceImpl.cs │ │ │ ├── GenericTypeReferenceImpl.cs │ │ │ ├── GotoStatementImpl.cs │ │ │ ├── HashLiteralExpressionImpl.cs │ │ │ ├── IfStatementImpl.cs │ │ │ ├── ImportCollectionImpl.cs │ │ │ ├── ImportImpl.cs │ │ │ ├── IntegerLiteralExpressionImpl.cs │ │ │ ├── InterfaceDefinitionImpl.cs │ │ │ ├── LabelStatementImpl.cs │ │ │ ├── ListLiteralExpressionImpl.cs │ │ │ ├── LiteralExpressionImpl.cs │ │ │ ├── LocalCollectionImpl.cs │ │ │ ├── LocalImpl.cs │ │ │ ├── MacroStatementImpl.cs │ │ │ ├── MemberReferenceExpressionImpl.cs │ │ │ ├── MethodImpl.cs │ │ │ ├── MethodInvocationExpressionImpl.cs │ │ │ ├── ModuleCollectionImpl.cs │ │ │ ├── ModuleImpl.cs │ │ │ ├── NamespaceDeclarationImpl.cs │ │ │ ├── NullLiteralExpressionImpl.cs │ │ │ ├── ParameterDeclarationCollectionImpl.cs │ │ │ ├── ParameterDeclarationImpl.cs │ │ │ ├── PropertyImpl.cs │ │ │ ├── QuasiquoteExpressionImpl.cs │ │ │ ├── RELiteralExpressionImpl.cs │ │ │ ├── RaiseStatementImpl.cs │ │ │ ├── ReferenceExpressionImpl.cs │ │ │ ├── ReturnStatementImpl.cs │ │ │ ├── SelfLiteralExpressionImpl.cs │ │ │ ├── SimpleTypeReferenceImpl.cs │ │ │ ├── SliceCollectionImpl.cs │ │ │ ├── SliceImpl.cs │ │ │ ├── SlicingExpressionImpl.cs │ │ │ ├── SpliceExpressionImpl.cs │ │ │ ├── SpliceMemberReferenceExpressionImpl.cs │ │ │ ├── SpliceParameterDeclarationImpl.cs │ │ │ ├── SpliceTypeDefinitionBodyImpl.cs │ │ │ ├── SpliceTypeMemberImpl.cs │ │ │ ├── SpliceTypeReferenceImpl.cs │ │ │ ├── StatementCollectionImpl.cs │ │ │ ├── StatementImpl.cs │ │ │ ├── StatementModifierImpl.cs │ │ │ ├── StatementTypeMemberImpl.cs │ │ │ ├── StringLiteralExpressionImpl.cs │ │ │ ├── StructDefinitionImpl.cs │ │ │ ├── SuperLiteralExpressionImpl.cs │ │ │ ├── TimeSpanLiteralExpressionImpl.cs │ │ │ ├── TryCastExpressionImpl.cs │ │ │ ├── TryStatementImpl.cs │ │ │ ├── TypeDefinitionCollectionImpl.cs │ │ │ ├── TypeDefinitionImpl.cs │ │ │ ├── TypeMemberCollectionImpl.cs │ │ │ ├── TypeMemberImpl.cs │ │ │ ├── TypeMemberStatementImpl.cs │ │ │ ├── TypeReferenceCollectionImpl.cs │ │ │ ├── TypeReferenceImpl.cs │ │ │ ├── TypeofExpressionImpl.cs │ │ │ ├── UnaryExpressionImpl.cs │ │ │ ├── UnlessStatementImpl.cs │ │ │ ├── UnpackStatementImpl.cs │ │ │ ├── WhileStatementImpl.cs │ │ │ └── YieldStatementImpl.cs │ │ ├── Import.cs │ │ ├── ImportCollection.cs │ │ ├── IntegerLiteralExpression.cs │ │ ├── InterfaceDefinition.cs │ │ ├── LabelStatement.cs │ │ ├── LexicalInfo.cs │ │ ├── ListLiteralExpression.cs │ │ ├── LiteralExpression.cs │ │ ├── Local.cs │ │ ├── LocalCollection.cs │ │ ├── MacroStatement.cs │ │ ├── MemberReferenceExpression.cs │ │ ├── Method.cs │ │ ├── MethodImplementationFlags.Generated.cs │ │ ├── MethodInvocationExpression.cs │ │ ├── Module.cs │ │ ├── ModuleCollection.cs │ │ ├── NamespaceDeclaration.cs │ │ ├── Node.cs │ │ ├── NodeCollection.cs │ │ ├── NodeExtensions.cs │ │ ├── NodeType.Generated.cs │ │ ├── NullLiteralExpression.cs │ │ ├── OmittedExpression.cs │ │ ├── ParameterDeclaration.cs │ │ ├── ParameterDeclarationCollection.cs │ │ ├── ParameterModifiers.Generated.cs │ │ ├── Property.cs │ │ ├── QuasiquoteExpression.cs │ │ ├── RELiteralExpression.cs │ │ ├── RaiseStatement.cs │ │ ├── ReferenceExpression.cs │ │ ├── ReturnStatement.cs │ │ ├── SelfLiteralExpression.cs │ │ ├── SimpleTypeReference.cs │ │ ├── Slice.cs │ │ ├── SliceCollection.cs │ │ ├── SlicingExpression.cs │ │ ├── SpliceExpression.cs │ │ ├── SpliceMemberReferenceExpression.cs │ │ ├── SpliceParameterDeclaration.cs │ │ ├── SpliceTypeDefinitionBody.Generated.cs │ │ ├── SpliceTypeDefinitionBody.cs │ │ ├── SpliceTypeMember.cs │ │ ├── SpliceTypeReference.cs │ │ ├── Statement.cs │ │ ├── StatementCollection.cs │ │ ├── StatementModifier.cs │ │ ├── StatementModifierType.Generated.cs │ │ ├── StatementTypeMember.cs │ │ ├── StringLiteralExpression.cs │ │ ├── StructDefinition.cs │ │ ├── SuperLiteralExpression.cs │ │ ├── TimeSpanLiteralExpression.cs │ │ ├── TryCastExpression.cs │ │ ├── TryStatement.cs │ │ ├── TypeDefinition.cs │ │ ├── TypeDefinitionCollection.cs │ │ ├── TypeMember.cs │ │ ├── TypeMemberCollection.cs │ │ ├── TypeMemberModifiers.Generated.cs │ │ ├── TypeMemberStatement.Generated.cs │ │ ├── TypeMemberStatement.cs │ │ ├── TypeReference.cs │ │ ├── TypeReferenceCollection.cs │ │ ├── TypeofExpression.cs │ │ ├── UnaryExpression.cs │ │ ├── UnaryOperatorType.Generated.cs │ │ ├── UnlessStatement.cs │ │ ├── UnpackStatement.cs │ │ ├── Visitors │ │ │ ├── BooPrinterVisitor.cs │ │ │ ├── PseudoCSharpPrinterVisitor.cs │ │ │ ├── TextEmitter.cs │ │ │ └── TreePrinterVisitor.cs │ │ ├── WhileStatement.cs │ │ └── YieldStatement.cs │ ├── Attributes │ │ ├── ExtensionAttribute.cs │ │ └── StrictModeAttribute.cs │ ├── Boo.Lang.Compiler.csproj │ ├── BooCompiler.cs │ ├── CancellableEventArgs.cs │ ├── CompilerContext.cs │ ├── CompilerError.cs │ ├── CompilerErrorCollection.cs │ ├── CompilerErrorFactory.cs │ ├── CompilerInputCollection.cs │ ├── CompilerOutputType.cs │ ├── CompilerParameters.cs │ ├── CompilerPipeline.cs │ ├── CompilerReferenceCollection.cs │ ├── CompilerResourceCollection.cs │ ├── CompilerWarning.cs │ ├── CompilerWarningCollection.cs │ ├── CompilerWarningFactory.cs │ ├── Environments │ │ └── MyIdiom.cs │ ├── IAstAttribute.cs │ ├── IAstGeneratorMacro.cs │ ├── IAstMacro.cs │ ├── ICompilerComponent.cs │ ├── ICompilerInput.cs │ ├── ICompilerResource.cs │ ├── ICompilerResourceWriter.cs │ ├── ICompilerStep.cs │ ├── IO │ │ ├── FileInput.cs │ │ ├── ReaderInput.cs │ │ └── StringInput.cs │ ├── LexicalInfoPreservingGeneratorMacro.cs │ ├── LexicalInfoPreservingMacro.cs │ ├── MetaProgramming │ │ ├── Compilation.cs │ │ └── CompilationErrorsException.cs │ ├── Pipelines │ │ ├── CheckForErrors.cs │ │ ├── Compile.cs │ │ ├── CompileToBoo.cs │ │ ├── CompileToFile.cs │ │ ├── CompileToFileAndVerify.cs │ │ ├── CompileToMemory.cs │ │ ├── ExpandMacros.cs │ │ ├── Parse.cs │ │ ├── ParseAndPrint.cs │ │ ├── ParseAndPrintAst.cs │ │ ├── ParseAndPrintXml.cs │ │ ├── RemoveEmptyBlocks.cs │ │ ├── ResolveExpressions.cs │ │ └── Run.cs │ ├── Resources │ │ ├── EmbeddedFileResource.cs │ │ ├── FileResource.cs │ │ ├── NamedEmbeddedFileResource.cs │ │ └── NamedFileResource.cs │ ├── Services │ │ ├── ExtensionTagger.cs │ │ ├── LanguageAmbiance.cs │ │ └── UniqueNameProvider.cs │ ├── Steps │ │ ├── AbstractCompilerStep.cs │ │ ├── AbstractFastVisitorCompilerStep.cs │ │ ├── AbstractNamespaceSensitiveCompilerStep.cs │ │ ├── AbstractNamespaceSensitiveVisitorCompilerStep.cs │ │ ├── AbstractTransformerCompilerStep.cs │ │ ├── AbstractVisitorCompilerStep.cs │ │ ├── ActionStep.cs │ │ ├── AstAnnotations.cs │ │ ├── BindBaseTypes.cs │ │ ├── BindEnumMembers.cs │ │ ├── BindGenericParameters.cs │ │ ├── BindMethods.cs │ │ ├── BindTypeDefinitions.cs │ │ ├── BindTypeMembers.cs │ │ ├── BranchChecking.cs │ │ ├── CacheRegularExpressionsInStaticFields.cs │ │ ├── CheckAttributesUsage.cs │ │ ├── CheckGenericConstraints.cs │ │ ├── CheckIdentifiers.cs │ │ ├── CheckLiteralValues.cs │ │ ├── CheckMemberNames.cs │ │ ├── CheckMemberTypes.cs │ │ ├── CheckMembersProtectionLevel.cs │ │ ├── CheckNeverUsedMembers.cs │ │ ├── CheckSlicingExpressions.cs │ │ ├── ClosureSignatureInferrer.cs │ │ ├── ConstantFolding.cs │ │ ├── ContextAnnotations.cs │ │ ├── DetectNotImplementedFeatureUsage.cs │ │ ├── DumpReferences.cs │ │ ├── EmitAssembly.cs │ │ ├── EntityPredicates.cs │ │ ├── ExpandAstLiterals.cs │ │ ├── ExpandComplexSlicingExpressions.cs │ │ ├── ExpandDuckTypedExpressions.cs │ │ ├── ExpandPropertiesAndEvents.cs │ │ ├── ExpandVarArgsMethodInvocations.cs │ │ ├── ForeignReferenceCollector.cs │ │ ├── Generators │ │ │ ├── GeneratorExpressionProcessor.cs │ │ │ ├── GeneratorItemTypeInferrer.cs │ │ │ ├── GeneratorMethodProcessor.cs │ │ │ ├── GeneratorSkeleton.cs │ │ │ └── GeneratorSkeletonBuilder.cs │ │ ├── GenericConstraintsValidator.cs │ │ ├── GotoOnTopLevelContinue.cs │ │ ├── ImplementICallableOnCallableDefinitions.cs │ │ ├── Inheritance │ │ │ └── BaseTypeResolution.cs │ │ ├── InitializeNameResolutionService.cs │ │ ├── InjectCallableConversions.cs │ │ ├── InjectCastsAndConversions.cs │ │ ├── InjectImplicitBooleanConversions.cs │ │ ├── IntroduceGlobalNamespaces.cs │ │ ├── IntroduceModuleClasses.cs │ │ ├── MacroAndAttributeExpansion.cs │ │ ├── MacroProcessing │ │ │ ├── BindAndApplyAttributes.cs │ │ │ ├── MacroCompiler.cs │ │ │ ├── MacroExpander.cs │ │ │ ├── NodeGeneratorExpander.cs │ │ │ └── TypeMemberStatementBubbler.cs │ │ ├── MergePartialTypes.cs │ │ ├── MethodTrackingVisitorCompilerStep.cs │ │ ├── NormalizeExpressions.cs │ │ ├── NormalizeIterationStatements.cs │ │ ├── NormalizeStatementModifiers.cs │ │ ├── NormalizeTypeAndMemberDefinitions.cs │ │ ├── OptimizeIterationStatements.cs │ │ ├── PEVerify.cs │ │ ├── Parsing.cs │ │ ├── PreErrorChecking.cs │ │ ├── PrintAst.cs │ │ ├── PrintBoo.cs │ │ ├── PrintErrors.cs │ │ ├── PrintWarnings.cs │ │ ├── ProcessAssignmentsToSpecialMembers.cs │ │ ├── ProcessAssignmentsToValueTypeMembers.cs │ │ ├── ProcessClosures.cs │ │ ├── ProcessGenerators.cs │ │ ├── ProcessInheritedAbstractMembers.cs │ │ ├── ProcessMethodBodies.cs │ │ ├── ProcessMethodBodiesWithDuckTyping.cs │ │ ├── ProcessSharedLocals.cs │ │ ├── ReifyTypes.cs │ │ ├── RemoveDeadCode.cs │ │ ├── ResolveImports.cs │ │ ├── ResolveTypeReferences.cs │ │ ├── RunAssembly.cs │ │ ├── SaveAssembly.cs │ │ ├── SelfEntity.cs │ │ ├── SerializeToXml.cs │ │ ├── StricterErrorChecking.cs │ │ ├── TransformCallableDefinitions.cs │ │ ├── TypeInference.cs │ │ └── VerifyExtensionMethods.cs │ ├── TypeSystem │ │ ├── Ambiguous.cs │ │ ├── Builders │ │ │ ├── BooClassBuilder.cs │ │ │ ├── BooMethodBuilder.cs │ │ │ ├── CallableTypeBuilder.cs │ │ │ ├── ICodeBuilder.cs │ │ │ ├── ITypeReferenceFactory.cs │ │ │ ├── MappedTypeReferenceFactory.cs │ │ │ └── StandardTypeReferenceFactory.cs │ │ ├── BuiltinFunction.cs │ │ ├── BuiltinFunctionType.cs │ │ ├── CallableSignature.cs │ │ ├── Core │ │ │ ├── AbstractType.cs │ │ │ ├── AliasedNamespace.cs │ │ │ ├── AnonymousCallableType.cs │ │ │ ├── ArrayType.cs │ │ │ ├── ArrayTypeCache.cs │ │ │ ├── EmptyArrayType.cs │ │ │ ├── Entities.cs │ │ │ ├── EnvironmentProperty.cs │ │ │ ├── GlobalNamespace.cs │ │ │ ├── NamespaceDelegator.cs │ │ │ ├── Namespaces.cs │ │ │ ├── ResolvedNamespaces.cs │ │ │ └── SimpleNamespace.cs │ │ ├── EntityExtensions.cs │ │ ├── EntityType.cs │ │ ├── Error.cs │ │ ├── Generics │ │ │ ├── AbstractGenericParameter.cs │ │ │ ├── GenericConstructedMethod.cs │ │ │ ├── GenericConstructedType.cs │ │ │ ├── GenericConstructionChecker.cs │ │ │ ├── GenericMappedMembers.cs │ │ │ ├── GenericMappedTypeParameter.cs │ │ │ ├── GenericMapping.cs │ │ │ ├── GenericParameterInferrer.cs │ │ │ ├── GenericsServices.cs │ │ │ ├── InferredType.cs │ │ │ ├── MappedParameter.cs │ │ │ ├── TypeInferrer.cs │ │ │ └── TypeMapper.cs │ │ ├── IAccessibilityChecker.cs │ │ ├── IAccessibleMember.cs │ │ ├── IArrayType.cs │ │ ├── ICallableType.cs │ │ ├── ICompileUnit.cs │ │ ├── IConstructedMethodInfo.cs │ │ ├── IConstructedTypeInfo.cs │ │ ├── IConstructor.cs │ │ ├── IDestructor.cs │ │ ├── IEntity.cs │ │ ├── IEntityWithAttributes.cs │ │ ├── IEntityWithParameters.cs │ │ ├── IEvent.cs │ │ ├── IExtensionEnabled.cs │ │ ├── IExternalEntity.cs │ │ ├── IField.cs │ │ ├── IGenericMethodInfo.cs │ │ ├── IGenericParameter.cs │ │ ├── IGenericTypeInfo.cs │ │ ├── IInternalEntity.cs │ │ ├── ILocalEntity.cs │ │ ├── IMember.cs │ │ ├── IMethod.cs │ │ ├── IMethodBase.cs │ │ ├── INameSpace.cs │ │ ├── IOverridableMember.cs │ │ ├── IParameter.cs │ │ ├── IProperty.cs │ │ ├── IType.cs │ │ ├── ITypedEntity.cs │ │ ├── Internal │ │ │ ├── AbstractInternalType.cs │ │ │ ├── AbstractLocalEntity.cs │ │ │ ├── CompileUnitNamespace.cs │ │ │ ├── DeclarationsNamespace.cs │ │ │ ├── ImportAnnotations.cs │ │ │ ├── ImportedNamespace.cs │ │ │ ├── InternalCallableType.cs │ │ │ ├── InternalClass.cs │ │ │ ├── InternalCompileUnit.cs │ │ │ ├── InternalConstructor.cs │ │ │ ├── InternalEntity.cs │ │ │ ├── InternalEnum.cs │ │ │ ├── InternalEnumMember.cs │ │ │ ├── InternalEvent.cs │ │ │ ├── InternalField.cs │ │ │ ├── InternalGenericMapping.cs │ │ │ ├── InternalGenericMethod.cs │ │ │ ├── InternalGenericParameter.cs │ │ │ ├── InternalInterface.cs │ │ │ ├── InternalLabel.cs │ │ │ ├── InternalLocal.cs │ │ │ ├── InternalMethod.cs │ │ │ ├── InternalModule.cs │ │ │ ├── InternalParameter.cs │ │ │ ├── InternalProperty.cs │ │ │ ├── InternalTypeSystemProvider.cs │ │ │ └── PartialModuleNamespace.cs │ │ ├── Null.cs │ │ ├── Reflection │ │ │ ├── AbstractExternalGenericInfo.cs │ │ │ ├── AssemblyEqualityComparer.cs │ │ │ ├── AssemblyReference.cs │ │ │ ├── CachedMethod.cs │ │ │ ├── ExternalCallableType.cs │ │ │ ├── ExternalConstructedMethodInfo.cs │ │ │ ├── ExternalConstructedTypeInfo.cs │ │ │ ├── ExternalConstructor.cs │ │ │ ├── ExternalEntity.cs │ │ │ ├── ExternalEvent.cs │ │ │ ├── ExternalField.cs │ │ │ ├── ExternalGenericMapping.cs │ │ │ ├── ExternalGenericMethodInfo.cs │ │ │ ├── ExternalGenericParameter.cs │ │ │ ├── ExternalGenericTypeInfo.cs │ │ │ ├── ExternalMethod.cs │ │ │ ├── ExternalParameter.cs │ │ │ ├── ExternalProperty.cs │ │ │ ├── ExternalType.cs │ │ │ ├── IAssemblyReference.cs │ │ │ ├── IReflectionTypeSystemProvider.cs │ │ │ ├── ReflectionNamespace.cs │ │ │ ├── ReflectionNamespaceBuilder.cs │ │ │ └── ReflectionTypeSystemProvider.cs │ │ ├── Services │ │ │ ├── AccessibilityChecker.cs │ │ │ ├── AnonymousCallablesManager.cs │ │ │ ├── BooCodeBuilder.cs │ │ │ ├── CallableResolutionService.cs │ │ │ ├── CodeReifier.cs │ │ │ ├── CompilerErrorEmitter.cs │ │ │ ├── CurrentScope.cs │ │ │ ├── DowncastPermissions.cs │ │ │ ├── EntityFormatter.cs │ │ │ ├── InvocationTypeInferenceRules.cs │ │ │ ├── MemberCollector.cs │ │ │ ├── MetadataUtil.cs │ │ │ ├── NameResolutionService.cs │ │ │ ├── RuntimeMethodCache.cs │ │ │ ├── TypeChecker.cs │ │ │ ├── TypeCompatibilityRules.cs │ │ │ └── TypeSystemServices.cs │ │ ├── TypeCollector.cs │ │ ├── TypeExtensions.cs │ │ ├── TypeSystemExtensions.cs │ │ ├── TypeVisitor.cs │ │ ├── Types.cs │ │ ├── Unknown.cs │ │ └── Variance.cs │ └── Util │ │ ├── ArrayEqualityComparer.cs │ │ ├── MemoizedFunction.cs │ │ ├── Methods.cs │ │ ├── Permissions.cs │ │ ├── Properties.cs │ │ ├── Set.cs │ │ ├── StringUtilities.cs │ │ └── TypeUtilities.cs ├── Boo.Lang.Extensions │ ├── .monolipse │ ├── AssemblyInfo.boo │ ├── Attributes │ │ ├── DefaultAttribute.boo │ │ ├── GetterAttribute.boo │ │ ├── LockAttribute.boo │ │ ├── PropertyAttribute.boo │ │ ├── RequiredAttribute.boo │ │ ├── TransientAttribute.boo │ │ └── VolatileAttribute.boo │ ├── Boo.Lang.Extensions.booproj │ ├── Environments │ │ └── EnvironmentExtensions.boo │ ├── Macros │ │ ├── AssertMacro.boo │ │ ├── CheckedMacro.boo │ │ ├── DebugMacro.boo │ │ ├── Globals.boo │ │ ├── IfdefMacro.boo │ │ ├── LockMacro.boo │ │ ├── MacroMacro.boo │ │ ├── PreservingMacro.boo │ │ ├── PrintMacro.boo │ │ ├── PropertyMacro.boo │ │ ├── RawArrayIndexingMacro.boo │ │ ├── UnsafeMacro.boo │ │ ├── UsingMacro.boo │ │ └── YieldAllMacro.boo │ └── MetaMethods │ │ └── SizeOf.boo ├── Boo.Lang.Interpreter │ ├── .monolipse │ ├── AbstractInterpreter.boo │ ├── AssemblyInfo.boo │ ├── Boo.Lang.Interpreter.booproj │ ├── Boo.Lang.Interpreter.sln │ ├── Builtins │ │ ├── describe.boo │ │ ├── dir.boo │ │ └── repr.boo │ ├── ConsoleCapture.boo │ ├── InteractiveInterpreter.boo │ ├── InteractiveInterpreterConsole.boo │ └── Namespace.boo ├── Boo.Lang.Parser │ ├── .monolipse │ ├── AssemblyInfo.cs │ ├── Boo.Lang.Parser.csproj │ ├── BooExpressionLexer.cs │ ├── BooExpressionLexerTokenTypes.cs │ ├── BooExpressionLexerTokenTypes.txt │ ├── BooLexer.cs │ ├── BooParser.cs │ ├── BooParserBase.cs │ ├── BooParsingStep.cs │ ├── BooToken.cs │ ├── BooTokenTypes.cs │ ├── BooTokenTypes.txt │ ├── CodeFactory.cs │ ├── DocStringFormatter.cs │ ├── OperatorParser.cs │ ├── ParserSettings.cs │ ├── PrimitiveParser.cs │ ├── SourceLocationFactory.cs │ ├── Util │ │ ├── IndentTokenStreamFilter.cs │ │ ├── Readers.cs │ │ └── TokenStreamRecorder.cs │ ├── WSABooExpressionLexer.cs │ ├── WSABooExpressionLexerTokenTypes.cs │ ├── WSABooExpressionLexerTokenTypes.txt │ ├── WSABooLexer.cs │ ├── WSABooParser.cs │ ├── WSABooParserBase.cs │ ├── WSABooParsingStep.cs │ ├── WSABooTokenTypes.cs │ ├── WSABooTokenTypes.txt │ ├── antlr │ │ ├── SupportClass.cs │ │ ├── antlr.collections.impl │ │ │ ├── ASTArray.cs │ │ │ └── BitSet.cs │ │ ├── antlr.collections │ │ │ └── AST.cs │ │ ├── antlr.debug │ │ │ ├── ANTLREventArgs.cs │ │ │ ├── DebuggingCharScanner.cs │ │ │ ├── DebuggingInputBuffer.cs │ │ │ ├── DebuggingParser.cs │ │ │ ├── GuessingEventArgs.cs │ │ │ ├── ICharScannerDebugSubject.cs │ │ │ ├── IDebugSubject.cs │ │ │ ├── IParserDebugSubject.cs │ │ │ ├── InputBufferEventArgs.cs │ │ │ ├── InputBufferEventSupport.cs │ │ │ ├── InputBufferListener.cs │ │ │ ├── InputBufferListenerBase.cs │ │ │ ├── InputBufferReporter.cs │ │ │ ├── LLkDebuggingParser.cs │ │ │ ├── Listener.cs │ │ │ ├── MessageEventArgs.cs │ │ │ ├── MessageListener.cs │ │ │ ├── MessageListenerBase.cs │ │ │ ├── NewLineEventArgs.cs │ │ │ ├── NewLineListener.cs │ │ │ ├── ParseTreeDebugParser.cs │ │ │ ├── ParserController.cs │ │ │ ├── ParserEventSupport.cs │ │ │ ├── ParserListener.cs │ │ │ ├── ParserListenerBase.cs │ │ │ ├── ParserMatchEventArgs.cs │ │ │ ├── ParserMatchListener.cs │ │ │ ├── ParserMatchListenerBase.cs │ │ │ ├── ParserReporter.cs │ │ │ ├── ParserTokenEventArgs.cs │ │ │ ├── ParserTokenListener.cs │ │ │ ├── ParserTokenListenerBase.cs │ │ │ ├── ScannerEventSupport.cs │ │ │ ├── SemanticPredicateEventArgs.cs │ │ │ ├── SemanticPredicateListener.cs │ │ │ ├── SemanticPredicateListenerBase.cs │ │ │ ├── SyntacticPredicateEventArgs.cs │ │ │ ├── SyntacticPredicateListener.cs │ │ │ ├── SyntacticPredicateListenerBase.cs │ │ │ ├── TraceEventArgs.cs │ │ │ ├── TraceListener.cs │ │ │ ├── TraceListenerBase.cs │ │ │ └── Tracer.cs │ │ └── antlr │ │ │ ├── ANTLRException.cs │ │ │ ├── ANTLRPanicException.cs │ │ │ ├── ASTFactory.cs │ │ │ ├── ASTNULLType.cs │ │ │ ├── ASTNodeCreator.cs │ │ │ ├── ASTPair.cs │ │ │ ├── ASTVisitor.cs │ │ │ ├── BaseAST.cs │ │ │ ├── ByteBuffer.cs │ │ │ ├── CharBuffer.cs │ │ │ ├── CharQueue.cs │ │ │ ├── CharScanner.cs │ │ │ ├── CharStreamException.cs │ │ │ ├── CharStreamIOException.cs │ │ │ ├── CommonAST.cs │ │ │ ├── CommonASTWithHiddenTokens.cs │ │ │ ├── CommonHiddenStreamToken.cs │ │ │ ├── CommonToken.cs │ │ │ ├── DefaultFileLineFormatter.cs │ │ │ ├── DumpASTVisitor.cs │ │ │ ├── FileLineFormatter.cs │ │ │ ├── IHiddenStreamToken.cs │ │ │ ├── IToken.cs │ │ │ ├── InputBuffer.cs │ │ │ ├── LLkParser.cs │ │ │ ├── LexerSharedInputState.cs │ │ │ ├── MismatchedCharException.cs │ │ │ ├── MismatchedTokenException.cs │ │ │ ├── NoViableAltException.cs │ │ │ ├── NoViableAltForCharException.cs │ │ │ ├── ParseTree.cs │ │ │ ├── ParseTreeRule.cs │ │ │ ├── ParseTreeToken.cs │ │ │ ├── Parser.cs │ │ │ ├── ParserSharedInputState.cs │ │ │ ├── RecognitionException.cs │ │ │ ├── SemanticException.cs │ │ │ ├── StringUtils.cs │ │ │ ├── Token.cs │ │ │ ├── TokenBuffer.cs │ │ │ ├── TokenCreator.cs │ │ │ ├── TokenQueue.cs │ │ │ ├── TokenStream.cs │ │ │ ├── TokenStreamBasicFilter.cs │ │ │ ├── TokenStreamException.cs │ │ │ ├── TokenStreamHiddenTokenFilter.cs │ │ │ ├── TokenStreamIOException.cs │ │ │ ├── TokenStreamRecognitionException.cs │ │ │ ├── TokenStreamRetryException.cs │ │ │ ├── TokenStreamRewriteEngine.cs │ │ │ ├── TokenStreamSelector.cs │ │ │ ├── TokenWithIndex.cs │ │ │ ├── TreeParser.cs │ │ │ └── TreeParserSharedInputState.cs │ ├── boo.g │ ├── booel.g │ ├── wsaboo.g │ └── wsabooel.g ├── Boo.Lang.PatternMatching │ ├── .monolipse │ ├── AssemblyInfo.boo │ ├── Boo.Lang.PatternMatching.booproj │ ├── Boo.Lang.PatternMatching.sln │ ├── Impl │ │ ├── Globals.boo │ │ ├── MatchExpansion.boo │ │ └── PatternExpander.boo │ ├── MatchError.boo │ └── MatchMacro.boo ├── Boo.Lang.Useful │ ├── .monolipse │ ├── AssemblyInfo.boo │ ├── Attributes │ │ ├── AutoFlagsAttribute.boo │ │ ├── OnceAttribute.boo │ │ ├── SingletonAttribute.boo │ │ └── TraceMethodCallsAttribute.boo │ ├── Boo.Lang.Useful.booproj │ ├── Boo.Lang.Useful.sln │ ├── BooTemplate │ │ ├── ApplyTemplateSemantics.boo │ │ ├── ITemplate.boo │ │ ├── TemplateCompiler.boo │ │ └── TemplatePreProcessor.boo │ ├── Collections │ │ ├── AbstractCollection.boo │ │ ├── Cache.boo │ │ ├── CollectionAttribute.boo │ │ └── Set.boo │ ├── CommandLine │ │ ├── AbstractCommandLine.boo │ │ ├── AbstractParser.boo │ │ ├── ArgumentAttribute.boo │ │ ├── EventBasedParser.boo │ │ ├── OptionAttribute.boo │ │ └── Parser.boo │ ├── IO │ │ ├── Impl │ │ │ ├── PreProcessorExpressionEvaluator.boo │ │ │ ├── PreProcessorExpressionLexer.boo │ │ │ ├── PreProcessorExpressionParser.boo │ │ │ ├── PreProcessorExpressionParserTokenTypes.boo │ │ │ └── PreProcessorExpressionParserTokenTypes.txt │ │ ├── PreProcessor.boo │ │ ├── PreProcessorExpressions.g │ │ └── walk.boo │ ├── PlatformInformation.boo │ └── Resources │ │ └── ResourceFu.boo ├── Boo.Lang │ ├── .monolipse │ ├── AbstractGenerator.cs │ ├── AbstractGeneratorEnumerator.cs │ ├── AssemblyInfo.cs │ ├── Boo.Lang.csproj │ ├── BooComparer.cs │ ├── BooHashCodeProvider.cs │ ├── Builtins.cs │ ├── DuckTypedAttribute.cs │ ├── DynamicVariable.cs │ ├── EnumeratorItemTypeAttribute.cs │ ├── Environments │ │ ├── ActiveEnvironment.cs │ │ ├── CachingEnvironment.cs │ │ ├── ClosedEnvironment.cs │ │ ├── DeferredEnvironment.cs │ │ ├── EnvironmentBoundValue.cs │ │ ├── EnvironmentChain.cs │ │ ├── EnvironmentProvision.cs │ │ ├── IEnvironment.cs │ │ ├── InstantiatingEnvironment.cs │ │ └── My.cs │ ├── GenericGenerator.cs │ ├── GenericGeneratorEnumerator.cs │ ├── GenericList.cs │ ├── Hash.cs │ ├── ICallable.cs │ ├── IQuackFu.cs │ ├── IQuackFuMember.cs │ ├── IReflectiveQuackFu.cs │ ├── List.cs │ ├── MetaAttribute.cs │ ├── ModuleAttribute.cs │ ├── Procedure.cs │ ├── QuackFuMember.cs │ ├── ResourceManager.cs │ ├── Resources │ │ ├── .gitignore │ │ └── StringResources.cs │ ├── Runtime │ │ ├── AssertionFailedException.cs │ │ ├── CandidateMethod.cs │ │ ├── DynamicDispatching │ │ │ ├── AbstractDispatcherFactory.cs │ │ │ ├── DispatcherCache.cs │ │ │ ├── DispatcherKey.cs │ │ │ ├── Emitters │ │ │ │ ├── DispatcherEmitter.cs │ │ │ │ ├── ExtensionMethodDispatcherEmitter.cs │ │ │ │ ├── GetFieldEmitter.cs │ │ │ │ ├── ImplicitConversionEmitter.cs │ │ │ │ ├── MethodDispatcherEmitter.cs │ │ │ │ ├── SetFieldEmitter.cs │ │ │ │ └── SetPropertyEmitter.cs │ │ │ ├── MethodDispatcherFactory.cs │ │ │ ├── NumericPromotions.cs │ │ │ ├── PropertyDispatcherFactory.cs │ │ │ ├── SetOrGet.cs │ │ │ └── SliceDispatcherFactory.cs │ │ ├── ExtensionRegistry.cs │ │ ├── ICoercible.cs │ │ ├── MethodResolver.cs │ │ ├── NumericTypes.cs │ │ ├── RuntimeException.cs │ │ ├── RuntimeServices.cs │ │ └── TextReaderEnumerator.cs │ └── TypeInferenceRuleAttribute.cs ├── Boo.Microsoft.Build.Tasks │ ├── Boo.Microsoft.Build.Tasks.booproj │ ├── Boo.Microsoft.Build.targets │ ├── Booc.boo │ └── Properties │ │ └── AssemblyInfo.boo ├── Boo.NAnt.Tasks │ ├── AbstractBooTask.boo │ ├── BooTask.boo │ ├── BoocTask.boo │ ├── InsertLicenseTask.boo │ └── UpdateAssemblyVersionTask.boo ├── Boo.sln ├── boo.snk ├── booc │ ├── App.cs │ ├── App.ico │ ├── AssemblyInfo.cs │ ├── CommandLineParser.cs │ ├── app.config │ ├── booc.csproj │ └── booc.rsp ├── booi │ ├── AssemblyInfo.boo │ ├── AssemblyResolver.boo │ ├── CommandLine.boo │ ├── CompilationCache.boo │ ├── CompilerParameters.boo │ ├── README.rst │ ├── booi.boo │ └── booi.booproj └── booish │ ├── booish.boo │ └── booish.booproj ├── tests ├── .gitignore ├── Boo.Lang.CodeDom.Tests │ ├── Boo.Lang.CodeDom.Tests.booproj │ └── CodeGeneratorTestFixture.boo ├── Boo.Lang.Compiler.Tests │ ├── AstFixture.boo │ ├── BooCompilerTestFixture.boo │ ├── CallableResolutionServiceTestFixture.boo │ ├── CallableSignatureFixture.boo │ ├── CompilerContextTestFixture.boo │ ├── EnumOperationsTestFixture.boo │ ├── TestMacro.boo │ └── TypeSystemFixture.boo ├── Boo.Lang.Interpreter.Tests │ ├── .monolipse │ ├── AbstractInterpreterTestFixture.boo │ ├── Boo.Lang.Interpreter.Tests.booproj │ ├── Boo.Lang.Interpreter.Tests.prjx │ ├── DescribeBuiltinTest.boo │ ├── InteractiveInterpreterConsoleTest.boo │ └── InteractiveInterpreterTestFixture.boo ├── Boo.Lang.Parser.Tests │ ├── AbstractParserTestFixture.cs │ ├── AbstractWSAParserTestFixture.cs │ ├── Boo.Lang.Parser.Tests.csproj │ ├── Boo.Lang.Parser.Tests.prjx │ ├── BooParserTestCase.cs │ ├── ParserRoundtripTestFixture.cs │ ├── PrimitiveParserTest.cs │ ├── Util │ │ └── IndentTokenStreamFilterTestCase.cs │ ├── WSABooParserTestCase.cs │ └── WSAParserRoundtripTestFixture.cs ├── Boo.Lang.PatternMatching.Tests │ ├── .monolipse │ ├── Boo.Lang.PatternMatching.Tests.booproj │ ├── CodeMatchingTest.boo │ ├── Item.boo │ ├── MatchMacroTest.boo │ └── RegexMatchingTest.boo ├── Boo.Lang.Runtime.Tests │ ├── AbstractDispatcherFactoryTestCase.cs │ ├── Boo.Lang.Runtime.Tests.csproj │ ├── MethodDispatcherFactoryTestCase.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── PropertyDispatcherFactoryTestCase.cs │ ├── RuntimeCoercionTestCase.cs │ └── RuntimeServicesTest.cs ├── Boo.Lang.Tests │ ├── Boo.Lang.Tests.csproj │ ├── Environments │ │ ├── CachingEnvironmentTest.cs │ │ ├── DeferredEnvironmentTest.cs │ │ ├── EnvironmentBoundValueTest.cs │ │ └── EnvironmentProvisionTest.cs │ └── Properties │ │ └── AssemblyInfo.cs ├── Boo.Lang.Useful.Tests │ ├── .monolipse │ ├── Attributes │ │ ├── AbstractAttributeTestFixture.boo │ │ ├── AutoFlagsAttributeTestFixture.boo │ │ ├── OnceAttributeTestFixture.boo │ │ ├── SingletonAttributeSerialization.boo │ │ └── SingletonAttributeTestFixture.boo │ ├── Boo.Lang.Useful.Tests.booproj │ ├── BooTemplate │ │ ├── Globals.boo │ │ ├── TemplateCompilerTestFixture.boo │ │ └── TemplatePreProcessorTestFixture.boo │ ├── Collections │ │ ├── CacheTestFixture.boo │ │ ├── CollectionAttributeTestFixture.boo │ │ └── SetTestFixture.boo │ ├── CommandLine │ │ ├── AbstractCommandLineTestFixture.boo │ │ └── ParserTestFixture.boo │ └── IO │ │ └── PreprocessorFixture.boo ├── BooCompiler.Tests │ ├── AbstractCompilerErrorsTestFixture.cs │ ├── AbstractCompilerTestCase.cs │ ├── ArraysIntegrationTestFixture.cs │ ├── AssemblyEmitterTest.cs │ ├── Ast │ │ ├── AncestorsTest.cs │ │ ├── AstAssert.cs │ │ ├── CloningTest.cs │ │ ├── EnumMemberTest.cs │ │ ├── GenericParameterDeclarationTest.cs │ │ ├── MethodXmlSerializationTest.cs │ │ ├── NodeMatchingTest.cs │ │ ├── ParameterDeclarationTest.cs │ │ ├── ReferenceExpressionTestFixture.cs │ │ └── TypeDefinitionTest.cs │ ├── AttributesIntegrationTestFixture.cs │ ├── AttributesTestFixture.cs │ ├── BooCompiler.Tests.csproj │ ├── BooCompiler.Tests.prjx │ ├── BooCompilerTest.cs │ ├── BooTestCaseUtil.cs │ ├── CallablesIntegrationTestFixture.cs │ ├── ClosuresIntegrationTestFixture.cs │ ├── ClrExtensionsIntegrationTestFixture.cs │ ├── ClrIntegrationTestFixture.cs │ ├── CompilerContextTest.cs │ ├── CompilerErrorFactoryTest.cs │ ├── CompilerErrorTest.cs │ ├── CompilerErrorsTestFixture.cs │ ├── CompilerPipelineTest.cs │ ├── CompilerWarningCollectionTest.cs │ ├── CompilerWarningsTestFixture.cs │ ├── DuckTypingIntegrationTestFixture.cs │ ├── DuckyTestFixture.cs │ ├── Exceptions.cs │ ├── ExtensionsCompilationTest.cs │ ├── ExtensionsIntegrationTestFixture.cs │ ├── GeneratorsIntegrationTestFixture.cs │ ├── GenericsTestFixture.cs │ ├── LinqIntegrationTestFixture.cs │ ├── LocalizationTest.cs │ ├── MacrosTestFixture.cs │ ├── MetaProgrammingIntegrationTestFixture.cs │ ├── ModulesIntegrationTestFixture.cs │ ├── MyTest.cs │ ├── Net2ErrorsTestFixture.cs │ ├── NotImplementedErrorsTestFixture.cs │ ├── OperatorsIntegrationTestFixture.cs │ ├── Pipeline │ │ ├── AllParametersRequiredAttribute.cs │ │ └── ViewStateAttribute.cs │ ├── PrimitivesIntegrationTestFixture.cs │ ├── RegressionTestFixture.cs │ ├── SemanticsTestFixture.cs │ ├── SmokeTest.cs │ ├── StatementsIntegrationTestFixture.cs │ ├── StdlibTestFixture.cs │ ├── Steps │ │ ├── InjectImplicitBooleanConversionsTest.cs │ │ └── MacroProcessing │ │ │ └── MacroExpanderTest.cs │ ├── SupportingClasses │ │ ├── AbstractClass.cs │ │ ├── BOO313BaseClass.cs │ │ ├── BaseInterface.cs │ │ ├── ByRef.cs │ │ ├── ByteEnum.cs │ │ ├── ClassHierarchy.cs │ │ ├── Clickable.cs │ │ ├── ConditionalClass.cs │ │ ├── Constants.cs │ │ ├── Disposable.cs │ │ ├── ExtendsOverridenBoolOperator.cs │ │ ├── Generics.cs │ │ ├── ImplicitConversionToDouble.cs │ │ ├── NoParameterlessConstructor.cs │ │ ├── ObsoleteClass.cs │ │ ├── OutterClass.cs │ │ ├── OverrideBoolOperator.cs │ │ ├── OverrideEqualityOperators.cs │ │ ├── Person.cs │ │ ├── PersonCollection.cs │ │ ├── Point.cs │ │ ├── Pointers.cs │ │ ├── Rectangle.cs │ │ ├── ReturnDucks.cs │ │ ├── SByteEnum.cs │ │ ├── TestEnum.cs │ │ ├── ThisReturnTypeIsAttribute.cs │ │ ├── Transform.cs │ │ ├── ValueTypeOverrideBoolOperator.cs │ │ ├── VarArgs.cs │ │ └── Vector3.cs │ ├── SystemDrawingPoint.cs │ ├── TypeSystem │ │ ├── AbstractTypeSystemTest.cs │ │ ├── Core │ │ │ ├── GlobalNamespaceTest.cs │ │ │ └── NamespaceAssert.cs │ │ ├── EntityFormatterTestBase.cs │ │ ├── Generics │ │ │ └── GenericTypeTest.cs │ │ ├── Internal │ │ │ ├── EntityFormatterTest.cs │ │ │ └── InternalCompileUnitTest.cs │ │ ├── Reflection │ │ │ ├── BeanPropertyFinder.cs │ │ │ ├── EntityFormatterTest.cs │ │ │ ├── NullableImplicitConversionOperatorsTest.cs │ │ │ ├── ReflectionTypeSystemProviderExtensionTest.cs │ │ │ └── ReflectionTypeSystemProviderTest.cs │ │ └── Services │ │ │ ├── BooCodeBuilderTest.cs │ │ │ ├── CodeReifierTest.cs │ │ │ ├── DowncastPermissionsTest.cs │ │ │ ├── InvocationTypeInferenceRulesTest.cs │ │ │ ├── MemberCollectorTest.cs │ │ │ └── NameResolutionServiceTest.cs │ ├── TypesIntegrationTestFixture.cs │ ├── UnsafeErrorsTestFixture.cs │ ├── UnsafeTestFixture.cs │ └── Util │ │ ├── ArrayEqualityComparerTest.cs │ │ ├── MethodsTest.cs │ │ └── PropertiesTest.cs ├── BooCompilerResources.Tests │ └── CompilerResourcesFixture.boo ├── BooModules │ ├── Generators.boo │ ├── Math.boo │ └── SunShip.boo ├── BooSupportingClasses │ ├── NestedMacros.boo │ └── SettersTest.boo ├── booc.Tests │ ├── CommandLineParserTest.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── booc.Tests.csproj ├── default.build ├── generate_regression.boo ├── nunit.inc ├── test.snk └── testcases │ ├── attributes │ ├── allparametersrequired.boo │ ├── default-1.boo │ ├── default-2.boo │ ├── getter-1.boo │ ├── property-1.boo │ ├── property-2.boo │ ├── property-3.boo │ ├── property-4.boo │ ├── property-5.boo │ ├── property-6.boo │ ├── required-1.boo │ ├── required-2.boo │ ├── required-3.boo │ ├── required-4.boo │ ├── required-5.boo │ └── viewstate.boo │ ├── compilation │ ├── 1.boo │ ├── Character.boo │ ├── CustomCollection.boo │ ├── DuckTyping.boo │ ├── ExternalModuleWithNoNamespace.boo │ ├── InternalArrayType.boo │ ├── InternalClassGenerator.boo │ ├── InternalMacro.boo │ ├── InternalMacroBootstrapping.boo │ ├── InternalMacrosInSeparateModules.boo │ ├── UndeclaredDefaultConstructor.boo │ ├── UsingNestedType.boo │ ├── bool0.boo │ ├── caseinsensitivehash.boo │ ├── compact_blocks.boo │ ├── const0.boo │ ├── customer_addresses.boo │ ├── defaultmember.boo │ ├── defaultmember2.boo │ ├── double0.boo │ ├── enum_comparisons.boo │ ├── enumeratoritemtype0.boo │ ├── enumeratoritemtype1.boo │ ├── enumeratoritemtype2.boo │ ├── finalfields.boo │ ├── formatting0.boo │ ├── grouping0.boo │ ├── gte_int.boo │ ├── if0.boo │ ├── in0.boo │ ├── in1.boo │ ├── increment_property0.boo │ ├── increment_property1.boo │ ├── indexed.boo │ ├── indexed2.boo │ ├── inplace1.boo │ ├── inplaceadd0.boo │ ├── inplacexor0.boo │ ├── is0.boo │ ├── listoperators.boo │ ├── logservice.boo │ ├── long0.boo │ ├── lte_int.boo │ ├── match0.boo │ ├── match1.boo │ ├── math.boo │ ├── mathwithns.boo │ ├── modifiers0.boo │ ├── module_methods0.boo │ ├── mult0.boo │ ├── multifile0.boo │ ├── multifile1.boo │ ├── multifile2.boo │ ├── multifile3.boo │ ├── negative0.boo │ ├── not0.boo │ ├── null0.boo │ ├── parameter_as_lvalue.boo │ ├── pow0.boo │ ├── predecrement0.boo │ ├── preincrement0.boo │ ├── range.boo │ ├── re0.boo │ ├── re1.boo │ ├── redefine_builtin.boo │ ├── single0.boo │ ├── sort.boo │ ├── static_constructor0.boo │ ├── static_field0.boo │ ├── static_literalfield0.boo │ ├── stringadd0.boo │ ├── stringmultiply0.boo │ ├── sum0.boo │ ├── textreaderisenumerable.boo │ ├── timespan0.boo │ ├── typeiscallable.boo │ ├── typeiscallable1.boo │ ├── typereference0.boo │ ├── unary0.boo │ ├── unless.boo │ └── unpack_locals.boo │ ├── ducky │ ├── BOO-827-1.boo │ ├── callable-1.boo │ ├── duck-12.boo │ ├── duck-slice-1.boo │ ├── ducky-1.boo │ ├── ducky-10.boo │ ├── ducky-11.boo │ ├── ducky-2.boo │ ├── ducky-3.boo │ ├── ducky-4.boo │ ├── ducky-5.boo │ ├── ducky-6.boo │ ├── ducky-7.boo │ ├── ducky-8.boo │ ├── ducky-9.boo │ ├── implicit-1.boo │ ├── implicit-2.boo │ ├── implicit-3.boo │ ├── method-dispatch-1.boo │ ├── method-dispatch-10.boo │ ├── method-dispatch-11.boo │ ├── method-dispatch-12.boo │ ├── method-dispatch-2.boo │ ├── method-dispatch-3.boo │ ├── method-dispatch-4.boo │ ├── method-dispatch-5.boo │ ├── method-dispatch-6.boo │ ├── method-dispatch-7.boo │ ├── method-dispatch-8.boo │ ├── method-dispatch-9.boo │ ├── null-initializer-1.boo │ ├── object-construction-1.boo │ └── object-overloads-1.boo │ ├── errors │ ├── BCE0000-1.boo │ ├── BCE0004-1.boo │ ├── BCE0004-2.boo │ ├── BCE0004-3.boo │ ├── BCE0005-1.boo │ ├── BCE0005-2.boo │ ├── BCE0006-1.boo │ ├── BCE0007-1.boo │ ├── BCE0017-1.boo │ ├── BCE0017-2.boo │ ├── BCE0017-3.boo │ ├── BCE0017-4.boo │ ├── BCE0018-1.boo │ ├── BCE0018-2.boo │ ├── BCE0018-3.boo │ ├── BCE0018-4.boo │ ├── BCE0019-1.boo │ ├── BCE0019-2.boo │ ├── BCE0020-1.boo │ ├── BCE0020-2.boo │ ├── BCE0020-3.boo │ ├── BCE0020-4.boo │ ├── BCE0021-1.boo │ ├── BCE0022-1.boo │ ├── BCE0022-10.boo │ ├── BCE0022-11.boo │ ├── BCE0022-12.boo │ ├── BCE0022-13.boo │ ├── BCE0022-14.boo │ ├── BCE0022-15-strict.boo │ ├── BCE0022-16-strict.boo │ ├── BCE0022-2.boo │ ├── BCE0022-3.boo │ ├── BCE0022-4.boo │ ├── BCE0022-5.boo │ ├── BCE0022-6.boo │ ├── BCE0022-8.boo │ ├── BCE0022-9.boo │ ├── BCE0023-1.boo │ ├── BCE0024-1.boo │ ├── BCE0024-2.boo │ ├── BCE0024-3.boo │ ├── BCE0024-4.boo │ ├── BCE0032-1.boo │ ├── BCE0035-1.boo │ ├── BCE0035-2.boo │ ├── BCE0035-3.boo │ ├── BCE0035-4.boo │ ├── BCE0038-1.boo │ ├── BCE0045-1.boo │ ├── BCE0045-2.boo │ ├── BCE0045-3.boo │ ├── BCE0045-4.boo │ ├── BCE0046-1.boo │ ├── BCE0046-2.boo │ ├── BCE0047-1.boo │ ├── BCE0047-2.boo │ ├── BCE0047-3.boo │ ├── BCE0047-4.boo │ ├── BCE0047-5.boo │ ├── BCE0049-1.boo │ ├── BCE0051-1.boo │ ├── BCE0051-2.boo │ ├── BCE0053-1.boo │ ├── BCE0053-2.boo │ ├── BCE0053-3.boo │ ├── BCE0057-1.boo │ ├── BCE0058-1.boo │ ├── BCE0060-1.boo │ ├── BCE0060-2.boo │ ├── BCE0060-3.boo │ ├── BCE0061-1.boo │ ├── BCE0063-1.boo │ ├── BCE0063-2.boo │ ├── BCE0063-3.boo │ ├── BCE0063-4.boo │ ├── BCE0063-5.boo │ ├── BCE0063-6.boo │ ├── BCE0063-7.boo │ ├── BCE0063-8.boo │ ├── BCE0065-1.boo │ ├── BCE0065-2.boo │ ├── BCE0067-1.boo │ ├── BCE0067-2.boo │ ├── BCE0067-3.boo │ ├── BCE0070-1.boo │ ├── BCE0070-2.boo │ ├── BCE0070-3.boo │ ├── BCE0071-1.boo │ ├── BCE0071-2.boo │ ├── BCE0072-1.boo │ ├── BCE0072-2.boo │ ├── BCE0073-1.boo │ ├── BCE0079-1.boo │ ├── BCE0080-1.boo │ ├── BCE0081-1.boo │ ├── BCE0081-2.boo │ ├── BCE0081-3.boo │ ├── BCE0081-4.boo │ ├── BCE0081-5.boo │ ├── BCE0082-1.boo │ ├── BCE0083-1.boo │ ├── BCE0084-1.boo │ ├── BCE0085-1.boo │ ├── BCE0085-3.boo │ ├── BCE0086-1.boo │ ├── BCE0087-1.boo │ ├── BCE0089-1.boo │ ├── BCE0089-10.boo │ ├── BCE0089-11.boo │ ├── BCE0089-12.boo │ ├── BCE0089-13.boo │ ├── BCE0089-14.boo │ ├── BCE0089-15.boo │ ├── BCE0089-16.boo │ ├── BCE0089-2.boo │ ├── BCE0089-3.boo │ ├── BCE0089-4.boo │ ├── BCE0089-5.boo │ ├── BCE0089-6.boo │ ├── BCE0089-7.boo │ ├── BCE0089-8.boo │ ├── BCE0089-9.boo │ ├── BCE0090-1.boo │ ├── BCE0090-2.boo │ ├── BCE0090-3.boo │ ├── BCE0091-1.boo │ ├── BCE0092-1.boo │ ├── BCE0093-1.boo │ ├── BCE0093-2.boo │ ├── BCE0094-1.boo │ ├── BCE0095-1.boo │ ├── BCE0095-2.boo │ ├── BCE0096-1.boo │ ├── BCE0097-1.boo │ ├── BCE0097-2.boo │ ├── BCE0099-1.boo │ ├── BCE0099-2.boo │ ├── BCE0100-1.boo │ ├── BCE0101-1.boo │ ├── BCE0101-2.boo │ ├── BCE0102-1.boo │ ├── BCE0103-1.boo │ ├── BCE0103-2.boo │ ├── BCE0103-3.boo │ ├── BCE0103-cannot-extend-array.boo │ ├── BCE0104-1.boo │ ├── BCE0105-1.boo │ ├── BCE0107-1.boo │ ├── BCE0108-1.boo │ ├── BCE0111-1.boo │ ├── BCE0112-1.boo │ ├── BCE0114-1.boo │ ├── BCE0115-1.boo │ ├── BCE0116-1.boo │ ├── BCE0117-1.boo │ ├── BCE0120-1.boo │ ├── BCE0120-2.boo │ ├── BCE0120-3.boo │ ├── BCE0120-4.boo │ ├── BCE0120-5.boo │ ├── BCE0120-6.boo │ ├── BCE0121-1.boo │ ├── BCE0122-1.boo │ ├── BCE0123-1.boo │ ├── BCE0123-2.boo │ ├── BCE0124-1.boo │ ├── BCE0125-1.boo │ ├── BCE0126-1.boo │ ├── BCE0126-2.boo │ ├── BCE0126-3.boo │ ├── BCE0126-4.boo │ ├── BCE0126-5.boo │ ├── BCE0126-6.boo │ ├── BCE0126-7.boo │ ├── BCE0127-1.boo │ ├── BCE0127-2.boo │ ├── BCE0128-1.boo │ ├── BCE0129-1.boo │ ├── BCE0130-1.boo │ ├── BCE0131-1.boo │ ├── BCE0131-2.boo │ ├── BCE0132-1.boo │ ├── BCE0132-2.boo │ ├── BCE0132-3.boo │ ├── BCE0132-4.boo │ ├── BCE0132-5.boo │ ├── BCE0133-1.boo │ ├── BCE0133-2.boo │ ├── BCE0134-1.boo │ ├── BCE0134-2.boo │ ├── BCE0136-1.boo │ ├── BCE0137-1.boo │ ├── BCE0137-2.boo │ ├── BCE0137-3.boo │ ├── BCE0141.boo │ ├── BCE0142.boo │ ├── BCE0143-1.boo │ ├── BCE0144-1.boo │ ├── BCE0144-2.boo │ ├── BCE0145-1.boo │ ├── BCE0150-1.boo │ ├── BCE0151-1.boo │ ├── BCE0151-2.boo │ ├── BCE0152-1.boo │ ├── BCE0153-1.boo │ ├── BCE0153-2.boo │ ├── BCE0154-1.boo │ ├── BCE0154-2.boo │ ├── BCE0155-1.boo │ ├── BCE0156-1.boo │ ├── BCE0157-1.boo │ ├── BCE0158-1.boo │ ├── BCE0165-1.boo │ ├── BCE0166-1.boo │ ├── BCE0167-1.boo │ ├── BCE0169-1.boo │ ├── BCE0170-1.boo │ ├── BCE0171-1.boo │ ├── BCE0173-1.boo │ ├── BCE0175.boo │ ├── BCE0176-1.boo │ ├── CannotConvertFooToInt.boo │ ├── cannot-convert-enum-to-single.boo │ ├── error-doesnt-cascade-to-cast.boo │ ├── error-doesnt-cascade-to-raise.boo │ ├── invalid-array-slice.boo │ ├── invalid-generic-extension-1.boo │ ├── invalid-generic-extension-2.boo │ ├── invalid-matrix-index.boo │ ├── mismatched-collection-initializers.boo │ ├── selective-import-2.boo │ ├── selective-import.boo │ ├── single-error-on-missing-import-namespace.boo │ ├── strict-1.boo │ └── warnaserror-1.boo │ ├── integration │ ├── arrays │ │ ├── array-polymorphic-foreach.boo │ │ ├── arrays-1.boo │ │ ├── arrays-10.boo │ │ ├── arrays-11.boo │ │ ├── arrays-12.boo │ │ ├── arrays-13.boo │ │ ├── arrays-14.boo │ │ ├── arrays-15.boo │ │ ├── arrays-16.boo │ │ ├── arrays-17.boo │ │ ├── arrays-18.boo │ │ ├── arrays-19.boo │ │ ├── arrays-2.boo │ │ ├── arrays-20.boo │ │ ├── arrays-21.boo │ │ ├── arrays-22.boo │ │ ├── arrays-23.boo │ │ ├── arrays-24.boo │ │ ├── arrays-25.boo │ │ ├── arrays-26.boo │ │ ├── arrays-27.boo │ │ ├── arrays-28.boo │ │ ├── arrays-29.boo │ │ ├── arrays-3.boo │ │ ├── arrays-30.boo │ │ ├── arrays-31.boo │ │ ├── arrays-32.boo │ │ ├── arrays-33.boo │ │ ├── arrays-34.boo │ │ ├── arrays-35.boo │ │ ├── arrays-36.boo │ │ ├── arrays-37.boo │ │ ├── arrays-38.boo │ │ ├── arrays-39.boo │ │ ├── arrays-4.boo │ │ ├── arrays-40.boo │ │ ├── arrays-41.boo │ │ ├── arrays-42.boo │ │ ├── arrays-43.boo │ │ ├── arrays-44.boo │ │ ├── arrays-5.boo │ │ ├── arrays-6.boo │ │ ├── arrays-7.boo │ │ ├── arrays-8.boo │ │ ├── arrays-9.boo │ │ ├── empty-array-inference-1.boo │ │ ├── empty-array-inference-as-enumerable-of-int.boo │ │ ├── empty-array-inference-as-enumerable.boo │ │ ├── empty-array-inference-as-object.boo │ │ ├── empty-array-inference-in-closure.boo │ │ ├── empty-array-inference-with-varargs.boo │ │ ├── matrix-with-type-reference.boo │ │ ├── per-module-raw-array-indexing.boo │ │ └── rawarrayindexing-1.boo │ ├── attributes │ │ ├── assembly-attributes-1.boo │ │ ├── assembly-attributes-2.boo │ │ ├── attributes-1.boo │ │ ├── attributes-2.boo │ │ ├── attributes-3.boo │ │ ├── attributes-4.boo │ │ ├── attributes-5.boo │ │ ├── attributes-6.boo │ │ ├── attributes-7.boo │ │ ├── attributes-8.boo │ │ ├── conditionalattribute-1.boo │ │ ├── conditionalattribute-2.boo │ │ ├── conditionalattribute-3.boo │ │ ├── conditionalattribute-4.boo │ │ ├── module-ast-attribute.boo │ │ ├── ns_alias_on_attribute.boo │ │ ├── transient.boo │ │ ├── varargs-attribute-external.boo │ │ └── varargs-attribute-internal.boo │ ├── callables │ │ ├── byref-1.boo │ │ ├── byref-10.boo │ │ ├── byref-11.boo │ │ ├── byref-12.boo │ │ ├── byref-13.boo │ │ ├── byref-14.boo │ │ ├── byref-2.boo │ │ ├── byref-3.boo │ │ ├── byref-4.boo │ │ ├── byref-5.boo │ │ ├── byref-6.boo │ │ ├── byref-7.boo │ │ ├── byref-8.boo │ │ ├── byref-9.boo │ │ ├── callables-1.boo │ │ ├── callables-10.boo │ │ ├── callables-11.boo │ │ ├── callables-12.boo │ │ ├── callables-13.boo │ │ ├── callables-14.boo │ │ ├── callables-15.boo │ │ ├── callables-16.boo │ │ ├── callables-17.boo │ │ ├── callables-18.boo │ │ ├── callables-19.boo │ │ ├── callables-2.boo │ │ ├── callables-20.boo │ │ ├── callables-21.boo │ │ ├── callables-22.boo │ │ ├── callables-23.boo │ │ ├── callables-24.boo │ │ ├── callables-25.boo │ │ ├── callables-26.boo │ │ ├── callables-27.boo │ │ ├── callables-28.boo │ │ ├── callables-29.boo │ │ ├── callables-3.boo │ │ ├── callables-30.boo │ │ ├── callables-31.boo │ │ ├── callables-32.boo │ │ ├── callables-33.boo │ │ ├── callables-34.boo │ │ ├── callables-35.boo │ │ ├── callables-36.boo │ │ ├── callables-37.boo │ │ ├── callables-38.boo │ │ ├── callables-39.boo │ │ ├── callables-4.boo │ │ ├── callables-40.boo │ │ ├── callables-41.boo │ │ ├── callables-42.boo │ │ ├── callables-43.boo │ │ ├── callables-44.boo │ │ ├── callables-45.boo │ │ ├── callables-46.boo │ │ ├── callables-47.boo │ │ ├── callables-48.boo │ │ ├── callables-49.boo │ │ ├── callables-5.boo │ │ ├── callables-50.boo │ │ ├── callables-6.boo │ │ ├── callables-7.boo │ │ ├── callables-8.boo │ │ ├── callables-9.boo │ │ ├── callables-as-ternary-operands.boo │ │ ├── callables-as-ternay-operands-invocation.boo │ │ ├── delegates-1.boo │ │ ├── delegates-10.boo │ │ ├── delegates-11.boo │ │ ├── delegates-12.boo │ │ ├── delegates-13.boo │ │ ├── delegates-14.boo │ │ ├── delegates-15.boo │ │ ├── delegates-16.boo │ │ ├── delegates-17.boo │ │ ├── delegates-18.boo │ │ ├── delegates-2.boo │ │ ├── delegates-3.boo │ │ ├── delegates-4.boo │ │ ├── delegates-5.boo │ │ ├── delegates-6.boo │ │ ├── delegates-7.boo │ │ ├── delegates-8.boo │ │ ├── delegates-9.boo │ │ ├── generic-dict-of-anonymous-callable.boo │ │ ├── method-as-macro-1.boo │ │ ├── method-as-macro-2.boo │ │ ├── method-as-macro-3.boo │ │ ├── method-invocations-1.boo │ │ ├── out-1.boo │ │ ├── out-2.boo │ │ ├── out-3.boo │ │ ├── overload-resolution-1.boo │ │ ├── overload-resolution-2.boo │ │ ├── params-1.boo │ │ ├── params-2.boo │ │ ├── params-3.boo │ │ ├── params-4.boo │ │ ├── params-5.boo │ │ ├── params-6.boo │ │ ├── params-7.boo │ │ └── params-8.boo │ ├── closures │ │ ├── closure-inference-1.boo │ │ ├── closure-inference-2.boo │ │ ├── closure-inference-3.boo │ │ ├── closure-inference-4.boo │ │ ├── closure-inference-5.boo │ │ ├── closure-inference-6.boo │ │ ├── closure-inference-7.boo │ │ ├── closures-1.boo │ │ ├── closures-10.boo │ │ ├── closures-11.boo │ │ ├── closures-12.boo │ │ ├── closures-13.boo │ │ ├── closures-14.boo │ │ ├── closures-15.boo │ │ ├── closures-16.boo │ │ ├── closures-17.boo │ │ ├── closures-18.boo │ │ ├── closures-19.boo │ │ ├── closures-2.boo │ │ ├── closures-20.boo │ │ ├── closures-21.boo │ │ ├── closures-22.boo │ │ ├── closures-23.boo │ │ ├── closures-24.boo │ │ ├── closures-25.boo │ │ ├── closures-26.boo │ │ ├── closures-27.boo │ │ ├── closures-28.boo │ │ ├── closures-29.boo │ │ ├── closures-3.boo │ │ ├── closures-30.boo │ │ ├── closures-31.boo │ │ ├── closures-4.boo │ │ ├── closures-5.boo │ │ ├── closures-6.boo │ │ ├── closures-7.boo │ │ ├── closures-8.boo │ │ ├── closures-9.boo │ │ ├── explicit-closure-types-for-generic-method.boo │ │ ├── nested-functions-1.boo │ │ ├── nested-functions-2.boo │ │ ├── nested-functions-3.boo │ │ └── nested-functions-4.boo │ ├── clr-extensions │ │ ├── clrextensions-1.boo │ │ ├── clrextensions-2.boo │ │ └── infer-closure-singature.boo │ ├── clr │ │ └── RealProxy-1.boo │ ├── duck-typing │ │ ├── duck-1.boo │ │ ├── duck-10.boo │ │ ├── duck-11.boo │ │ ├── duck-12.boo │ │ ├── duck-13.boo │ │ ├── duck-14.boo │ │ ├── duck-15.boo │ │ ├── duck-16.boo │ │ ├── duck-17.boo │ │ ├── duck-18.boo │ │ ├── duck-19.boo │ │ ├── duck-2.boo │ │ ├── duck-20.boo │ │ ├── duck-21.boo │ │ ├── duck-3.boo │ │ ├── duck-4.boo │ │ ├── duck-5.boo │ │ ├── duck-6.boo │ │ ├── duck-7.boo │ │ ├── duck-8.boo │ │ ├── duck-9.boo │ │ ├── exceptions-1.boo │ │ ├── exceptions-2.boo │ │ ├── exceptions-3.boo │ │ ├── exceptions-4.boo │ │ ├── exceptions-5.boo │ │ ├── exceptions-6.boo │ │ ├── exceptions-7.boo │ │ ├── exceptions-8.boo │ │ ├── exceptions-9.boo │ │ ├── indexer-1.boo │ │ ├── promotion-1.boo │ │ ├── promotion-2.boo │ │ ├── promotion-3.boo │ │ ├── promotion-4.boo │ │ ├── promotion-5.boo │ │ ├── runtime-extensions-1.boo │ │ └── runtime-extensions-2.boo │ ├── extensions │ │ ├── extension-properties-1.boo │ │ ├── extensions-1.boo │ │ ├── extensions-2.boo │ │ ├── extensions-3.boo │ │ ├── extensions-4.boo │ │ ├── extensions-5.boo │ │ ├── extensions-6.boo │ │ ├── extensions-7.boo │ │ ├── extensions-8.boo │ │ ├── extensions-9.boo │ │ ├── extensions-for-self-1.boo │ │ ├── extensions-for-self-2.boo │ │ ├── generic-extension-1.boo │ │ ├── generic-extension-2.boo │ │ ├── generic-extension-3.boo │ │ ├── generic-extension-4.boo │ │ ├── generic-extension-5.boo │ │ ├── generic-extension-overloads-in-generic-invocations.boo │ │ ├── implicit-conversion-extension-1.boo │ │ ├── implicit-conversion-extension-2.boo │ │ └── per-module-extensions.boo │ ├── generators │ │ ├── generator-calling-external-super-with-arguments-2.boo │ │ ├── generator-calling-external-super-with-arguments.boo │ │ ├── generator-calling-super-with-arguments-2.boo │ │ ├── generator-calling-super-with-arguments.boo │ │ ├── generator-calling-super.boo │ │ ├── generator-of-static-class-is-transient.boo │ │ ├── generator-of-transient-class-is-transient.boo │ │ ├── generators-1.boo │ │ ├── generators-10.boo │ │ ├── generators-11.boo │ │ ├── generators-12.boo │ │ ├── generators-13.boo │ │ ├── generators-14.boo │ │ ├── generators-15.boo │ │ ├── generators-16.boo │ │ ├── generators-17.boo │ │ ├── generators-18.boo │ │ ├── generators-19.boo │ │ ├── generators-2.boo │ │ ├── generators-20.boo │ │ ├── generators-21.boo │ │ ├── generators-3.boo │ │ ├── generators-4.boo │ │ ├── generators-5.boo │ │ ├── generators-6.boo │ │ ├── generators-7.boo │ │ ├── generators-8.boo │ │ ├── generators-9.boo │ │ ├── generic-generator-1.boo │ │ ├── label-issue-1.boo │ │ ├── list-generators-1.boo │ │ ├── list-generators-2.boo │ │ ├── list-generators-3.boo │ │ ├── list-generators-4.boo │ │ ├── list-generators-5.boo │ │ ├── to-string.boo │ │ ├── yield-1.boo │ │ ├── yield-10.boo │ │ ├── yield-11.boo │ │ ├── yield-12.boo │ │ ├── yield-13.boo │ │ ├── yield-14.boo │ │ ├── yield-15.boo │ │ ├── yield-16.boo │ │ ├── yield-17.boo │ │ ├── yield-2.boo │ │ ├── yield-3.boo │ │ ├── yield-4.boo │ │ ├── yield-5.boo │ │ ├── yield-6.boo │ │ ├── yield-7.boo │ │ ├── yield-8.boo │ │ ├── yield-9.boo │ │ ├── yield-null-as-IEnumerator.boo │ │ └── yield-null.boo │ ├── linq │ │ ├── array-linq.boo │ │ ├── linq-aggregate.boo │ │ ├── linq-extensions-1.boo │ │ ├── linq-extensions-2.boo │ │ └── overload-resolution-extension.boo │ ├── meta-programming │ │ ├── CodeReifierMergeIntoWithEmptyArrayLiteral.boo │ │ ├── CodeReifierMergeIntoWithEvent.boo │ │ ├── CodeReifierMergeIntoWithGenerators.boo │ │ ├── CodeReifierMergeIntoWithMacros.boo │ │ ├── CodeReifierMergeIntoWithMultipleMethods.boo │ │ ├── CodeReifierMergeIntoWithMultipleProperties.boo │ │ ├── CodeReifierMergeIntoWithNestedGenericStruct.boo │ │ ├── CodeReifierMergeIntoWithNestedTypes.boo │ │ ├── CodeReifierMergeIntoWithNestedTypesInDifferentOrder.boo │ │ ├── CodeReifierMergeIntoWithProperties.boo │ │ ├── CodeReifierMergeIntoWithStatementModifiers.boo │ │ ├── auto-lift-1.boo │ │ ├── auto-lift-2.boo │ │ ├── block-lift.boo │ │ ├── class-body-splicing-1.boo │ │ ├── class-name-splicing-1.boo │ │ ├── class-name-splicing-2.boo │ │ ├── compile-1.boo │ │ ├── compile-2.boo │ │ ├── field-splicing-1.boo │ │ ├── field-splicing-in-expression-becomes-reference-to-field.boo │ │ ├── field-splicing-null-initializer.boo │ │ ├── generic-splicing-1.boo │ │ ├── interpolation-splicing-1.boo │ │ ├── interpolation-splicing-2.boo │ │ ├── lexical-info-is-preserved.boo │ │ ├── macro-yielding-selective-import.boo │ │ ├── macro-yielding-types-shouldnt-cause-module-class-to-be-defined.boo │ │ ├── macro-yielding-varargs.boo │ │ ├── meta-methods-1.boo │ │ ├── meta-methods-2.boo │ │ ├── meta-methods-3.boo │ │ ├── meta-methods-4.boo │ │ ├── meta-methods-5.boo │ │ ├── meta-methods-6.boo │ │ ├── meta-methods-can-return-null.boo │ │ ├── meta-methods-with-closure.boo │ │ ├── meta-methods-with-generator.boo │ │ ├── meta-methods-with-macro.boo │ │ ├── meta-methods-with-modifier-inside-closure.boo │ │ ├── meta-methods-with-statement-modifier.boo │ │ ├── name-splicing-1.boo │ │ ├── name-splicing-2.boo │ │ ├── name-splicing-3.boo │ │ ├── name-splicing-4.boo │ │ ├── name-splicing-5.boo │ │ ├── name-splicing-6.boo │ │ ├── parameter-splicing-1.boo │ │ ├── parameter-splicing-2.boo │ │ ├── parameter-splicing-3.boo │ │ ├── property-splicing-1.boo │ │ ├── quasi-quotation-1.boo │ │ ├── quasi-quotation-2.boo │ │ ├── quasi-quotation-3.boo │ │ ├── quasi-quotation-4.boo │ │ ├── reification-1.boo │ │ ├── splicing-1.boo │ │ ├── splicing-2.boo │ │ ├── splicing-3.boo │ │ ├── splicing-4.boo │ │ ├── splicing-5.boo │ │ ├── splicing-6.boo │ │ ├── splicing-7.boo │ │ ├── splicing-8.boo │ │ ├── splicing-9.boo │ │ ├── splicing-reference-into-enum-body.boo │ │ ├── typedef-splicing-1.boo │ │ ├── typeref-splicing-1.boo │ │ ├── typeref-splicing-2.boo │ │ ├── typeref-splicing-3.boo │ │ ├── typeref-splicing-4.boo │ │ ├── typeref-splicing-5.boo │ │ └── typeref-splicing-null.boo │ ├── modules │ │ ├── dotted.module.name.boo │ │ ├── import-1.boo │ │ ├── import-2.boo │ │ ├── import-3.boo │ │ ├── import-4.boo │ │ ├── import-5.boo │ │ ├── import-6.boo │ │ ├── import-7.boo │ │ ├── import-8.boo │ │ ├── import-9.boo │ │ ├── modules-1.boo │ │ ├── modules-2.boo │ │ ├── modules-3.boo │ │ ├── modules-4.boo │ │ ├── modules-5.boo │ │ ├── modules-6.boo │ │ └── peek.a.boo │ ├── operators │ │ ├── and-1.boo │ │ ├── and-2.boo │ │ ├── bitwise-and-1.boo │ │ ├── bitwise-and-2.boo │ │ ├── bitwise-or-1.boo │ │ ├── bitwise-or-2.boo │ │ ├── cast-1.boo │ │ ├── cast-2.boo │ │ ├── cast-3.boo │ │ ├── cast-4.boo │ │ ├── cast-5.boo │ │ ├── cast-6.boo │ │ ├── cast-7.boo │ │ ├── cast-8.boo │ │ ├── cast-9.boo │ │ ├── conditional-1.boo │ │ ├── explode-1.boo │ │ ├── explode-2.boo │ │ ├── explode-3.boo │ │ ├── exponential-1.boo │ │ ├── in-1.boo │ │ ├── is-1.boo │ │ ├── is-2.boo │ │ ├── isa-1.boo │ │ ├── isa-2.boo │ │ ├── isa-3.boo │ │ ├── not-1.boo │ │ ├── ones-complement-1.boo │ │ ├── operators-1.boo │ │ ├── or-1.boo │ │ ├── or-2.boo │ │ ├── or-3.boo │ │ ├── or-4.boo │ │ ├── post-incdec-1.boo │ │ ├── post-incdec-2.boo │ │ ├── post-incdec-3.boo │ │ ├── post-incdec-4.boo │ │ ├── post-incdec-5.boo │ │ ├── post-incdec-6.boo │ │ ├── post-incdec-7.boo │ │ ├── shift-1.boo │ │ ├── slicing-1.boo │ │ ├── slicing-10.boo │ │ ├── slicing-11.boo │ │ ├── slicing-12.boo │ │ ├── slicing-13.boo │ │ ├── slicing-2.boo │ │ ├── slicing-3.boo │ │ ├── slicing-4.boo │ │ ├── slicing-5.boo │ │ ├── slicing-6.boo │ │ ├── slicing-7.boo │ │ ├── slicing-8.boo │ │ ├── slicing-9.boo │ │ ├── slicing-md-1.boo │ │ ├── slicing-md-2.boo │ │ ├── slicing-md-3.boo │ │ ├── slicing-md-4.boo │ │ ├── unary-1.boo │ │ ├── unary-2.boo │ │ ├── unary-3.boo │ │ └── xor-1.boo │ ├── primitives │ │ ├── __switch__-1.boo │ │ ├── at-operator.boo │ │ ├── bool-1.boo │ │ ├── char-1.boo │ │ ├── char-2.boo │ │ ├── char-3.boo │ │ ├── char-4.boo │ │ ├── char-5.boo │ │ ├── checked-1.boo │ │ ├── decimal-1.boo │ │ ├── default-1.boo │ │ ├── double-as-bool-1.boo │ │ ├── double-precision-is-used-for-literals.boo │ │ ├── hash-1.boo │ │ ├── hex-1.boo │ │ ├── hex-2.boo │ │ ├── implicit-casts-1.boo │ │ ├── int-shift-overflow-checked.boo │ │ ├── int-shift-overflow-unchecked.boo │ │ ├── interpolation-1.boo │ │ ├── len-1.boo │ │ ├── list-1.boo │ │ ├── list-2.boo │ │ ├── list-3.boo │ │ ├── long-1.boo │ │ ├── primitives-1.boo │ │ ├── promotion-1.boo │ │ ├── promotion-2.boo │ │ ├── regex-1.boo │ │ ├── single-as-bool-1.boo │ │ ├── string-1.boo │ │ ├── string-yields-chars.boo │ │ ├── typeof-1.boo │ │ ├── typeof-2.boo │ │ ├── uint-1.boo │ │ ├── uint-argument.boo │ │ ├── uint-field-initializer.boo │ │ ├── ulong-bitshift.boo │ │ ├── unsigned-1.boo │ │ └── unsigned-2.boo │ ├── statements │ │ ├── break-1.boo │ │ ├── break-2.boo │ │ ├── continue-1.boo │ │ ├── continue-2.boo │ │ ├── declaration-1.boo │ │ ├── declaration-2.boo │ │ ├── declaration-3.boo │ │ ├── except-1.boo │ │ ├── except-10.boo │ │ ├── except-11.boo │ │ ├── except-12.boo │ │ ├── except-13.boo │ │ ├── except-14.boo │ │ ├── except-2.boo │ │ ├── except-3.boo │ │ ├── except-4.boo │ │ ├── except-5.boo │ │ ├── except-6.boo │ │ ├── except-7.boo │ │ ├── except-8.boo │ │ ├── except-9.boo │ │ ├── failure-1.boo │ │ ├── failure-2.boo │ │ ├── failure-3.boo │ │ ├── failure-4.boo │ │ ├── failure-5.boo │ │ ├── failure-6.boo │ │ ├── filter-1.boo │ │ ├── filter-2.boo │ │ ├── filter-3.boo │ │ ├── for-1.boo │ │ ├── for-10.boo │ │ ├── for-2.boo │ │ ├── for-3.boo │ │ ├── for-4.boo │ │ ├── for-5.boo │ │ ├── for-6.boo │ │ ├── for-6B.boo │ │ ├── for-7.boo │ │ ├── for-8.boo │ │ ├── for-9.boo │ │ ├── for-array-1.boo │ │ ├── for-array-2.boo │ │ ├── for-var-reuse.boo │ │ ├── for_or-1.boo │ │ ├── for_or-2.boo │ │ ├── for_or-3.boo │ │ ├── for_or-4.boo │ │ ├── for_or_then-1.boo │ │ ├── for_or_then-3.boo │ │ ├── for_or_then-4.boo │ │ ├── for_or_then-5.boo │ │ ├── for_then-1.boo │ │ ├── for_then-2.boo │ │ ├── for_then-3.boo │ │ ├── for_then-4.boo │ │ ├── goto-1.boo │ │ ├── goto-2.boo │ │ ├── goto-3.boo │ │ ├── goto-4.boo │ │ ├── goto-5.boo │ │ ├── goto-6.boo │ │ ├── raise-1.boo │ │ ├── reraise-1.boo │ │ ├── reraise-2.boo │ │ ├── try-1.boo │ │ ├── try-2.boo │ │ ├── try-3.boo │ │ ├── unpack-1.boo │ │ ├── unpack-10.boo │ │ ├── unpack-11.boo │ │ ├── unpack-12.boo │ │ ├── unpack-13.boo │ │ ├── unpack-2.boo │ │ ├── unpack-3.boo │ │ ├── unpack-4.boo │ │ ├── unpack-5.boo │ │ ├── unpack-6.boo │ │ ├── unpack-7.boo │ │ ├── unpack-8.boo │ │ ├── unpack-9.boo │ │ ├── while-1.boo │ │ ├── while-2.boo │ │ ├── while-3.boo │ │ ├── while-4.boo │ │ ├── while-5.boo │ │ ├── while-6.boo │ │ ├── while-7.boo │ │ ├── while-8.boo │ │ ├── while_or-1.boo │ │ ├── while_or-2.boo │ │ ├── while_or-3.boo │ │ ├── while_or-4.boo │ │ ├── while_or_then-1.boo │ │ ├── while_or_then-4.boo │ │ ├── while_or_then-5.boo │ │ ├── while_then-1.boo │ │ ├── while_then-2.boo │ │ ├── while_then-3.boo │ │ └── while_then-4.boo │ └── types │ │ ├── abstract-1.boo │ │ ├── abstract-2.boo │ │ ├── abstract-3.boo │ │ ├── abstract-4.boo │ │ ├── automatic-stubs-for-interface-methods.boo │ │ ├── baseclass-1.boo │ │ ├── baseclass-2.boo │ │ ├── baseclass-3.boo │ │ ├── baseclass-4.boo │ │ ├── baseclass-5.boo │ │ ├── classes-1.boo │ │ ├── classes-10.boo │ │ ├── classes-11.boo │ │ ├── classes-2.boo │ │ ├── classes-3.boo │ │ ├── classes-4.boo │ │ ├── classes-5.boo │ │ ├── classes-6.boo │ │ ├── classes-7.boo │ │ ├── classes-8.boo │ │ ├── classes-9.boo │ │ ├── constructor-return-1.boo │ │ ├── constructors-1.boo │ │ ├── enum-cast-to-single.boo │ │ ├── enums-1.boo │ │ ├── enums-10.boo │ │ ├── enums-11.boo │ │ ├── enums-12.boo │ │ ├── enums-13.boo │ │ ├── enums-14.boo │ │ ├── enums-15.boo │ │ ├── enums-16.boo │ │ ├── enums-17.boo │ │ ├── enums-2.boo │ │ ├── enums-3.boo │ │ ├── enums-4.boo │ │ ├── enums-5.boo │ │ ├── enums-6.boo │ │ ├── enums-7.boo │ │ ├── enums-8.boo │ │ ├── enums-9.boo │ │ ├── events-1.boo │ │ ├── events-2.boo │ │ ├── events-3.boo │ │ ├── events-4.boo │ │ ├── events-5.boo │ │ ├── events-6.boo │ │ ├── events-7.boo │ │ ├── explicit-interface-1.boo │ │ ├── explicit-interface-2.boo │ │ ├── explicit-interface-3.boo │ │ ├── explicit-interface-4.boo │ │ ├── explicit-value-type-conversion-operator.boo │ │ ├── fields-1.boo │ │ ├── fields-2.boo │ │ ├── fields-3.boo │ │ ├── fields-4.boo │ │ ├── fields-5.boo │ │ ├── fields-6.boo │ │ ├── fields-7.boo │ │ ├── fields-8.boo │ │ ├── fields-9.boo │ │ ├── implicit-1.boo │ │ ├── implicit-2.boo │ │ ├── implicit-3.boo │ │ ├── implicit-4.boo │ │ ├── implicit-5.boo │ │ ├── implicit-bool-1.boo │ │ ├── implicit-bool-2.boo │ │ ├── implicit-bool-3.boo │ │ ├── implicit-bool-4.boo │ │ ├── implicit-bool-5.boo │ │ ├── implicit-bool-6.boo │ │ ├── implicit-bool-7.boo │ │ ├── implicit-bool-8.boo │ │ ├── implicit-bool-with-shortcircuited-and-condition.boo │ │ ├── implicit-runtime-conversion.boo │ │ ├── innerclasses-1.boo │ │ ├── innerclasses-10.boo │ │ ├── innerclasses-11.boo │ │ ├── innerclasses-12.boo │ │ ├── innerclasses-2.boo │ │ ├── innerclasses-3.boo │ │ ├── innerclasses-4.boo │ │ ├── innerclasses-5.boo │ │ ├── innerclasses-6.boo │ │ ├── innerclasses-7.boo │ │ ├── innerclasses-8.boo │ │ ├── innerclasses-9.boo │ │ ├── interface-implementation-inheritance-1.boo │ │ ├── interface-implementation-inheritance-2.boo │ │ ├── interface-implementation-inheritance-3.boo │ │ ├── interface-implementation-inheritance-4.boo │ │ ├── interface-implementation-inheritance-5.boo │ │ ├── interfaces-1.boo │ │ ├── interfaces-10.boo │ │ ├── interfaces-11.boo │ │ ├── interfaces-12.boo │ │ ├── interfaces-13.boo │ │ ├── interfaces-14.boo │ │ ├── interfaces-15.boo │ │ ├── interfaces-16.boo │ │ ├── interfaces-17.boo │ │ ├── interfaces-19.boo │ │ ├── interfaces-2.boo │ │ ├── interfaces-20.boo │ │ ├── interfaces-21.boo │ │ ├── interfaces-22.boo │ │ ├── interfaces-3.boo │ │ ├── interfaces-4.boo │ │ ├── interfaces-5.boo │ │ ├── interfaces-6.boo │ │ ├── interfaces-7.boo │ │ ├── interfaces-8.boo │ │ ├── interfaces-9.boo │ │ ├── internal-base-type-is-preferred.boo │ │ ├── internal-event-initializer.boo │ │ ├── internal-field-initializer.boo │ │ ├── internal-property-initializer.boo │ │ ├── local-hiding-field.boo │ │ ├── method-shadowing-1.boo │ │ ├── method-shadowing-2.boo │ │ ├── method-shadowing-3.boo │ │ ├── method-shadowing-4.boo │ │ ├── methods-1.boo │ │ ├── methods-2.boo │ │ ├── methods-3.boo │ │ ├── methods-4.boo │ │ ├── methods-5.boo │ │ ├── methods-6.boo │ │ ├── methods-7.boo │ │ ├── name-lookup-1.boo │ │ ├── name-lookup-2.boo │ │ ├── negative-enum-value.boo │ │ ├── overloading-1.boo │ │ ├── overloading-2.boo │ │ ├── overloading-3.boo │ │ ├── overloading-4.boo │ │ ├── overloading-5.boo │ │ ├── overloading-6.boo │ │ ├── overloading-7.boo │ │ ├── overloading-8.boo │ │ ├── override-1.boo │ │ ├── override-2.boo │ │ ├── override-3.boo │ │ ├── override-4.boo │ │ ├── override-5.boo │ │ ├── partial-1.boo │ │ ├── partial-2.boo │ │ ├── partial-class-with-nested-types.boo │ │ ├── partial-enums.boo │ │ ├── partial-interfaces.boo │ │ ├── properties-1.boo │ │ ├── properties-10.boo │ │ ├── properties-11.boo │ │ ├── properties-12.boo │ │ ├── properties-13.boo │ │ ├── properties-14.boo │ │ ├── properties-15.boo │ │ ├── properties-16.boo │ │ ├── properties-17.boo │ │ ├── properties-18.boo │ │ ├── properties-19.boo │ │ ├── properties-2.boo │ │ ├── properties-20.boo │ │ ├── properties-21.boo │ │ ├── properties-22.boo │ │ ├── properties-23.boo │ │ ├── properties-24.boo │ │ ├── properties-25.boo │ │ ├── properties-26.boo │ │ ├── properties-27.boo │ │ ├── properties-28.boo │ │ ├── properties-29.boo │ │ ├── properties-3.boo │ │ ├── properties-30.boo │ │ ├── properties-31.boo │ │ ├── properties-32.boo │ │ ├── properties-33.boo │ │ ├── properties-4.boo │ │ ├── properties-5.boo │ │ ├── properties-6.boo │ │ ├── properties-7.boo │ │ ├── properties-8.boo │ │ ├── properties-9.boo │ │ ├── reserved-keywords-1.boo │ │ ├── static-1.boo │ │ ├── static-2.boo │ │ ├── static-CompilerGlobalScope-class-is-sealed-and-abstract.boo │ │ ├── static-class-is-sealed-abstract-and-transient.boo │ │ ├── static-final-1.boo │ │ ├── static-final-2.boo │ │ ├── super-1.boo │ │ ├── super-2.boo │ │ ├── super-3.boo │ │ ├── value-type-propagation-1.boo │ │ ├── value-types-1.boo │ │ ├── value-types-10.boo │ │ ├── value-types-11.boo │ │ ├── value-types-12.boo │ │ ├── value-types-13.boo │ │ ├── value-types-14.boo │ │ ├── value-types-15.boo │ │ ├── value-types-16.boo │ │ ├── value-types-17.boo │ │ ├── value-types-18.boo │ │ ├── value-types-19.boo │ │ ├── value-types-2.boo │ │ ├── value-types-20.boo │ │ ├── value-types-21.boo │ │ ├── value-types-3.boo │ │ ├── value-types-4.boo │ │ ├── value-types-5.boo │ │ ├── value-types-6.boo │ │ ├── value-types-7.boo │ │ ├── value-types-8.boo │ │ └── value-types-9.boo │ ├── macros │ ├── assert-1.boo │ ├── custom-class-macro-as-generic-argument.boo │ ├── custom-class-macro-with-internal-field.boo │ ├── custom-class-macro-with-internal-property.boo │ ├── custom-class-macro-with-method-override.boo │ ├── custom-class-macro-with-properties-and-field.boo │ ├── custom-class-macro-with-properties.boo │ ├── custom-class-macro-with-property-macro.boo │ ├── custom-class-macro-with-simple-method-and-field.boo │ ├── custom-class-macro-with-simple-method.boo │ ├── debug-1.boo │ ├── generator-macro-1.boo │ ├── generator-macro-2.boo │ ├── generator-macro-3.boo │ ├── generator-macro-4.boo │ ├── generator-macro-5.boo │ ├── ifdef-1.boo │ ├── internal-macro-is-preferred.boo │ ├── macro-1.boo │ ├── macro-2.boo │ ├── macro-3.boo │ ├── macro-4.boo │ ├── macro-5.boo │ ├── macro-arguments-1.boo │ ├── macro-arguments-2.boo │ ├── macro-attribute-fpa.boo │ ├── macro-case-1.boo │ ├── macro-case-otherwise-2.boo │ ├── macro-case-otherwise.boo │ ├── macro-expansion-order-1.boo │ ├── macro-imports-1.boo │ ├── macro-should-be-able-to-reach-module.boo │ ├── macro-yielding-generic-class.boo │ ├── macro-yielding-generic-method-1.boo │ ├── macro-yielding-partial-enum-with-existing-partial-definition.boo │ ├── macro-yielding-partial-enums.boo │ ├── member-macro-changing-all-sibling-method-bodies.boo │ ├── member-macro-contributing-initialization-code.boo │ ├── member-macro-initialization-order.boo │ ├── member-macro-nodes-inherit-visibility-and-attributes.boo │ ├── member-macro-nodes-inherit-visibility-only-when-not-set.boo │ ├── member-macro-producing-field-and-constructor.boo │ ├── member-macro-producing-field-and-property.boo │ ├── nested-macros-1.boo │ ├── nested-macros-2.boo │ ├── nested-macros-3.boo │ ├── nested-macros-4.boo │ ├── nested-macros-5.boo │ ├── nested-macros-6.boo │ ├── nested-macros-7.boo │ ├── nested-macros-8.boo │ ├── nested-macros.boo │ ├── preserving-1.boo │ ├── print-1.boo │ ├── print-2.boo │ ├── then-can-be-used-as-macro-name.boo │ ├── type-member-macro-yielding-member-with-member-generating-attribute.boo │ ├── using-1.boo │ ├── using-2.boo │ ├── using-3.boo │ ├── using-4.boo │ ├── using-5.boo │ ├── yieldAll-1.boo │ └── yieldAll-2.boo │ ├── net2 │ ├── errors │ │ ├── BCE0004-1.boo │ │ ├── BCE0138-1.boo │ │ ├── BCE0138-2.boo │ │ ├── BCE0139-1.boo │ │ ├── BCE0139-2.boo │ │ ├── BCE0139-3.boo │ │ ├── BCE0139-4.boo │ │ ├── BCE0139-5.boo │ │ ├── BCE0147-external.boo │ │ ├── BCE0149-1.boo │ │ ├── BCE0149-2.boo │ │ ├── BCE0149-3.boo │ │ ├── BCE0149-4.boo │ │ ├── BCE0149-external.boo │ │ ├── BCE0159.boo │ │ ├── BCE0160.boo │ │ ├── BCE0161-1.boo │ │ ├── BCE0161-2.boo │ │ ├── BCE0162-1.boo │ │ ├── BCE0162-2.boo │ │ ├── BCE0162-3.boo │ │ ├── BCE0162-4.boo │ │ ├── BCE0162-5.boo │ │ ├── BCE0162-6.boo │ │ ├── BCE0162-7.boo │ │ ├── BCE0163.boo │ │ ├── BCE0164-1.boo │ │ ├── BCE0164-2.boo │ │ ├── BCE0164-3.boo │ │ └── BCE0164-4.boo │ └── generics │ │ ├── ambiguous-1.boo │ │ ├── array-enumerable-1.boo │ │ ├── array-enumerable-2.boo │ │ ├── automatic-generic-method-stub.boo │ │ ├── callable-1.boo │ │ ├── callable-2.boo │ │ ├── collections-1.boo │ │ ├── collections-2.boo │ │ ├── enumerable-shorthand-1.boo │ │ ├── enumerable-type-inference-1.boo │ │ ├── enumerable-type-inference-2.boo │ │ ├── enumerable-type-inference-4.boo │ │ ├── enumerable-type-inference-5.boo │ │ ├── generator-with-type-constraint-1.boo │ │ ├── generators-1.boo │ │ ├── generators-2.boo │ │ ├── generators-3.boo │ │ ├── generators-4.boo │ │ ├── generators-5.boo │ │ ├── generators-6.boo │ │ ├── generators-7.boo │ │ ├── generic-array-1.boo │ │ ├── generic-array-2.boo │ │ ├── generic-array-3.boo │ │ ├── generic-extension-1.boo │ │ ├── generic-extension-2.boo │ │ ├── generic-field-1.boo │ │ ├── generic-generator-type-1.boo │ │ ├── generic-inheritance-1.boo │ │ ├── generic-instance-overload.boo │ │ ├── generic-list-of-callable.boo │ │ ├── generic-matrix-1.boo │ │ ├── generic-method-1.boo │ │ ├── generic-method-2.boo │ │ ├── generic-method-3.boo │ │ ├── generic-method-4.boo │ │ ├── generic-method-5.boo │ │ ├── generic-method-invocation-1.boo │ │ ├── generic-method-invocation-2.boo │ │ ├── generic-overload-1.boo │ │ ├── generic-overload-2.boo │ │ ├── generic-overload-3.boo │ │ ├── generic-overload-4.boo │ │ ├── generic-overload-5.boo │ │ ├── generic-overload-6.boo │ │ ├── generic-ref-parameter.boo │ │ ├── generic-type-resolution-1.boo │ │ ├── generic-type-resolution-2.boo │ │ ├── generic-type-resolution-3.boo │ │ ├── inference-1.boo │ │ ├── inference-10.boo │ │ ├── inference-2.boo │ │ ├── inference-3.boo │ │ ├── inference-4.boo │ │ ├── inference-5.boo │ │ ├── inference-6.boo │ │ ├── inference-7.boo │ │ ├── inference-8.boo │ │ ├── inference-9.boo │ │ ├── inheritance-1.boo │ │ ├── inheritance-2.boo │ │ ├── inheritance-3.boo │ │ ├── interface-1.boo │ │ ├── interface-with-generic-method.boo │ │ ├── internal-generic-callable-type-1.boo │ │ ├── internal-generic-callable-type-2.boo │ │ ├── internal-generic-callable-type-3.boo │ │ ├── internal-generic-type-1.boo │ │ ├── internal-generic-type-10.boo │ │ ├── internal-generic-type-11.boo │ │ ├── internal-generic-type-2.boo │ │ ├── internal-generic-type-3.boo │ │ ├── internal-generic-type-4.boo │ │ ├── internal-generic-type-5.boo │ │ ├── internal-generic-type-6.boo │ │ ├── internal-generic-type-7.boo │ │ ├── internal-generic-type-8.boo │ │ ├── internal-generic-type-9.boo │ │ ├── method-ref-1.boo │ │ ├── mixed-1.boo │ │ ├── mixed-2.boo │ │ ├── mixed-3.boo │ │ ├── mixed-4.boo │ │ ├── mixed-ref-parameter-1.boo │ │ ├── mixed-ref-parameter-2.boo │ │ ├── mixedbase.dll │ │ ├── naked-type-constraints-1.boo │ │ ├── nested-generic-type-1.boo │ │ ├── nullable-1.boo │ │ ├── nullable-2.boo │ │ ├── nullable-3.boo │ │ ├── nullable-4.boo │ │ ├── nullable-5.boo │ │ ├── nullable-6.boo │ │ ├── override-1.boo │ │ ├── override-2.boo │ │ ├── override-3.boo │ │ ├── override-4.boo │ │ ├── override-5.boo │ │ ├── type-reference-1.boo │ │ ├── type-reference-2.boo │ │ └── type-reference-3.boo │ ├── not-implemented │ └── generic-parameter-reference-in-nested-type.boo │ ├── parser │ ├── array_list_hash_literals.boo │ ├── class_2.boo │ ├── docstrings_1.boo │ ├── enum_1.boo │ ├── for_stmt_1.boo │ ├── if_else_1.boo │ ├── interface_1.boo │ ├── nonsignificant_ws_regions_1.boo │ ├── properties_1.boo │ ├── re_literal_1.boo │ ├── re_literal_2.boo │ ├── re_literal_3.boo │ ├── roundtrip │ │ ├── and-or-1.boo │ │ ├── arrays-1.boo │ │ ├── arrays-2.boo │ │ ├── arrays-3.boo │ │ ├── arrays-4.boo │ │ ├── arrays-5.boo │ │ ├── arrays-6.boo │ │ ├── as-1.boo │ │ ├── assignment-1.boo │ │ ├── ast-literal-enum.boo │ │ ├── ast-literal-varargs-method.boo │ │ ├── ast-literals-1.boo │ │ ├── ast-literals-10.boo │ │ ├── ast-literals-11.boo │ │ ├── ast-literals-2.boo │ │ ├── ast-literals-3.boo │ │ ├── ast-literals-4.boo │ │ ├── ast-literals-5.boo │ │ ├── ast-literals-6.boo │ │ ├── ast-literals-7.boo │ │ ├── ast-literals-8.boo │ │ ├── ast-literals-9.boo │ │ ├── ast-literals-if-it-looks-like-a-block-1.boo │ │ ├── at-operator.boo │ │ ├── attributes-1.boo │ │ ├── attributes-2.boo │ │ ├── bool-literals-1.boo │ │ ├── callables-1.boo │ │ ├── callables-2.boo │ │ ├── callables-with-varags.boo │ │ ├── cast-1.boo │ │ ├── char-1.boo │ │ ├── char-2.boo │ │ ├── class-1.boo │ │ ├── class-2.boo │ │ ├── class-3.boo │ │ ├── closures-1.boo │ │ ├── closures-10.boo │ │ ├── closures-11.boo │ │ ├── closures-12.boo │ │ ├── closures-13.boo │ │ ├── closures-14.boo │ │ ├── closures-15.boo │ │ ├── closures-16.boo │ │ ├── closures-17.boo │ │ ├── closures-18.boo │ │ ├── closures-19.boo │ │ ├── closures-2.boo │ │ ├── closures-20.boo │ │ ├── closures-21.boo │ │ ├── closures-22.boo │ │ ├── closures-3.boo │ │ ├── closures-4.boo │ │ ├── closures-5.boo │ │ ├── closures-6.boo │ │ ├── closures-7.boo │ │ ├── closures-8.boo │ │ ├── closures-9.boo │ │ ├── collection-initializer.boo │ │ ├── comments-1.boo │ │ ├── comments-2.boo │ │ ├── comments-3.boo │ │ ├── comments-4.boo │ │ ├── conditional-1.boo │ │ ├── declarations-1.boo │ │ ├── declarations-2.boo │ │ ├── declarations-3.boo │ │ ├── double-literals-1.boo │ │ ├── dsl-1.boo │ │ ├── elif-1.boo │ │ ├── elif-2.boo │ │ ├── enumerable-type-shortcut.boo │ │ ├── enums-1.boo │ │ ├── events-1.boo │ │ ├── explode-1.boo │ │ ├── explode-2.boo │ │ ├── expressions-1.boo │ │ ├── expressions-2.boo │ │ ├── expressions-3.boo │ │ ├── expressions-4.boo │ │ ├── expressions-5.boo │ │ ├── extensions-1.boo │ │ ├── fields-1.boo │ │ ├── fields-2.boo │ │ ├── fields-3.boo │ │ ├── fields-4.boo │ │ ├── fields-5.boo │ │ ├── fields-6.boo │ │ ├── for_or-1.boo │ │ ├── for_or_then-1.boo │ │ ├── for_then-1.boo │ │ ├── generators-1.boo │ │ ├── generators-2.boo │ │ ├── generators-3.boo │ │ ├── generic-method-1.boo │ │ ├── generic-method-2.boo │ │ ├── generic-method-3.boo │ │ ├── generic-parameter-constraints.boo │ │ ├── generics-1.boo │ │ ├── generics-2.boo │ │ ├── generics-3.boo │ │ ├── generics-4.boo │ │ ├── generics-5.boo │ │ ├── getset-1.boo │ │ ├── goto-1.boo │ │ ├── goto-2.boo │ │ ├── hash-1.boo │ │ ├── hash-initializer.boo │ │ ├── iif-1.boo │ │ ├── import-1.boo │ │ ├── import-2.boo │ │ ├── in-not-in-1.boo │ │ ├── in-not-in-2.boo │ │ ├── in-not-in-3.boo │ │ ├── inplace-1.boo │ │ ├── internal-generic-callable-type-1.boo │ │ ├── internal-generic-type-1.boo │ │ ├── internal-generic-type-2.boo │ │ ├── internal-generic-type-3.boo │ │ ├── internal-generic-type-4.boo │ │ ├── internal-generic-type-5.boo │ │ ├── internal-generic-type-6.boo │ │ ├── interpolation-1.boo │ │ ├── interpolation-2.boo │ │ ├── interpolation-3.boo │ │ ├── interpolation-4.boo │ │ ├── invocation-1.boo │ │ ├── isa-1.boo │ │ ├── keywords-as-members-1.boo │ │ ├── line-continuation-1.boo │ │ ├── list-1.boo │ │ ├── long-literals-1.boo │ │ ├── macro-doc.boo │ │ ├── macros-1.boo │ │ ├── macros-2.boo │ │ ├── macros-3.boo │ │ ├── macros-anywhere-1.boo │ │ ├── method-declaration-in-macro-application.boo │ │ ├── method-declarations-in-nested-macro-application.boo │ │ ├── module-1.boo │ │ ├── module-2.boo │ │ ├── module-3.boo │ │ ├── named-arguments-1.boo │ │ ├── named-arguments-2.boo │ │ ├── new-1.boo │ │ ├── not-1.boo │ │ ├── not-2.boo │ │ ├── null-1.boo │ │ ├── omitted-member-target-1.boo │ │ ├── ones-complement-1.boo │ │ ├── regex-literals-1.boo │ │ ├── regex-literals-2.boo │ │ ├── return-1.boo │ │ ├── return-2.boo │ │ ├── self-1.boo │ │ ├── semicolons-1.boo │ │ ├── slicing-1.boo │ │ ├── slicing-2.boo │ │ ├── splicing-1.boo │ │ ├── splicing-class-body.boo │ │ ├── splicing-enum-body.boo │ │ ├── string-literals-1.boo │ │ ├── struct-1.boo │ │ ├── timespan-literals-1.boo │ │ ├── try-1.boo │ │ ├── try-2.boo │ │ ├── type-references-1.boo │ │ ├── unless-1.boo │ │ ├── varargs-1.boo │ │ ├── while_or-1.boo │ │ ├── while_or_then-1.boo │ │ ├── while_then-1.boo │ │ ├── xor-1.boo │ │ └── yield-1.boo │ ├── simple.boo │ ├── simple_class_fields.boo │ ├── simple_class_methods.boo │ ├── simple_classes.boo │ ├── simple_global_defs.boo │ ├── static_method.boo │ ├── stmt_modifiers_1.boo │ ├── stmt_modifiers_2.boo │ ├── stmt_modifiers_3.boo │ ├── unicode_ids.boo │ ├── unpack_stmt_1.boo │ ├── while_stmt_1.boo │ ├── wsa │ │ ├── and-or-1.boo │ │ ├── arrays-1.boo │ │ ├── arrays-2.boo │ │ ├── arrays-3.boo │ │ ├── arrays-4.boo │ │ ├── arrays-5.boo │ │ ├── arrays-6.boo │ │ ├── as-1.boo │ │ ├── assignment-1.boo │ │ ├── ast-literal-enum.boo │ │ ├── ast-literal-varargs-method.boo │ │ ├── ast-literals-1.boo │ │ ├── ast-literals-10.boo │ │ ├── ast-literals-11.boo │ │ ├── ast-literals-2.boo │ │ ├── ast-literals-3.boo │ │ ├── ast-literals-4.boo │ │ ├── ast-literals-5.boo │ │ ├── ast-literals-6.boo │ │ ├── ast-literals-7.boo │ │ ├── ast-literals-8.boo │ │ ├── ast-literals-9.boo │ │ ├── ast-literals-if-it-looks-like-a-block-1.boo │ │ ├── at-operator.boo │ │ ├── attributes-1.boo │ │ ├── attributes-2.boo │ │ ├── bool-literals-1.boo │ │ ├── callables-1.boo │ │ ├── callables-2.boo │ │ ├── callables-with-varags.boo │ │ ├── cast-1.boo │ │ ├── char-1.boo │ │ ├── char-2.boo │ │ ├── class-1.boo │ │ ├── class-2.boo │ │ ├── class-3.boo │ │ ├── closures-1.boo │ │ ├── closures-10.boo │ │ ├── closures-11.boo │ │ ├── closures-12.boo │ │ ├── closures-13.boo │ │ ├── closures-14.boo │ │ ├── closures-15.boo │ │ ├── closures-16.boo │ │ ├── closures-17.boo │ │ ├── closures-18.boo │ │ ├── closures-19.boo │ │ ├── closures-2.boo │ │ ├── closures-20.boo │ │ ├── closures-21.boo │ │ ├── closures-22.boo │ │ ├── closures-3.boo │ │ ├── closures-4.boo │ │ ├── closures-5.boo │ │ ├── closures-6.boo │ │ ├── closures-7.boo │ │ ├── closures-8.boo │ │ ├── closures-9.boo │ │ ├── collection-initializer.boo │ │ ├── comments-1.boo │ │ ├── comments-2.boo │ │ ├── comments-3.boo │ │ ├── comments-4.boo │ │ ├── conditional-1.boo │ │ ├── declarations-1.boo │ │ ├── declarations-2.boo │ │ ├── declarations-3.boo │ │ ├── double-literals-1.boo │ │ ├── dsl-1.boo │ │ ├── elif-1.boo │ │ ├── elif-2.boo │ │ ├── enumerable-type-shortcut.boo │ │ ├── enums-1.boo │ │ ├── events-1.boo │ │ ├── explode-1.boo │ │ ├── explode-2.boo │ │ ├── expressions-1.boo │ │ ├── expressions-2.boo │ │ ├── expressions-3.boo │ │ ├── expressions-4.boo │ │ ├── expressions-5.boo │ │ ├── extensions-1.boo │ │ ├── fields-1.boo │ │ ├── fields-2.boo │ │ ├── fields-3.boo │ │ ├── fields-4.boo │ │ ├── fields-5.boo │ │ ├── fields-6.boo │ │ ├── for_or-1.boo │ │ ├── for_or_then-1.boo │ │ ├── for_then-1.boo │ │ ├── generators-1.boo │ │ ├── generators-2.boo │ │ ├── generators-3.boo │ │ ├── generic-method-1.boo │ │ ├── generic-method-2.boo │ │ ├── generic-method-3.boo │ │ ├── generic-parameter-constraints.boo │ │ ├── generics-1.boo │ │ ├── generics-2.boo │ │ ├── generics-3.boo │ │ ├── generics-4.boo │ │ ├── generics-5.boo │ │ ├── getset-1.boo │ │ ├── goto-1.boo │ │ ├── goto-2.boo │ │ ├── hash-1.boo │ │ ├── hash-initializer.boo │ │ ├── iif-1.boo │ │ ├── import-1.boo │ │ ├── import-2.boo │ │ ├── in-not-in-1.boo │ │ ├── in-not-in-2.boo │ │ ├── in-not-in-3.boo │ │ ├── inplace-1.boo │ │ ├── internal-generic-callable-type-1.boo │ │ ├── internal-generic-type-1.boo │ │ ├── internal-generic-type-2.boo │ │ ├── internal-generic-type-3.boo │ │ ├── internal-generic-type-4.boo │ │ ├── internal-generic-type-5.boo │ │ ├── internal-generic-type-6.boo │ │ ├── interpolation-1.boo │ │ ├── interpolation-2.boo │ │ ├── interpolation-3.boo │ │ ├── interpolation-4.boo │ │ ├── invocation-1.boo │ │ ├── isa-1.boo │ │ ├── keywords-as-members-1.boo │ │ ├── line-continuation-1.boo │ │ ├── list-1.boo │ │ ├── long-literals-1.boo │ │ ├── macro-doc.boo │ │ ├── macros-1.boo │ │ ├── macros-2.boo │ │ ├── macros-3.boo │ │ ├── macros-anywhere-1.boo │ │ ├── member-references-1.boo │ │ ├── method-declaration-in-macro-application.boo │ │ ├── method-declarations-in-nested-macro-application.boo │ │ ├── module-1.boo │ │ ├── module-2.boo │ │ ├── module-3.boo │ │ ├── named-arguments-1.boo │ │ ├── named-arguments-2.boo │ │ ├── new-1.boo │ │ ├── not-1.boo │ │ ├── not-2.boo │ │ ├── null-1.boo │ │ ├── omitted-member-target-1.boo │ │ ├── ones-complement-1.boo │ │ ├── regex-literals-1.boo │ │ ├── regex-literals-2.boo │ │ ├── return-1.boo │ │ ├── return-2.boo │ │ ├── self-1.boo │ │ ├── semicolons-1.boo │ │ ├── slicing-1.boo │ │ ├── slicing-2.boo │ │ ├── splicing-1.boo │ │ ├── splicing-class-body.boo │ │ ├── splicing-enum-body.boo │ │ ├── string-literals-1.boo │ │ ├── struct-1.boo │ │ ├── timespan-literals-1.boo │ │ ├── try-1.boo │ │ ├── try-2.boo │ │ ├── try-3.boo │ │ ├── type-references-1.boo │ │ ├── unless-1.boo │ │ ├── varargs-1.boo │ │ ├── while_or-1.boo │ │ ├── while_or_then-1.boo │ │ ├── while_then-1.boo │ │ ├── xor-1.boo │ │ └── yield-1.boo │ └── yield_stmt_1.boo │ ├── regression │ ├── BOO-1005-1.boo │ ├── BOO-1005-2.boo │ ├── BOO-1006-1.boo │ ├── BOO-1008-1.boo │ ├── BOO-1009-1.boo │ ├── BOO-1013-1.boo │ ├── BOO-1013-2.boo │ ├── BOO-1016-1.boo │ ├── BOO-1016-2.boo │ ├── BOO-1027-1.boo │ ├── BOO-1031-1.boo │ ├── BOO-1031-2.boo │ ├── BOO-1031-3.boo │ ├── BOO-1031-4.boo │ ├── BOO-1035-1.boo │ ├── BOO-104-1.boo │ ├── BOO-1040-1.boo │ ├── BOO-1047.boo │ ├── BOO-1069-1.boo │ ├── BOO-1070-1.boo │ ├── BOO-1071.boo │ ├── BOO-1076.boo │ ├── BOO-1078-1.boo │ ├── BOO-1080-1.boo │ ├── BOO-1082.boo │ ├── BOO-1085.boo │ ├── BOO-1086.boo │ ├── BOO-1088-1.boo │ ├── BOO-1091-1.boo │ ├── BOO-1095-1.boo │ ├── BOO-1111-1.boo │ ├── BOO-1127-1.boo │ ├── BOO-1130-1.boo │ ├── BOO-1135-1.boo │ ├── BOO-1147-1.boo │ ├── BOO-1147-2.boo │ ├── BOO-1154-1.boo │ ├── BOO-1160-1.boo │ ├── BOO-1162-1.boo │ ├── BOO-1170.boo │ ├── BOO-1171-1.boo │ ├── BOO-1176-1.boo │ ├── BOO-1177-1.boo │ ├── BOO-1206-1.boo │ ├── BOO-121-1.boo │ ├── BOO-1210-1.boo │ ├── BOO-1217-1.boo │ ├── BOO-122-1.boo │ ├── BOO-1220-1.boo │ ├── BOO-123-1.boo │ ├── BOO-1256.boo │ ├── BOO-1261-1.boo │ ├── BOO-1264.boo │ ├── BOO-1288.boo │ ├── BOO-129-1.boo │ ├── BOO-1290.boo │ ├── BOO-1306.boo │ ├── BOO-1307.boo │ ├── BOO-1308.boo │ ├── BOO-138-1.boo │ ├── BOO-145-1.boo │ ├── BOO-176-1.boo │ ├── BOO-178-1.boo │ ├── BOO-178-2.boo │ ├── BOO-189-1.boo │ ├── BOO-189-2.boo │ ├── BOO-195-1.boo │ ├── BOO-203-1.boo │ ├── BOO-210-1.boo │ ├── BOO-226-1.boo │ ├── BOO-226-2.boo │ ├── BOO-227-1.boo │ ├── BOO-231-1.boo │ ├── BOO-241-1.boo │ ├── BOO-248-1.boo │ ├── BOO-260-1.boo │ ├── BOO-265-1.boo │ ├── BOO-270-1.boo │ ├── BOO-281-1.boo │ ├── BOO-281-2.boo │ ├── BOO-301-1.boo │ ├── BOO-301-2.boo │ ├── BOO-308-1.boo │ ├── BOO-308-2.boo │ ├── BOO-313-1.boo │ ├── BOO-313-10.boo │ ├── BOO-313-11.boo │ ├── BOO-313-12.boo │ ├── BOO-313-2.boo │ ├── BOO-313-3.boo │ ├── BOO-313-4.boo │ ├── BOO-313-5.boo │ ├── BOO-313-6.boo │ ├── BOO-313-7.boo │ ├── BOO-313-8.boo │ ├── BOO-313-9.boo │ ├── BOO-327-1.boo │ ├── BOO-338-1.boo │ ├── BOO-356-1.boo │ ├── BOO-357-1.boo │ ├── BOO-357-2.boo │ ├── BOO-366-1.boo │ ├── BOO-366-2.boo │ ├── BOO-367-1.boo │ ├── BOO-368-1.boo │ ├── BOO-369-1.boo │ ├── BOO-369-2.boo │ ├── BOO-372-1.boo │ ├── BOO-390-1.boo │ ├── BOO-396-1.boo │ ├── BOO-398-1.boo │ ├── BOO-40-1.boo │ ├── BOO-407-1.boo │ ├── BOO-408-1.boo │ ├── BOO-411-1.boo │ ├── BOO-417-1.boo │ ├── BOO-420-1.boo │ ├── BOO-440-1.boo │ ├── BOO-440-2.boo │ ├── BOO-440-3.boo │ ├── BOO-441-1.boo │ ├── BOO-441-2.boo │ ├── BOO-46-1.boo │ ├── BOO-46-2.boo │ ├── BOO-464-1.boo │ ├── BOO-474-1.boo │ ├── BOO-540-1.boo │ ├── BOO-540-2.boo │ ├── BOO-549-1.boo │ ├── BOO-569-1.boo │ ├── BOO-585-1.boo │ ├── BOO-590-1.boo │ ├── BOO-603-1.boo │ ├── BOO-605-1.boo │ ├── BOO-608-1.boo │ ├── BOO-612-1.boo │ ├── BOO-612-2.boo │ ├── BOO-632-1.boo │ ├── BOO-642-1.boo │ ├── BOO-650-1.boo │ ├── BOO-651-1.boo │ ├── BOO-656-1.boo │ ├── BOO-662-1.boo │ ├── BOO-662-2.boo │ ├── BOO-684-1.boo │ ├── BOO-685-1.boo │ ├── BOO-697-1.boo │ ├── BOO-698-1.boo │ ├── BOO-705-1.boo │ ├── BOO-707-1.boo │ ├── BOO-709-1.boo │ ├── BOO-710-1.boo │ ├── BOO-714-1.boo │ ├── BOO-719-1.boo │ ├── BOO-719-2.boo │ ├── BOO-723-1.boo │ ├── BOO-724-1.boo │ ├── BOO-724-2.boo │ ├── BOO-725-1.boo │ ├── BOO-729-1.boo │ ├── BOO-736-1.boo │ ├── BOO-739-1.boo │ ├── BOO-739-2.boo │ ├── BOO-747-1.boo │ ├── BOO-747-2.boo │ ├── BOO-748-1.boo │ ├── BOO-75-1.boo │ ├── BOO-753-1.boo │ ├── BOO-753-2.boo │ ├── BOO-76-1.boo │ ├── BOO-76-2.boo │ ├── BOO-77-1.boo │ ├── BOO-770-1.boo │ ├── BOO-779-1.boo │ ├── BOO-779-2.boo │ ├── BOO-779-3.boo │ ├── BOO-779-4.boo │ ├── BOO-792-1.boo │ ├── BOO-792-2.boo │ ├── BOO-799-1.boo │ ├── BOO-806-1.boo │ ├── BOO-809-1.boo │ ├── BOO-809-2.boo │ ├── BOO-809-3.boo │ ├── BOO-809-4.boo │ ├── BOO-813-1.boo │ ├── BOO-826.boo │ ├── BOO-835-1.boo │ ├── BOO-844-1.boo │ ├── BOO-844-2.boo │ ├── BOO-85-1.boo │ ├── BOO-860-1.boo │ ├── BOO-861-1.boo │ ├── BOO-862-1.boo │ ├── BOO-862-2.boo │ ├── BOO-864-1.boo │ ├── BOO-865-1.boo │ ├── BOO-88-1.boo │ ├── BOO-882.boo │ ├── BOO-893-1.boo │ ├── BOO-90-1.boo │ ├── BOO-913-1.boo │ ├── BOO-935-1.boo │ ├── BOO-935-2.boo │ ├── BOO-948-1.boo │ ├── BOO-949-1.boo │ ├── BOO-949-2.boo │ ├── BOO-952-1.boo │ ├── BOO-955-1.boo │ ├── BOO-958-1.boo │ ├── BOO-960.boo │ ├── BOO-973-1.boo │ ├── BOO-974-1.boo │ ├── BOO-975-1.boo │ ├── BOO-977-1.boo │ ├── BOO-979-1.boo │ ├── BOO-979-2.boo │ ├── BOO-982-1.boo │ ├── BOO-983-1.boo │ ├── BOO-983-2.boo │ ├── BOO-986-1.boo │ ├── BOO-99-1.boo │ ├── BOO-992-1.boo │ ├── BOO-992-2.boo │ ├── BOO-999-1.boo │ ├── array_ldelem.boo │ ├── boo-1032-1.boo │ ├── boo-1032-2.boo │ ├── boo-1051.boo │ ├── complex-iterators-1.boo │ ├── duck-default-member-overload.boo │ ├── duck-default-setter-overload.boo │ ├── for-re-Split.boo │ ├── generators-1.boo │ ├── method-with-type-inference-rule-as-statement.boo │ ├── nullables-and-generators.boo │ └── override-inference.boo │ ├── semantics │ ├── abstract_method0.boo │ ├── abstract_method_stubs0.boo │ ├── assert0.boo │ ├── assert1.boo │ ├── assign_property.boo │ ├── callables-1.boo │ ├── classes0.boo │ ├── classes1.boo │ ├── collection-initializer.boo │ ├── enum0.boo │ ├── enum1.boo │ ├── equality0.boo │ ├── fields-1.boo │ ├── fields-2.boo │ ├── fields-3.boo │ ├── fields-4.boo │ ├── fields-5.boo │ ├── fields-6.boo │ ├── fields-7.boo │ ├── fields-8.boo │ ├── folding-0.boo │ ├── for-1.boo │ ├── for-2.boo │ ├── hash-initializer.boo │ ├── hash0.boo │ ├── in_string.boo │ ├── interfaces-0.boo │ ├── interfaces-1.boo │ ├── interfaces-2.boo │ ├── is-0.boo │ ├── len.boo │ ├── lock0.boo │ ├── lock1.boo │ ├── lock2.boo │ ├── method2.boo │ ├── method3.boo │ ├── method6.boo │ ├── method7.boo │ ├── module0.boo │ ├── null0.boo │ ├── null1.boo │ ├── numericpromo0.boo │ ├── omitted-target-1.boo │ ├── regex-is-cached-in-static-field-unless-assigned.boo │ ├── slice_property.boo │ ├── slice_property_int.boo │ ├── static_field_initializer.boo │ ├── stringslice0.boo │ ├── stringslice1.boo │ ├── struct-1.boo │ ├── type_resolution0.boo │ ├── using0.boo │ └── using1.boo │ ├── stdlib │ ├── DynamicVariable-1.boo │ ├── cat-1.boo │ ├── cat-2.boo │ ├── environments-1.boo │ ├── formatting-1.boo │ ├── hash-1.boo │ ├── hash-2.boo │ ├── hash-3.boo │ ├── join-1.boo │ ├── len-1.boo │ ├── list-add-1.boo │ ├── list-equals-1.boo │ ├── list-find-1.boo │ ├── list-indexof-1.boo │ ├── list-indexof-2.boo │ ├── list-indexof-3.boo │ ├── list-removeall-1.boo │ ├── list-sort-1.boo │ ├── map-1.boo │ ├── range-1.boo │ ├── range-2.boo │ ├── range-3.boo │ └── reversed-1.boo │ ├── unsafe │ ├── errors │ │ ├── BCE0168-1.boo │ │ ├── sizeof-usage-1.boo │ │ ├── unsafe-usage-1.boo │ │ └── unsafe-usage-2.boo │ ├── sizeof-1.boo │ ├── unsafe-1.boo │ ├── unsafe-2.boo │ ├── unsafe-3.boo │ ├── unsafe-4.boo │ └── unsafe-5.boo │ └── warnings │ ├── BCW0001-10.boo │ ├── BCW0001-4.boo │ ├── BCW0002-1.boo │ ├── BCW0003-1.boo │ ├── BCW0003-2.boo │ ├── BCW0004-1.boo │ ├── BCW0004-2.boo │ ├── BCW0005-1.boo │ ├── BCW0006-1.boo │ ├── BCW0006-2.boo │ ├── BCW0007-1.boo │ ├── BCW0008-1.boo │ ├── BCW0011-1.boo │ ├── BCW0011-10.boo │ ├── BCW0011-11.boo │ ├── BCW0011-12.boo │ ├── BCW0011-13.boo │ ├── BCW0011-14.boo │ ├── BCW0011-15.boo │ ├── BCW0011-16.boo │ ├── BCW0011-17.boo │ ├── BCW0011-18.boo │ ├── BCW0011-19.boo │ ├── BCW0011-2.boo │ ├── BCW0011-3.boo │ ├── BCW0011-4.boo │ ├── BCW0011-5.boo │ ├── BCW0011-6.boo │ ├── BCW0011-7.boo │ ├── BCW0011-8.boo │ ├── BCW0011-9.boo │ ├── BCW0012-1.boo │ ├── BCW0013-1.boo │ ├── BCW0013-2.boo │ ├── BCW0013-3.boo │ ├── BCW0014-1.boo │ ├── BCW0014-2.boo │ ├── BCW0015-1.boo │ ├── BCW0015-2.boo │ ├── BCW0015-3.boo │ ├── BCW0015-4.boo │ ├── BCW0015-5.boo │ ├── BCW0016-1.boo │ ├── BCW0017-1.boo │ ├── BCW0018-1.boo │ ├── BCW0019-1.boo │ ├── BCW0020-1.boo │ ├── BCW0021-1.boo │ ├── BCW0022-1.boo │ ├── BCW0022-2.boo │ ├── BCW0023-1.boo │ ├── BCW0024-1.boo │ ├── BCW0025-1.boo │ ├── BCW0026-1.boo │ ├── BCW0027-1.boo │ ├── BCW0028-1.boo │ ├── BCW0028-2.boo │ ├── BCW0029-1.boo │ ├── no-unreacheable-code-warning-for-compiler-generated-code.boo │ ├── nowarn-1.boo │ └── nowarn-2.boo ├── todo.txt ├── tools └── RetargetAssembly │ ├── RetargetAssembly.boo │ └── build.gradle └── version.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/.gitignore -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/.project -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/AUTHORS -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = bin extras 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/README.md -------------------------------------------------------------------------------- /ast.model.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/ast.model.boo -------------------------------------------------------------------------------- /bin/.gitignore: -------------------------------------------------------------------------------- 1 | *.mdb 2 | -------------------------------------------------------------------------------- /bin/Boo.Lang.CodeDom.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/bin/Boo.Lang.CodeDom.dll -------------------------------------------------------------------------------- /bin/Boo.Lang.Compiler.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/bin/Boo.Lang.Compiler.dll -------------------------------------------------------------------------------- /bin/Boo.Lang.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/bin/Boo.Lang.Extensions.dll -------------------------------------------------------------------------------- /bin/Boo.Lang.Interpreter.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/bin/Boo.Lang.Interpreter.dll -------------------------------------------------------------------------------- /bin/Boo.Lang.Parser.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/bin/Boo.Lang.Parser.dll -------------------------------------------------------------------------------- /bin/Boo.Lang.PatternMatching.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/bin/Boo.Lang.PatternMatching.dll -------------------------------------------------------------------------------- /bin/Boo.Lang.Useful.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/bin/Boo.Lang.Useful.dll -------------------------------------------------------------------------------- /bin/Boo.Lang.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/bin/Boo.Lang.dll -------------------------------------------------------------------------------- /bin/Boo.Microsoft.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/bin/Boo.Microsoft.Build.targets -------------------------------------------------------------------------------- /bin/Boo.NAnt.Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/bin/Boo.NAnt.Tasks.dll -------------------------------------------------------------------------------- /bin/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/bin/Makefile.am -------------------------------------------------------------------------------- /bin/booc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/bin/booc.exe -------------------------------------------------------------------------------- /bin/booc.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/bin/booc.exe.config -------------------------------------------------------------------------------- /bin/booc.rsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/bin/booc.rsp -------------------------------------------------------------------------------- /bin/booi.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/bin/booi.exe -------------------------------------------------------------------------------- /bin/booi.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/bin/booi.exe.config -------------------------------------------------------------------------------- /bin/booish.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/bin/booish.exe -------------------------------------------------------------------------------- /bin/booish.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/bin/booish.exe.config -------------------------------------------------------------------------------- /booc: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | env mono build/booc.exe "$@" 3 | -------------------------------------------------------------------------------- /booi: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | env mono build/booi.exe "$@" 3 | -------------------------------------------------------------------------------- /configure.in.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/configure.in.in -------------------------------------------------------------------------------- /default.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/default.build -------------------------------------------------------------------------------- /docs/BooManifesto.sxw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/docs/BooManifesto.sxw -------------------------------------------------------------------------------- /docs/meta-programming.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/docs/meta-programming.txt -------------------------------------------------------------------------------- /examples/BuildingLanguages/UsingCSharp/.gitignore: -------------------------------------------------------------------------------- 1 | bin 2 | obj 3 | -------------------------------------------------------------------------------- /examples/asp.net/Calendar.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/examples/asp.net/Calendar.aspx -------------------------------------------------------------------------------- /examples/asp.net/HelloAspNet.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/examples/asp.net/HelloAspNet.aspx -------------------------------------------------------------------------------- /examples/asp.net/HelloAspNet.aspx.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/examples/asp.net/HelloAspNet.aspx.boo -------------------------------------------------------------------------------- /examples/asp.net/Math.asmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/examples/asp.net/Math.asmx -------------------------------------------------------------------------------- /examples/asp.net/Math.asmx.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/examples/asp.net/Math.asmx.boo -------------------------------------------------------------------------------- /examples/asp.net/PrettyPrinter.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/examples/asp.net/PrettyPrinter.aspx -------------------------------------------------------------------------------- /examples/asp.net/PrettyPrinter.aspx.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/examples/asp.net/PrettyPrinter.aspx.boo -------------------------------------------------------------------------------- /examples/asp.net/ScriptRunner.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/examples/asp.net/ScriptRunner.aspx -------------------------------------------------------------------------------- /examples/asp.net/ScriptRunner.aspx.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/examples/asp.net/ScriptRunner.aspx.boo -------------------------------------------------------------------------------- /examples/asp.net/YourName.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/examples/asp.net/YourName.aspx -------------------------------------------------------------------------------- /examples/asp.net/YourName.aspx.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/examples/asp.net/YourName.aspx.boo -------------------------------------------------------------------------------- /examples/asp.net/default.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/examples/asp.net/default.build -------------------------------------------------------------------------------- /examples/asp.net/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/examples/asp.net/web.config -------------------------------------------------------------------------------- /examples/attributes/Async/default.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/examples/attributes/Async/default.build -------------------------------------------------------------------------------- /examples/duck-typing/XmlObject.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/examples/duck-typing/XmlObject.boo -------------------------------------------------------------------------------- /examples/duck-typing/ie.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/examples/duck-typing/ie.boo -------------------------------------------------------------------------------- /examples/duck-typing/multimethods.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/examples/duck-typing/multimethods.boo -------------------------------------------------------------------------------- /examples/gac/GacLibrary/GacLibrary.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/examples/gac/GacLibrary/GacLibrary.snk -------------------------------------------------------------------------------- /examples/gac/GacLibrary/GacType.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/examples/gac/GacLibrary/GacType.boo -------------------------------------------------------------------------------- /examples/gac/default.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/examples/gac/default.build -------------------------------------------------------------------------------- /examples/gac/test/test.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/examples/gac/test/test.boo -------------------------------------------------------------------------------- /examples/gtk/gsv.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/examples/gtk/gsv.boo -------------------------------------------------------------------------------- /examples/gtk/gsvshell.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/examples/gtk/gsvshell.boo -------------------------------------------------------------------------------- /examples/gtk/gtk.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/examples/gtk/gtk.boo -------------------------------------------------------------------------------- /examples/gtk/gtkshell.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/examples/gtk/gtkshell.boo -------------------------------------------------------------------------------- /examples/macros/With/MacroUsage.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/examples/macros/With/MacroUsage.boo -------------------------------------------------------------------------------- /examples/macros/With/WithMacro.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/examples/macros/With/WithMacro.boo -------------------------------------------------------------------------------- /examples/macros/With/default.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/examples/macros/With/default.build -------------------------------------------------------------------------------- /examples/macros/alias/AliasMacro.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/examples/macros/alias/AliasMacro.boo -------------------------------------------------------------------------------- /examples/macros/alias/MacroUsage.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/examples/macros/alias/MacroUsage.boo -------------------------------------------------------------------------------- /examples/macros/alias/default.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/examples/macros/alias/default.build -------------------------------------------------------------------------------- /examples/macros/ifdef.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/examples/macros/ifdef.boo -------------------------------------------------------------------------------- /examples/macros/trace/TraceService.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/examples/macros/trace/TraceService.boo -------------------------------------------------------------------------------- /examples/macros/trace/trace.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/examples/macros/trace/trace.boo -------------------------------------------------------------------------------- /examples/meta-programming/PetDSL.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/examples/meta-programming/PetDSL.boo -------------------------------------------------------------------------------- /examples/misc/FormatterServices.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/examples/misc/FormatterServices.boo -------------------------------------------------------------------------------- /examples/misc/GetOptions.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/examples/misc/GetOptions.boo -------------------------------------------------------------------------------- /examples/misc/ObjectConstruction.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/examples/misc/ObjectConstruction.boo -------------------------------------------------------------------------------- /examples/misc/arrayperformance.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/examples/misc/arrayperformance.boo -------------------------------------------------------------------------------- /examples/misc/arrayperformance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/examples/misc/arrayperformance.cs -------------------------------------------------------------------------------- /examples/misc/arrayperformance.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/examples/misc/arrayperformance.java -------------------------------------------------------------------------------- /examples/misc/arrayperformance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/examples/misc/arrayperformance.py -------------------------------------------------------------------------------- /examples/misc/ast-to-string.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/examples/misc/ast-to-string.boo -------------------------------------------------------------------------------- /examples/misc/ast-to-xml.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/examples/misc/ast-to-xml.boo -------------------------------------------------------------------------------- /examples/misc/ast.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/examples/misc/ast.boo -------------------------------------------------------------------------------- /examples/misc/ast2.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/examples/misc/ast2.boo -------------------------------------------------------------------------------- /examples/misc/async.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/examples/misc/async.boo -------------------------------------------------------------------------------- /examples/misc/buttonclick1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/examples/misc/buttonclick1.boo -------------------------------------------------------------------------------- /examples/misc/changelog.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/examples/misc/changelog.boo -------------------------------------------------------------------------------- /examples/misc/client.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/examples/misc/client.boo -------------------------------------------------------------------------------- /examples/misc/closure-serialization.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/examples/misc/closure-serialization.boo -------------------------------------------------------------------------------- /examples/misc/coroutines.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/examples/misc/coroutines.boo -------------------------------------------------------------------------------- /examples/misc/countries.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/examples/misc/countries.boo -------------------------------------------------------------------------------- /examples/misc/countries.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/examples/misc/countries.xml -------------------------------------------------------------------------------- /examples/misc/customcollection.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/examples/misc/customcollection.boo -------------------------------------------------------------------------------- /examples/misc/download.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/examples/misc/download.boo -------------------------------------------------------------------------------- /examples/misc/dsl-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/examples/misc/dsl-1.boo -------------------------------------------------------------------------------- /examples/misc/dump.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/examples/misc/dump.boo -------------------------------------------------------------------------------- /examples/misc/fibonacci.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/examples/misc/fibonacci.boo -------------------------------------------------------------------------------- /examples/misc/firstline.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/examples/misc/firstline.boo -------------------------------------------------------------------------------- /examples/misc/functor.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/examples/misc/functor.boo -------------------------------------------------------------------------------- /examples/misc/grep.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/examples/misc/grep.boo -------------------------------------------------------------------------------- /examples/misc/helloforms.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/examples/misc/helloforms.boo -------------------------------------------------------------------------------- /examples/misc/helloforms2.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/examples/misc/helloforms2.boo -------------------------------------------------------------------------------- /examples/misc/helloforms3.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/examples/misc/helloforms3.boo -------------------------------------------------------------------------------- /examples/misc/lines.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/examples/misc/lines.boo -------------------------------------------------------------------------------- /examples/misc/listoperations.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/examples/misc/listoperations.boo -------------------------------------------------------------------------------- /examples/misc/lscope.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/examples/misc/lscope.boo -------------------------------------------------------------------------------- /examples/misc/now.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/examples/misc/now.boo -------------------------------------------------------------------------------- /examples/misc/propertygrid.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/examples/misc/propertygrid.boo -------------------------------------------------------------------------------- /examples/misc/replace.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/examples/misc/replace.boo -------------------------------------------------------------------------------- /examples/misc/rgrep.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/examples/misc/rgrep.boo -------------------------------------------------------------------------------- /examples/misc/run-ast.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/examples/misc/run-ast.boo -------------------------------------------------------------------------------- /examples/misc/run.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/examples/misc/run.boo -------------------------------------------------------------------------------- /examples/misc/selectElements.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/examples/misc/selectElements.boo -------------------------------------------------------------------------------- /examples/misc/serialize.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/examples/misc/serialize.boo -------------------------------------------------------------------------------- /examples/misc/serializearray.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/examples/misc/serializearray.boo -------------------------------------------------------------------------------- /examples/misc/server.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/examples/misc/server.boo -------------------------------------------------------------------------------- /examples/misc/showcompilersteps.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/examples/misc/showcompilersteps.boo -------------------------------------------------------------------------------- /examples/misc/sincos.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/examples/misc/sincos.boo -------------------------------------------------------------------------------- /examples/misc/stacktrace.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/examples/misc/stacktrace.boo -------------------------------------------------------------------------------- /examples/misc/toolbar1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/examples/misc/toolbar1.boo -------------------------------------------------------------------------------- /examples/misc/toolbar2.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/examples/misc/toolbar2.boo -------------------------------------------------------------------------------- /examples/misc/ugly.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/examples/misc/ugly.boo -------------------------------------------------------------------------------- /examples/misc/ugly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/examples/misc/ugly.cs -------------------------------------------------------------------------------- /examples/misc/ugly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/examples/misc/ugly.py -------------------------------------------------------------------------------- /examples/misc/vectors.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/examples/misc/vectors.boo -------------------------------------------------------------------------------- /examples/misc/vgrep.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/examples/misc/vgrep.boo -------------------------------------------------------------------------------- /examples/misc/vgrep2.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/examples/misc/vgrep2.boo -------------------------------------------------------------------------------- /examples/misc/wget.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/examples/misc/wget.boo -------------------------------------------------------------------------------- /examples/misc/whichserver.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/examples/misc/whichserver.boo -------------------------------------------------------------------------------- /examples/misc/winforms.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/examples/misc/winforms.boo -------------------------------------------------------------------------------- /examples/misc/wrapLines.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/examples/misc/wrapLines.boo -------------------------------------------------------------------------------- /examples/misc/xml.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/examples/misc/xml.boo -------------------------------------------------------------------------------- /examples/misc/xmllogdata.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/examples/misc/xmllogdata.boo -------------------------------------------------------------------------------- /examples/pipeline/AutoImport/client.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/examples/pipeline/AutoImport/client.boo -------------------------------------------------------------------------------- /examples/pipeline/AutoImport/globals.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/examples/pipeline/AutoImport/globals.boo -------------------------------------------------------------------------------- /examples/pipeline/AutoImport/main.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/examples/pipeline/AutoImport/main.boo -------------------------------------------------------------------------------- /examples/pipeline/Extensibilidade.sxw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/examples/pipeline/Extensibilidade.sxw -------------------------------------------------------------------------------- /examples/pipeline/Extensibilidade.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/examples/pipeline/Extensibilidade.txt -------------------------------------------------------------------------------- /examples/pipeline/NoPrimitives.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/examples/pipeline/NoPrimitives.boo -------------------------------------------------------------------------------- /examples/pipeline/Trace/HelloWorld.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/examples/pipeline/Trace/HelloWorld.boo -------------------------------------------------------------------------------- /examples/pipeline/Trace/default.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/examples/pipeline/Trace/default.build -------------------------------------------------------------------------------- /examples/prevalence/tasks.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/examples/prevalence/tasks.boo -------------------------------------------------------------------------------- /examples/remoting/client.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/examples/remoting/client.boo -------------------------------------------------------------------------------- /examples/remoting/default.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/examples/remoting/default.build -------------------------------------------------------------------------------- /examples/remoting/library.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/examples/remoting/library.boo -------------------------------------------------------------------------------- /examples/remoting/server.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/examples/remoting/server.boo -------------------------------------------------------------------------------- /examples/sharpdevelop/pascalcase.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/examples/sharpdevelop/pascalcase.boo -------------------------------------------------------------------------------- /examples/silverlight/tetris/Tetris.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/examples/silverlight/tetris/Tetris.boo -------------------------------------------------------------------------------- /examples/svnutils/default.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/examples/svnutils/default.build -------------------------------------------------------------------------------- /examples/svnutils/src/svn.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/examples/svnutils/src/svn.boo -------------------------------------------------------------------------------- /examples/svnutils/src/svn_changed.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/examples/svnutils/src/svn_changed.boo -------------------------------------------------------------------------------- /examples/svnutils/src/svn_ignore.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/examples/svnutils/src/svn_ignore.boo -------------------------------------------------------------------------------- /examples/svnutils/src/svn_ignore_all.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/examples/svnutils/src/svn_ignore_all.boo -------------------------------------------------------------------------------- /examples/svnutils/src/svn_locals.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/examples/svnutils/src/svn_locals.boo -------------------------------------------------------------------------------- /extras/BooTemplate/default.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/extras/BooTemplate/default.build -------------------------------------------------------------------------------- /extras/DEBIAN/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/extras/DEBIAN/control -------------------------------------------------------------------------------- /extras/DEBIAN/postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/extras/DEBIAN/postinst -------------------------------------------------------------------------------- /extras/DEBIAN/prerm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/extras/DEBIAN/prerm -------------------------------------------------------------------------------- /extras/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/extras/Makefile.am -------------------------------------------------------------------------------- /extras/SharpDevelop/BooBinding/Boo.xshd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/extras/SharpDevelop/BooBinding/Boo.xshd -------------------------------------------------------------------------------- /extras/bisect.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/extras/bisect.sh -------------------------------------------------------------------------------- /extras/boo-completion.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/extras/boo-completion.bash -------------------------------------------------------------------------------- /extras/boo-jedit41.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/extras/boo-jedit41.xml -------------------------------------------------------------------------------- /extras/boo-jedit42.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/extras/boo-jedit42.xml -------------------------------------------------------------------------------- /extras/boo-mime-info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/extras/boo-mime-info.xml -------------------------------------------------------------------------------- /extras/boo.keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/extras/boo.keys -------------------------------------------------------------------------------- /extras/boo.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/extras/boo.lang -------------------------------------------------------------------------------- /extras/boo.mime: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/extras/boo.mime -------------------------------------------------------------------------------- /extras/boo.nanorc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/extras/boo.nanorc -------------------------------------------------------------------------------- /extras/boo.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/extras/boo.pc.in -------------------------------------------------------------------------------- /extras/boo.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/extras/boo.vim -------------------------------------------------------------------------------- /extras/boo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/extras/boo.xml -------------------------------------------------------------------------------- /extras/booc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/extras/booc.in -------------------------------------------------------------------------------- /extras/booi.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/extras/booi.in -------------------------------------------------------------------------------- /extras/booish.gui/default.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/extras/booish.gui/default.build -------------------------------------------------------------------------------- /extras/booish.gui/src/MainForm.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/extras/booish.gui/src/MainForm.boo -------------------------------------------------------------------------------- /extras/booish.gui/src/booish.gui.cmbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/extras/booish.gui/src/booish.gui.cmbx -------------------------------------------------------------------------------- /extras/booish.gui/src/booish.gui.prjx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/extras/booish.gui/src/booish.gui.prjx -------------------------------------------------------------------------------- /extras/booish.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/extras/booish.in -------------------------------------------------------------------------------- /extras/boox/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/extras/boox/COPYING -------------------------------------------------------------------------------- /extras/boox/README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/extras/boox/README.TXT -------------------------------------------------------------------------------- /extras/boox/booxg/BooEditor.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/extras/boox/booxg/BooEditor.boo -------------------------------------------------------------------------------- /extras/boox/booxg/BooSourceView.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/extras/boox/booxg/BooSourceView.boo -------------------------------------------------------------------------------- /extras/boox/booxg/DocumentOutline.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/extras/boox/booxg/DocumentOutline.boo -------------------------------------------------------------------------------- /extras/boox/booxg/MainWindow.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/extras/boox/booxg/MainWindow.boo -------------------------------------------------------------------------------- /extras/boox/booxg/booxg.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/extras/boox/booxg/booxg.boo -------------------------------------------------------------------------------- /extras/boox/booxw/default.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/extras/boox/booxw/default.build -------------------------------------------------------------------------------- /extras/boox/booxw/src/AssemblyInfo.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/extras/boox/booxw/src/AssemblyInfo.boo -------------------------------------------------------------------------------- /extras/boox/booxw/src/BooEditor.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/extras/boox/booxw/src/BooEditor.boo -------------------------------------------------------------------------------- /extras/boox/booxw/src/MainForm.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/extras/boox/booxw/src/MainForm.boo -------------------------------------------------------------------------------- /extras/boox/booxw/src/OutputPane.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/extras/boox/booxw/src/OutputPane.boo -------------------------------------------------------------------------------- /extras/boox/booxw/src/TaskList.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/extras/boox/booxw/src/TaskList.boo -------------------------------------------------------------------------------- /extras/boox/booxw/src/boox.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/extras/boox/booxw/src/boox.boo -------------------------------------------------------------------------------- /extras/boox/booxw/src/booxw.cmbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/extras/boox/booxw/src/booxw.cmbx -------------------------------------------------------------------------------- /extras/boox/booxw/src/booxw.prjx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/extras/boox/booxw/src/booxw.prjx -------------------------------------------------------------------------------- /extras/boox/booxw/todo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/extras/boox/booxw/todo.txt -------------------------------------------------------------------------------- /extras/boox/default.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/extras/boox/default.build -------------------------------------------------------------------------------- /extras/boox/resources/boo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/extras/boox/resources/boo.ico -------------------------------------------------------------------------------- /extras/common-properties.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/extras/common-properties.build -------------------------------------------------------------------------------- /extras/genchangelog.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/extras/genchangelog.boo -------------------------------------------------------------------------------- /extras/gendarme.ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/extras/gendarme.ignore -------------------------------------------------------------------------------- /extras/install-gtksourceview-mode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/extras/install-gtksourceview-mode -------------------------------------------------------------------------------- /extras/makedeb.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/extras/makedeb.build -------------------------------------------------------------------------------- /extras/man/booc.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/extras/man/booc.1 -------------------------------------------------------------------------------- /extras/man/booi.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/extras/man/booi.1 -------------------------------------------------------------------------------- /extras/man/booish.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/extras/man/booish.1 -------------------------------------------------------------------------------- /extras/rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/extras/rules.xml -------------------------------------------------------------------------------- /extras/template.config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/extras/template.config.in -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/gradlew.bat -------------------------------------------------------------------------------- /il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/il -------------------------------------------------------------------------------- /il.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/il.bat -------------------------------------------------------------------------------- /lib/antlr-2.7.5/INSTALL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/lib/antlr-2.7.5/INSTALL.txt -------------------------------------------------------------------------------- /lib/antlr-2.7.5/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/lib/antlr-2.7.5/LICENSE.txt -------------------------------------------------------------------------------- /lib/antlr-2.7.5/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/lib/antlr-2.7.5/Makefile.in -------------------------------------------------------------------------------- /lib/antlr-2.7.5/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/lib/antlr-2.7.5/README.txt -------------------------------------------------------------------------------- /lib/antlr-2.7.5/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/lib/antlr-2.7.5/aclocal.m4 -------------------------------------------------------------------------------- /lib/antlr-2.7.5/antlr-2.7.5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/lib/antlr-2.7.5/antlr-2.7.5.jar -------------------------------------------------------------------------------- /lib/antlr-2.7.5/antlr/ANTLRError.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/lib/antlr-2.7.5/antlr/ANTLRError.java -------------------------------------------------------------------------------- /lib/antlr-2.7.5/antlr/ANTLRLexer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/lib/antlr-2.7.5/antlr/ANTLRLexer.java -------------------------------------------------------------------------------- /lib/antlr-2.7.5/antlr/ASTFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/lib/antlr-2.7.5/antlr/ASTFactory.java -------------------------------------------------------------------------------- /lib/antlr-2.7.5/antlr/ASTPair.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/lib/antlr-2.7.5/antlr/ASTPair.java -------------------------------------------------------------------------------- /lib/antlr-2.7.5/antlr/ASTVisitor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/lib/antlr-2.7.5/antlr/ASTVisitor.java -------------------------------------------------------------------------------- /lib/antlr-2.7.5/antlr/BaseAST.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/lib/antlr-2.7.5/antlr/BaseAST.java -------------------------------------------------------------------------------- /lib/antlr-2.7.5/antlr/ByteBuffer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/lib/antlr-2.7.5/antlr/ByteBuffer.java -------------------------------------------------------------------------------- /lib/antlr-2.7.5/antlr/CharBuffer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/lib/antlr-2.7.5/antlr/CharBuffer.java -------------------------------------------------------------------------------- /lib/antlr-2.7.5/antlr/CharQueue.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/lib/antlr-2.7.5/antlr/CharQueue.java -------------------------------------------------------------------------------- /lib/antlr-2.7.5/antlr/CommonAST.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/lib/antlr-2.7.5/antlr/CommonAST.java -------------------------------------------------------------------------------- /lib/antlr-2.7.5/antlr/Grammar.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/lib/antlr-2.7.5/antlr/Grammar.java -------------------------------------------------------------------------------- /lib/antlr-2.7.5/antlr/LLkParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/lib/antlr-2.7.5/antlr/LLkParser.java -------------------------------------------------------------------------------- /lib/antlr-2.7.5/antlr/Lookahead.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/lib/antlr-2.7.5/antlr/Lookahead.java -------------------------------------------------------------------------------- /lib/antlr-2.7.5/antlr/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/lib/antlr-2.7.5/antlr/Makefile.in -------------------------------------------------------------------------------- /lib/antlr-2.7.5/antlr/NameSpace.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/lib/antlr-2.7.5/antlr/NameSpace.java -------------------------------------------------------------------------------- /lib/antlr-2.7.5/antlr/ParseTree.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/lib/antlr-2.7.5/antlr/ParseTree.java -------------------------------------------------------------------------------- /lib/antlr-2.7.5/antlr/Parser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/lib/antlr-2.7.5/antlr/Parser.java -------------------------------------------------------------------------------- /lib/antlr-2.7.5/antlr/RuleBlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/lib/antlr-2.7.5/antlr/RuleBlock.java -------------------------------------------------------------------------------- /lib/antlr-2.7.5/antlr/RuleSymbol.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/lib/antlr-2.7.5/antlr/RuleSymbol.java -------------------------------------------------------------------------------- /lib/antlr-2.7.5/antlr/Token.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/lib/antlr-2.7.5/antlr/Token.java -------------------------------------------------------------------------------- /lib/antlr-2.7.5/antlr/TokenQueue.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/lib/antlr-2.7.5/antlr/TokenQueue.java -------------------------------------------------------------------------------- /lib/antlr-2.7.5/antlr/Tool.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/lib/antlr-2.7.5/antlr/Tool.java -------------------------------------------------------------------------------- /lib/antlr-2.7.5/antlr/TreeParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/lib/antlr-2.7.5/antlr/TreeParser.java -------------------------------------------------------------------------------- /lib/antlr-2.7.5/antlr/Version.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/lib/antlr-2.7.5/antlr/Version.java -------------------------------------------------------------------------------- /lib/antlr-2.7.5/antlr/Version.java.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/lib/antlr-2.7.5/antlr/Version.java.in -------------------------------------------------------------------------------- /lib/antlr-2.7.5/antlr/antlr.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/lib/antlr-2.7.5/antlr/antlr.g -------------------------------------------------------------------------------- /lib/antlr-2.7.5/antlr/antlr.javaproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/lib/antlr-2.7.5/antlr/antlr.javaproj -------------------------------------------------------------------------------- /lib/antlr-2.7.5/antlr/antlr.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/lib/antlr-2.7.5/antlr/antlr.sln -------------------------------------------------------------------------------- /lib/antlr-2.7.5/antlr/build/Tool.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/lib/antlr-2.7.5/antlr/build/Tool.java -------------------------------------------------------------------------------- /lib/antlr-2.7.5/antlr/tokdef.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/lib/antlr-2.7.5/antlr/tokdef.g -------------------------------------------------------------------------------- /lib/antlr-2.7.5/config.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/lib/antlr-2.7.5/config.log -------------------------------------------------------------------------------- /lib/antlr-2.7.5/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/lib/antlr-2.7.5/configure -------------------------------------------------------------------------------- /lib/antlr-2.7.5/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/lib/antlr-2.7.5/configure.in -------------------------------------------------------------------------------- /lib/antlr-2.7.5/doc/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/lib/antlr-2.7.5/doc/Makefile.in -------------------------------------------------------------------------------- /lib/antlr-2.7.5/doc/closure.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/lib/antlr-2.7.5/doc/closure.gif -------------------------------------------------------------------------------- /lib/antlr-2.7.5/doc/cpp-runtime.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/lib/antlr-2.7.5/doc/cpp-runtime.html -------------------------------------------------------------------------------- /lib/antlr-2.7.5/doc/err.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/lib/antlr-2.7.5/doc/err.html -------------------------------------------------------------------------------- /lib/antlr-2.7.5/doc/glossary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/lib/antlr-2.7.5/doc/glossary.html -------------------------------------------------------------------------------- /lib/antlr-2.7.5/doc/hidden.stream.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/lib/antlr-2.7.5/doc/hidden.stream.gif -------------------------------------------------------------------------------- /lib/antlr-2.7.5/doc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/lib/antlr-2.7.5/doc/index.html -------------------------------------------------------------------------------- /lib/antlr-2.7.5/doc/inheritance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/lib/antlr-2.7.5/doc/inheritance.html -------------------------------------------------------------------------------- /lib/antlr-2.7.5/doc/j-guru-blue.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/lib/antlr-2.7.5/doc/j-guru-blue.jpg -------------------------------------------------------------------------------- /lib/antlr-2.7.5/doc/jguru-logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/lib/antlr-2.7.5/doc/jguru-logo.gif -------------------------------------------------------------------------------- /lib/antlr-2.7.5/doc/lexer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/lib/antlr-2.7.5/doc/lexer.html -------------------------------------------------------------------------------- /lib/antlr-2.7.5/doc/logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/lib/antlr-2.7.5/doc/logo.gif -------------------------------------------------------------------------------- /lib/antlr-2.7.5/doc/metalang.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/lib/antlr-2.7.5/doc/metalang.html -------------------------------------------------------------------------------- /lib/antlr-2.7.5/doc/optional.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/lib/antlr-2.7.5/doc/optional.gif -------------------------------------------------------------------------------- /lib/antlr-2.7.5/doc/options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/lib/antlr-2.7.5/doc/options.html -------------------------------------------------------------------------------- /lib/antlr-2.7.5/doc/posclosure.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/lib/antlr-2.7.5/doc/posclosure.gif -------------------------------------------------------------------------------- /lib/antlr-2.7.5/doc/runtime.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/lib/antlr-2.7.5/doc/runtime.html -------------------------------------------------------------------------------- /lib/antlr-2.7.5/doc/sor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/lib/antlr-2.7.5/doc/sor.html -------------------------------------------------------------------------------- /lib/antlr-2.7.5/doc/streams.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/lib/antlr-2.7.5/doc/streams.html -------------------------------------------------------------------------------- /lib/antlr-2.7.5/doc/subrule.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/lib/antlr-2.7.5/doc/subrule.gif -------------------------------------------------------------------------------- /lib/antlr-2.7.5/doc/trees.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/lib/antlr-2.7.5/doc/trees.html -------------------------------------------------------------------------------- /lib/antlr-2.7.5/doc/vocab.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/lib/antlr-2.7.5/doc/vocab.html -------------------------------------------------------------------------------- /lib/antlr-2.7.5/examples/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/lib/antlr-2.7.5/examples/Makefile.in -------------------------------------------------------------------------------- /lib/antlr-2.7.5/examples/cpp/calc/test.in: -------------------------------------------------------------------------------- 1 | 3+4*5; 2 | -------------------------------------------------------------------------------- /lib/antlr-2.7.5/examples/cpp/exprAST/test.in: -------------------------------------------------------------------------------- 1 | 4 / (5+6) *f(x,y,z,1+2) 2 | 3 | -------------------------------------------------------------------------------- /lib/antlr-2.7.5/examples/cpp/exprAST/test2.in: -------------------------------------------------------------------------------- 1 | 3+4 2 | 3 | -------------------------------------------------------------------------------- /lib/antlr-2.7.5/examples/cpp/heteroAST/test.in: -------------------------------------------------------------------------------- 1 | 3+4*5+21; 2 | -------------------------------------------------------------------------------- /lib/antlr-2.7.5/examples/cpp/includeFile/subincl.h: -------------------------------------------------------------------------------- 1 | int z; 2 | 3 | -------------------------------------------------------------------------------- /lib/antlr-2.7.5/examples/cpp/lexRewrite/test.in: -------------------------------------------------------------------------------- 1 | abc := ( 34 ) 2 | -------------------------------------------------------------------------------- /lib/antlr-2.7.5/examples/cpp/multiParser/test.in: -------------------------------------------------------------------------------- 1 | A B C C B A 2 | -------------------------------------------------------------------------------- /lib/antlr-2.7.5/examples/cpp/parseBinary/data: -------------------------------------------------------------------------------- 1 | a test -------------------------------------------------------------------------------- /lib/antlr-2.7.5/examples/cpp/transform/test.in: -------------------------------------------------------------------------------- 1 | 0+3+0*5+0; 2 | -------------------------------------------------------------------------------- /lib/antlr-2.7.5/examples/csharp/ASTsupport/shiplist: -------------------------------------------------------------------------------- 1 | ASTSupport.build 2 | t.bat 3 | test.g 4 | -------------------------------------------------------------------------------- /lib/antlr-2.7.5/examples/csharp/HTML/shiplist: -------------------------------------------------------------------------------- 1 | html.g 2 | Main.java 3 | test.html 4 | -------------------------------------------------------------------------------- /lib/antlr-2.7.5/examples/csharp/IDL/shiplist: -------------------------------------------------------------------------------- 1 | idl.g 2 | test.idl 3 | Main.java 4 | -------------------------------------------------------------------------------- /lib/antlr-2.7.5/examples/csharp/calc/test.in: -------------------------------------------------------------------------------- 1 | 3+4*5; 2 | -------------------------------------------------------------------------------- /lib/antlr-2.7.5/examples/csharp/columns/shiplist: -------------------------------------------------------------------------------- 1 | columns.build 2 | track.g 3 | test.in 4 | -------------------------------------------------------------------------------- /lib/antlr-2.7.5/examples/csharp/cpp/subincl.h: -------------------------------------------------------------------------------- 1 | int z; 2 | 3 | -------------------------------------------------------------------------------- /lib/antlr-2.7.5/examples/csharp/exprAST/test.in: -------------------------------------------------------------------------------- 1 | 4 / (5+6) *f(x,y,z,1+2) 2 | 3 | -------------------------------------------------------------------------------- /lib/antlr-2.7.5/examples/csharp/exprAST/test2.in: -------------------------------------------------------------------------------- 1 | 3+4 2 | 3 | -------------------------------------------------------------------------------- /lib/antlr-2.7.5/examples/csharp/filterWithRule/shiplist: -------------------------------------------------------------------------------- 1 | filterWithRule.build 2 | t.g 3 | t.html 4 | Test.cs 5 | -------------------------------------------------------------------------------- /lib/antlr-2.7.5/examples/csharp/heteroAST/test.in: -------------------------------------------------------------------------------- 1 | 3+4*5+21; 2 | -------------------------------------------------------------------------------- /lib/antlr-2.7.5/examples/csharp/includeFile/subincl.h: -------------------------------------------------------------------------------- 1 | int z; 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /lib/antlr-2.7.5/examples/csharp/parseBinary/data: -------------------------------------------------------------------------------- 1 | a test -------------------------------------------------------------------------------- /lib/antlr-2.7.5/examples/csharp/tinyc/shiplist: -------------------------------------------------------------------------------- 1 | input.c 2 | lexer.g 3 | tinyc.g 4 | -------------------------------------------------------------------------------- /lib/antlr-2.7.5/examples/csharp/unicode/shiplist: -------------------------------------------------------------------------------- 1 | unicode.g 2 | test.in 3 | -------------------------------------------------------------------------------- /lib/antlr-2.7.5/examples/java/ASTsupport/shiplist: -------------------------------------------------------------------------------- 1 | t.bat 2 | test.g 3 | -------------------------------------------------------------------------------- /lib/antlr-2.7.5/examples/java/HTML/shiplist: -------------------------------------------------------------------------------- 1 | html.g 2 | Main.java 3 | test.html 4 | -------------------------------------------------------------------------------- /lib/antlr-2.7.5/examples/java/IDL/shiplist: -------------------------------------------------------------------------------- 1 | idl.g 2 | test.idl 3 | Main.java 4 | -------------------------------------------------------------------------------- /lib/antlr-2.7.5/examples/java/calc/test.in: -------------------------------------------------------------------------------- 1 | 3+4*5; 2 | -------------------------------------------------------------------------------- /lib/antlr-2.7.5/examples/java/columns/shiplist: -------------------------------------------------------------------------------- 1 | track.g 2 | test.in 3 | -------------------------------------------------------------------------------- /lib/antlr-2.7.5/examples/java/cpp/subincl.h: -------------------------------------------------------------------------------- 1 | int z; 2 | 3 | -------------------------------------------------------------------------------- /lib/antlr-2.7.5/examples/java/exprAST/test.in: -------------------------------------------------------------------------------- 1 | 4 / (5+6) *f(x,y,z,1+2) 2 | 3 | -------------------------------------------------------------------------------- /lib/antlr-2.7.5/examples/java/exprAST/test2.in: -------------------------------------------------------------------------------- 1 | 3+4 2 | 3 | -------------------------------------------------------------------------------- /lib/antlr-2.7.5/examples/java/filterWithRule/shiplist: -------------------------------------------------------------------------------- 1 | t.g 2 | t.html 3 | Test.java 4 | -------------------------------------------------------------------------------- /lib/antlr-2.7.5/examples/java/heteroAST/test.in: -------------------------------------------------------------------------------- 1 | 3+4*5+21; 2 | -------------------------------------------------------------------------------- /lib/antlr-2.7.5/examples/java/includeFile/subincl.h: -------------------------------------------------------------------------------- 1 | int z; 2 | 3 | -------------------------------------------------------------------------------- /lib/antlr-2.7.5/examples/java/lexRewrite/shiplist: -------------------------------------------------------------------------------- 1 | Main.java 2 | rewrite.g 3 | test.in 4 | -------------------------------------------------------------------------------- /lib/antlr-2.7.5/examples/java/lexRewrite/test.in: -------------------------------------------------------------------------------- 1 | abc := ( 34 ) 2 | -------------------------------------------------------------------------------- /lib/antlr-2.7.5/examples/java/parseBinary/data: -------------------------------------------------------------------------------- 1 | a test -------------------------------------------------------------------------------- /lib/antlr-2.7.5/examples/java/tinyc/shiplist: -------------------------------------------------------------------------------- 1 | input.c 2 | lexer.g 3 | tinyc.g 4 | -------------------------------------------------------------------------------- /lib/antlr-2.7.5/examples/java/transform/test.in: -------------------------------------------------------------------------------- 1 | 0+3+0*5+0; 2 | -------------------------------------------------------------------------------- /lib/antlr-2.7.5/examples/java/unicode/shiplist: -------------------------------------------------------------------------------- 1 | unicode.g 2 | test.in 3 | -------------------------------------------------------------------------------- /lib/antlr-2.7.5/examples/python/cpp/subincl.h: -------------------------------------------------------------------------------- 1 | int z; 2 | 3 | -------------------------------------------------------------------------------- /lib/antlr-2.7.5/examples/python/exprAST/expr.in: -------------------------------------------------------------------------------- 1 | 4 / (5+6) *f(x,y,z,1+2) 2 | 3 | -------------------------------------------------------------------------------- /lib/antlr-2.7.5/examples/python/exprAST/expr2.in: -------------------------------------------------------------------------------- 1 | 3+*5 2 | 3 | -------------------------------------------------------------------------------- /lib/antlr-2.7.5/examples/python/heteroAST/hetero.in: -------------------------------------------------------------------------------- 1 | 3+4*5+21; 2 | -------------------------------------------------------------------------------- /lib/antlr-2.7.5/examples/python/includeFile/subincl.h: -------------------------------------------------------------------------------- 1 | int z; 2 | 3 | -------------------------------------------------------------------------------- /lib/antlr-2.7.5/examples/python/lexRewrite/rewrite.in: -------------------------------------------------------------------------------- 1 | abc := ( 34 ) 2 | -------------------------------------------------------------------------------- /lib/antlr-2.7.5/examples/python/lexerTester/test.in: -------------------------------------------------------------------------------- 1 | AAA 2 | -------------------------------------------------------------------------------- /lib/antlr-2.7.5/examples/python/multiParser/multiparser.in: -------------------------------------------------------------------------------- 1 | A B C C B A 2 | -------------------------------------------------------------------------------- /lib/antlr-2.7.5/examples/python/parseBinary/binary.in: -------------------------------------------------------------------------------- 1 | a test -------------------------------------------------------------------------------- /lib/antlr-2.7.5/examples/python/transform/transform.in: -------------------------------------------------------------------------------- 1 | 0+3+0*5+0; 2 | -------------------------------------------------------------------------------- /lib/antlr-2.7.5/extras/antlr-mode.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/lib/antlr-2.7.5/extras/antlr-mode.el -------------------------------------------------------------------------------- /lib/antlr-2.7.5/extras/setup.hint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/lib/antlr-2.7.5/extras/setup.hint -------------------------------------------------------------------------------- /lib/antlr-2.7.5/lib/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/lib/antlr-2.7.5/lib/Makefile.in -------------------------------------------------------------------------------- /lib/antlr-2.7.5/lib/antlr.runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/lib/antlr-2.7.5/lib/antlr.runtime.dll -------------------------------------------------------------------------------- /lib/antlr-2.7.5/lib/cpp/AUTHORS: -------------------------------------------------------------------------------- 1 | Author: 2 | Peter Wells 3 | -------------------------------------------------------------------------------- /lib/antlr-2.7.5/lib/cpp/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/lib/antlr-2.7.5/lib/cpp/ChangeLog -------------------------------------------------------------------------------- /lib/antlr-2.7.5/lib/cpp/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/lib/antlr-2.7.5/lib/cpp/Makefile.in -------------------------------------------------------------------------------- /lib/antlr-2.7.5/lib/cpp/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/lib/antlr-2.7.5/lib/cpp/README -------------------------------------------------------------------------------- /lib/antlr-2.7.5/lib/cpp/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/lib/antlr-2.7.5/lib/cpp/TODO -------------------------------------------------------------------------------- /lib/antlr-2.7.5/lib/cpp/antlr/AST.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/lib/antlr-2.7.5/lib/cpp/antlr/AST.hpp -------------------------------------------------------------------------------- /lib/antlr-2.7.5/lib/cpp/doxygen.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/lib/antlr-2.7.5/lib/cpp/doxygen.cfg -------------------------------------------------------------------------------- /lib/antlr-2.7.5/lib/cpp/src/Token.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/lib/antlr-2.7.5/lib/cpp/src/Token.cpp -------------------------------------------------------------------------------- /lib/antlr-2.7.5/lib/cpp/src/dll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/lib/antlr-2.7.5/lib/cpp/src/dll.cpp -------------------------------------------------------------------------------- /lib/antlr-2.7.5/lib/python/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/lib/antlr-2.7.5/lib/python/setup.py -------------------------------------------------------------------------------- /lib/antlr-2.7.5/scripts/Rules.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/lib/antlr-2.7.5/scripts/Rules.make -------------------------------------------------------------------------------- /lib/antlr-2.7.5/scripts/antlr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/lib/antlr-2.7.5/scripts/antlr.sh -------------------------------------------------------------------------------- /lib/antlr-2.7.5/scripts/antlr.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/lib/antlr-2.7.5/scripts/antlr.sh.in -------------------------------------------------------------------------------- /lib/antlr-2.7.5/scripts/antlr.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/lib/antlr-2.7.5/scripts/antlr.spec -------------------------------------------------------------------------------- /lib/antlr-2.7.5/scripts/antlr.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/lib/antlr-2.7.5/scripts/antlr.spec.in -------------------------------------------------------------------------------- /lib/antlr-2.7.5/scripts/c.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/lib/antlr-2.7.5/scripts/c.sh -------------------------------------------------------------------------------- /lib/antlr-2.7.5/scripts/c.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/lib/antlr-2.7.5/scripts/c.sh.in -------------------------------------------------------------------------------- /lib/antlr-2.7.5/scripts/config.deps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/lib/antlr-2.7.5/scripts/config.deps -------------------------------------------------------------------------------- /lib/antlr-2.7.5/scripts/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/lib/antlr-2.7.5/scripts/config.guess -------------------------------------------------------------------------------- /lib/antlr-2.7.5/scripts/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/lib/antlr-2.7.5/scripts/config.make -------------------------------------------------------------------------------- /lib/antlr-2.7.5/scripts/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/lib/antlr-2.7.5/scripts/config.sub -------------------------------------------------------------------------------- /lib/antlr-2.7.5/scripts/config.vars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/lib/antlr-2.7.5/scripts/config.vars -------------------------------------------------------------------------------- /lib/antlr-2.7.5/scripts/cpp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/lib/antlr-2.7.5/scripts/cpp.sh -------------------------------------------------------------------------------- /lib/antlr-2.7.5/scripts/cpp.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/lib/antlr-2.7.5/scripts/cpp.sh.in -------------------------------------------------------------------------------- /lib/antlr-2.7.5/scripts/csc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/lib/antlr-2.7.5/scripts/csc.sh -------------------------------------------------------------------------------- /lib/antlr-2.7.5/scripts/csc.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/lib/antlr-2.7.5/scripts/csc.sh.in -------------------------------------------------------------------------------- /lib/antlr-2.7.5/scripts/cxx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/lib/antlr-2.7.5/scripts/cxx.sh -------------------------------------------------------------------------------- /lib/antlr-2.7.5/scripts/cxx.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/lib/antlr-2.7.5/scripts/cxx.sh.in -------------------------------------------------------------------------------- /lib/antlr-2.7.5/scripts/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/lib/antlr-2.7.5/scripts/install-sh -------------------------------------------------------------------------------- /lib/antlr-2.7.5/scripts/jar.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/lib/antlr-2.7.5/scripts/jar.sh -------------------------------------------------------------------------------- /lib/antlr-2.7.5/scripts/jar.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/lib/antlr-2.7.5/scripts/jar.sh.in -------------------------------------------------------------------------------- /lib/antlr-2.7.5/scripts/java.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/lib/antlr-2.7.5/scripts/java.sh -------------------------------------------------------------------------------- /lib/antlr-2.7.5/scripts/java.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/lib/antlr-2.7.5/scripts/java.sh.in -------------------------------------------------------------------------------- /lib/antlr-2.7.5/scripts/javac.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/lib/antlr-2.7.5/scripts/javac.sh -------------------------------------------------------------------------------- /lib/antlr-2.7.5/scripts/javac.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/lib/antlr-2.7.5/scripts/javac.sh.in -------------------------------------------------------------------------------- /lib/antlr-2.7.5/scripts/lib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/lib/antlr-2.7.5/scripts/lib.sh -------------------------------------------------------------------------------- /lib/antlr-2.7.5/scripts/lib.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/lib/antlr-2.7.5/scripts/lib.sh.in -------------------------------------------------------------------------------- /lib/antlr-2.7.5/scripts/link.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/lib/antlr-2.7.5/scripts/link.sh -------------------------------------------------------------------------------- /lib/antlr-2.7.5/scripts/link.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/lib/antlr-2.7.5/scripts/link.sh.in -------------------------------------------------------------------------------- /lib/antlr-2.7.5/scripts/pyantlr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/lib/antlr-2.7.5/scripts/pyantlr.sh -------------------------------------------------------------------------------- /lib/antlr-2.7.5/scripts/pyinst.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/lib/antlr-2.7.5/scripts/pyinst.sh.in -------------------------------------------------------------------------------- /lib/antlr-2.7.5/scripts/python.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/lib/antlr-2.7.5/scripts/python.sh -------------------------------------------------------------------------------- /lib/antlr-2.7.5/scripts/python.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/lib/antlr-2.7.5/scripts/python.sh.in -------------------------------------------------------------------------------- /lib/antlr-2.7.5/scripts/run-antlr.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/lib/antlr-2.7.5/scripts/run-antlr.in -------------------------------------------------------------------------------- /lib/moq-3.1.416.3/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/lib/moq-3.1.416.3/License.txt -------------------------------------------------------------------------------- /lib/moq-3.1.416.3/Moq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/lib/moq-3.1.416.3/Moq.dll -------------------------------------------------------------------------------- /lib/moq-3.1.416.3/Moq.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/lib/moq-3.1.416.3/Moq.xml -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/license.txt -------------------------------------------------------------------------------- /micro-profile.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/micro-profile.build -------------------------------------------------------------------------------- /notice.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/notice.txt -------------------------------------------------------------------------------- /performance/ArrayInitializer.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/performance/ArrayInitializer.boo -------------------------------------------------------------------------------- /performance/ArrayInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/performance/ArrayInitializer.cs -------------------------------------------------------------------------------- /performance/callables.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/performance/callables.boo -------------------------------------------------------------------------------- /performance/char-in-string.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/performance/char-in-string.boo -------------------------------------------------------------------------------- /performance/delegate.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/performance/delegate.boo -------------------------------------------------------------------------------- /performance/duckoperators.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/performance/duckoperators.boo -------------------------------------------------------------------------------- /performance/duckoperators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/performance/duckoperators.py -------------------------------------------------------------------------------- /performance/implicit-bool.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/performance/implicit-bool.boo -------------------------------------------------------------------------------- /performance/unboxing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/performance/unboxing.cs -------------------------------------------------------------------------------- /scripts/Templates/CodeSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/scripts/Templates/CodeSerializer.cs -------------------------------------------------------------------------------- /scripts/Templates/Collection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/scripts/Templates/Collection.cs -------------------------------------------------------------------------------- /scripts/Templates/CollectionImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/scripts/Templates/CollectionImpl.cs -------------------------------------------------------------------------------- /scripts/Templates/DepthFirstGuide.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/scripts/Templates/DepthFirstGuide.cs -------------------------------------------------------------------------------- /scripts/Templates/Enum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/scripts/Templates/Enum.cs -------------------------------------------------------------------------------- /scripts/Templates/IAstVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/scripts/Templates/IAstVisitor.cs -------------------------------------------------------------------------------- /scripts/Templates/Node.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/scripts/Templates/Node.cs -------------------------------------------------------------------------------- /scripts/Templates/NodeImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/scripts/Templates/NodeImpl.cs -------------------------------------------------------------------------------- /scripts/Templates/NodeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/scripts/Templates/NodeType.cs -------------------------------------------------------------------------------- /scripts/VisitorBenchmark.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/scripts/VisitorBenchmark.boo -------------------------------------------------------------------------------- /scripts/astgen.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/scripts/astgen.boo -------------------------------------------------------------------------------- /scripts/dumptokens.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/scripts/dumptokens.boo -------------------------------------------------------------------------------- /scripts/removenotice.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/scripts/removenotice.boo -------------------------------------------------------------------------------- /scripts/rename-types.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/scripts/rename-types.boo -------------------------------------------------------------------------------- /scripts/update-vs2005-env.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/scripts/update-vs2005-env.boo -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/settings.gradle -------------------------------------------------------------------------------- /src/.gitattributes: -------------------------------------------------------------------------------- 1 | -whitespace 2 | -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- 1 | bin 2 | obj 3 | *.userprefs 4 | -------------------------------------------------------------------------------- /src/Boo-VS2010.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/src/Boo-VS2010.sln -------------------------------------------------------------------------------- /src/Boo-VS2010.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/src/Boo-VS2010.sln.DotSettings -------------------------------------------------------------------------------- /src/Boo.Lang.CodeDom/AssemblyInfo.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/src/Boo.Lang.CodeDom/AssemblyInfo.boo -------------------------------------------------------------------------------- /src/Boo.Lang.CodeDom/Extensions.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/src/Boo.Lang.CodeDom/Extensions.boo -------------------------------------------------------------------------------- /src/Boo.Lang.CodeDom/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/src/Boo.Lang.CodeDom/README -------------------------------------------------------------------------------- /src/Boo.Lang.CodeDom/default.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/src/Boo.Lang.CodeDom/default.build -------------------------------------------------------------------------------- /src/Boo.Lang.CodeDom/test.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/src/Boo.Lang.CodeDom/test.xsd -------------------------------------------------------------------------------- /src/Boo.Lang.Compiler/.monolipse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/src/Boo.Lang.Compiler/.monolipse -------------------------------------------------------------------------------- /src/Boo.Lang.Compiler/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/src/Boo.Lang.Compiler/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Boo.Lang.Compiler/Ast/AstUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/src/Boo.Lang.Compiler/Ast/AstUtil.cs -------------------------------------------------------------------------------- /src/Boo.Lang.Compiler/Ast/Block.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/src/Boo.Lang.Compiler/Ast/Block.cs -------------------------------------------------------------------------------- /src/Boo.Lang.Compiler/Ast/Event.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/src/Boo.Lang.Compiler/Ast/Event.cs -------------------------------------------------------------------------------- /src/Boo.Lang.Compiler/Ast/Field.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/src/Boo.Lang.Compiler/Ast/Field.cs -------------------------------------------------------------------------------- /src/Boo.Lang.Compiler/Ast/Import.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/src/Boo.Lang.Compiler/Ast/Import.cs -------------------------------------------------------------------------------- /src/Boo.Lang.Compiler/Ast/Local.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/src/Boo.Lang.Compiler/Ast/Local.cs -------------------------------------------------------------------------------- /src/Boo.Lang.Compiler/Ast/Method.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/src/Boo.Lang.Compiler/Ast/Method.cs -------------------------------------------------------------------------------- /src/Boo.Lang.Compiler/Ast/Module.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/src/Boo.Lang.Compiler/Ast/Module.cs -------------------------------------------------------------------------------- /src/Boo.Lang.Compiler/Ast/Node.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/src/Boo.Lang.Compiler/Ast/Node.cs -------------------------------------------------------------------------------- /src/Boo.Lang.Compiler/Ast/Property.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/src/Boo.Lang.Compiler/Ast/Property.cs -------------------------------------------------------------------------------- /src/Boo.Lang.Compiler/Ast/Slice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/src/Boo.Lang.Compiler/Ast/Slice.cs -------------------------------------------------------------------------------- /src/Boo.Lang.Compiler/BooCompiler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/src/Boo.Lang.Compiler/BooCompiler.cs -------------------------------------------------------------------------------- /src/Boo.Lang.Compiler/IAstMacro.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/src/Boo.Lang.Compiler/IAstMacro.cs -------------------------------------------------------------------------------- /src/Boo.Lang.Compiler/IO/FileInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/src/Boo.Lang.Compiler/IO/FileInput.cs -------------------------------------------------------------------------------- /src/Boo.Lang.Compiler/Util/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/src/Boo.Lang.Compiler/Util/Methods.cs -------------------------------------------------------------------------------- /src/Boo.Lang.Compiler/Util/Set.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/src/Boo.Lang.Compiler/Util/Set.cs -------------------------------------------------------------------------------- /src/Boo.Lang.Extensions/.monolipse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/src/Boo.Lang.Extensions/.monolipse -------------------------------------------------------------------------------- /src/Boo.Lang.Interpreter/.monolipse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/src/Boo.Lang.Interpreter/.monolipse -------------------------------------------------------------------------------- /src/Boo.Lang.Parser/.monolipse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/src/Boo.Lang.Parser/.monolipse -------------------------------------------------------------------------------- /src/Boo.Lang.Parser/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/src/Boo.Lang.Parser/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Boo.Lang.Parser/BooLexer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/src/Boo.Lang.Parser/BooLexer.cs -------------------------------------------------------------------------------- /src/Boo.Lang.Parser/BooParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/src/Boo.Lang.Parser/BooParser.cs -------------------------------------------------------------------------------- /src/Boo.Lang.Parser/BooParserBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/src/Boo.Lang.Parser/BooParserBase.cs -------------------------------------------------------------------------------- /src/Boo.Lang.Parser/BooParsingStep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/src/Boo.Lang.Parser/BooParsingStep.cs -------------------------------------------------------------------------------- /src/Boo.Lang.Parser/BooToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/src/Boo.Lang.Parser/BooToken.cs -------------------------------------------------------------------------------- /src/Boo.Lang.Parser/BooTokenTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/src/Boo.Lang.Parser/BooTokenTypes.cs -------------------------------------------------------------------------------- /src/Boo.Lang.Parser/BooTokenTypes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/src/Boo.Lang.Parser/BooTokenTypes.txt -------------------------------------------------------------------------------- /src/Boo.Lang.Parser/CodeFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/src/Boo.Lang.Parser/CodeFactory.cs -------------------------------------------------------------------------------- /src/Boo.Lang.Parser/OperatorParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/src/Boo.Lang.Parser/OperatorParser.cs -------------------------------------------------------------------------------- /src/Boo.Lang.Parser/ParserSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/src/Boo.Lang.Parser/ParserSettings.cs -------------------------------------------------------------------------------- /src/Boo.Lang.Parser/Util/Readers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/src/Boo.Lang.Parser/Util/Readers.cs -------------------------------------------------------------------------------- /src/Boo.Lang.Parser/WSABooLexer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/src/Boo.Lang.Parser/WSABooLexer.cs -------------------------------------------------------------------------------- /src/Boo.Lang.Parser/WSABooParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/src/Boo.Lang.Parser/WSABooParser.cs -------------------------------------------------------------------------------- /src/Boo.Lang.Parser/boo.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/src/Boo.Lang.Parser/boo.g -------------------------------------------------------------------------------- /src/Boo.Lang.Parser/booel.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/src/Boo.Lang.Parser/booel.g -------------------------------------------------------------------------------- /src/Boo.Lang.Parser/wsaboo.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/src/Boo.Lang.Parser/wsaboo.g -------------------------------------------------------------------------------- /src/Boo.Lang.Parser/wsabooel.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/src/Boo.Lang.Parser/wsabooel.g -------------------------------------------------------------------------------- /src/Boo.Lang.Useful/.monolipse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/src/Boo.Lang.Useful/.monolipse -------------------------------------------------------------------------------- /src/Boo.Lang.Useful/AssemblyInfo.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/src/Boo.Lang.Useful/AssemblyInfo.boo -------------------------------------------------------------------------------- /src/Boo.Lang.Useful/IO/walk.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/src/Boo.Lang.Useful/IO/walk.boo -------------------------------------------------------------------------------- /src/Boo.Lang/.monolipse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/src/Boo.Lang/.monolipse -------------------------------------------------------------------------------- /src/Boo.Lang/AbstractGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/src/Boo.Lang/AbstractGenerator.cs -------------------------------------------------------------------------------- /src/Boo.Lang/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/src/Boo.Lang/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Boo.Lang/Boo.Lang.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/src/Boo.Lang/Boo.Lang.csproj -------------------------------------------------------------------------------- /src/Boo.Lang/BooComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/src/Boo.Lang/BooComparer.cs -------------------------------------------------------------------------------- /src/Boo.Lang/BooHashCodeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/src/Boo.Lang/BooHashCodeProvider.cs -------------------------------------------------------------------------------- /src/Boo.Lang/Builtins.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/src/Boo.Lang/Builtins.cs -------------------------------------------------------------------------------- /src/Boo.Lang/DuckTypedAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/src/Boo.Lang/DuckTypedAttribute.cs -------------------------------------------------------------------------------- /src/Boo.Lang/DynamicVariable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/src/Boo.Lang/DynamicVariable.cs -------------------------------------------------------------------------------- /src/Boo.Lang/Environments/My.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/src/Boo.Lang/Environments/My.cs -------------------------------------------------------------------------------- /src/Boo.Lang/GenericGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/src/Boo.Lang/GenericGenerator.cs -------------------------------------------------------------------------------- /src/Boo.Lang/GenericList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/src/Boo.Lang/GenericList.cs -------------------------------------------------------------------------------- /src/Boo.Lang/Hash.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/src/Boo.Lang/Hash.cs -------------------------------------------------------------------------------- /src/Boo.Lang/ICallable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/src/Boo.Lang/ICallable.cs -------------------------------------------------------------------------------- /src/Boo.Lang/IQuackFu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/src/Boo.Lang/IQuackFu.cs -------------------------------------------------------------------------------- /src/Boo.Lang/IQuackFuMember.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/src/Boo.Lang/IQuackFuMember.cs -------------------------------------------------------------------------------- /src/Boo.Lang/IReflectiveQuackFu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/src/Boo.Lang/IReflectiveQuackFu.cs -------------------------------------------------------------------------------- /src/Boo.Lang/List.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/src/Boo.Lang/List.cs -------------------------------------------------------------------------------- /src/Boo.Lang/MetaAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/src/Boo.Lang/MetaAttribute.cs -------------------------------------------------------------------------------- /src/Boo.Lang/ModuleAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/src/Boo.Lang/ModuleAttribute.cs -------------------------------------------------------------------------------- /src/Boo.Lang/Procedure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/src/Boo.Lang/Procedure.cs -------------------------------------------------------------------------------- /src/Boo.Lang/QuackFuMember.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/src/Boo.Lang/QuackFuMember.cs -------------------------------------------------------------------------------- /src/Boo.Lang/ResourceManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/src/Boo.Lang/ResourceManager.cs -------------------------------------------------------------------------------- /src/Boo.Lang/Resources/.gitignore: -------------------------------------------------------------------------------- 1 | *.resources 2 | -------------------------------------------------------------------------------- /src/Boo.Lang/Runtime/ICoercible.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/src/Boo.Lang/Runtime/ICoercible.cs -------------------------------------------------------------------------------- /src/Boo.Lang/Runtime/NumericTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/src/Boo.Lang/Runtime/NumericTypes.cs -------------------------------------------------------------------------------- /src/Boo.NAnt.Tasks/BooTask.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/src/Boo.NAnt.Tasks/BooTask.boo -------------------------------------------------------------------------------- /src/Boo.NAnt.Tasks/BoocTask.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/src/Boo.NAnt.Tasks/BoocTask.boo -------------------------------------------------------------------------------- /src/Boo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/src/Boo.sln -------------------------------------------------------------------------------- /src/boo.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/src/boo.snk -------------------------------------------------------------------------------- /src/booc/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/src/booc/App.cs -------------------------------------------------------------------------------- /src/booc/App.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/src/booc/App.ico -------------------------------------------------------------------------------- /src/booc/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/src/booc/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/booc/CommandLineParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/src/booc/CommandLineParser.cs -------------------------------------------------------------------------------- /src/booc/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/src/booc/app.config -------------------------------------------------------------------------------- /src/booc/booc.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/src/booc/booc.csproj -------------------------------------------------------------------------------- /src/booc/booc.rsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/src/booc/booc.rsp -------------------------------------------------------------------------------- /src/booi/AssemblyInfo.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/src/booi/AssemblyInfo.boo -------------------------------------------------------------------------------- /src/booi/AssemblyResolver.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/src/booi/AssemblyResolver.boo -------------------------------------------------------------------------------- /src/booi/CommandLine.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/src/booi/CommandLine.boo -------------------------------------------------------------------------------- /src/booi/CompilationCache.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/src/booi/CompilationCache.boo -------------------------------------------------------------------------------- /src/booi/CompilerParameters.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/src/booi/CompilerParameters.boo -------------------------------------------------------------------------------- /src/booi/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/src/booi/README.rst -------------------------------------------------------------------------------- /src/booi/booi.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/src/booi/booi.boo -------------------------------------------------------------------------------- /src/booi/booi.booproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/src/booi/booi.booproj -------------------------------------------------------------------------------- /src/booish/booish.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/src/booish/booish.boo -------------------------------------------------------------------------------- /src/booish/booish.booproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/src/booish/booish.booproj -------------------------------------------------------------------------------- /tests/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | bin 3 | obj 4 | -------------------------------------------------------------------------------- /tests/BooCompiler.Tests/Exceptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/BooCompiler.Tests/Exceptions.cs -------------------------------------------------------------------------------- /tests/BooCompiler.Tests/MyTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/BooCompiler.Tests/MyTest.cs -------------------------------------------------------------------------------- /tests/BooCompiler.Tests/SmokeTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/BooCompiler.Tests/SmokeTest.cs -------------------------------------------------------------------------------- /tests/BooModules/Generators.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/BooModules/Generators.boo -------------------------------------------------------------------------------- /tests/BooModules/Math.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/BooModules/Math.boo -------------------------------------------------------------------------------- /tests/BooModules/SunShip.boo: -------------------------------------------------------------------------------- 1 | namespace SunShip 2 | 3 | def Ascent(): 4 | return "10:10" 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /tests/booc.Tests/booc.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/booc.Tests/booc.Tests.csproj -------------------------------------------------------------------------------- /tests/default.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/default.build -------------------------------------------------------------------------------- /tests/generate_regression.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/generate_regression.boo -------------------------------------------------------------------------------- /tests/nunit.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/nunit.inc -------------------------------------------------------------------------------- /tests/test.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/test.snk -------------------------------------------------------------------------------- /tests/testcases/compilation/1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/compilation/1.boo -------------------------------------------------------------------------------- /tests/testcases/compilation/bool0.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/compilation/bool0.boo -------------------------------------------------------------------------------- /tests/testcases/compilation/if0.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/compilation/if0.boo -------------------------------------------------------------------------------- /tests/testcases/compilation/in0.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/compilation/in0.boo -------------------------------------------------------------------------------- /tests/testcases/compilation/in1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/compilation/in1.boo -------------------------------------------------------------------------------- /tests/testcases/compilation/is0.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/compilation/is0.boo -------------------------------------------------------------------------------- /tests/testcases/compilation/long0.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/compilation/long0.boo -------------------------------------------------------------------------------- /tests/testcases/compilation/math.boo: -------------------------------------------------------------------------------- 1 | def square(a as int): 2 | return a*a 3 | -------------------------------------------------------------------------------- /tests/testcases/compilation/mult0.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/compilation/mult0.boo -------------------------------------------------------------------------------- /tests/testcases/compilation/not0.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/compilation/not0.boo -------------------------------------------------------------------------------- /tests/testcases/compilation/null0.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/compilation/null0.boo -------------------------------------------------------------------------------- /tests/testcases/compilation/pow0.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/compilation/pow0.boo -------------------------------------------------------------------------------- /tests/testcases/compilation/range.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/compilation/range.boo -------------------------------------------------------------------------------- /tests/testcases/compilation/re0.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/compilation/re0.boo -------------------------------------------------------------------------------- /tests/testcases/compilation/re1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/compilation/re1.boo -------------------------------------------------------------------------------- /tests/testcases/compilation/sort.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/compilation/sort.boo -------------------------------------------------------------------------------- /tests/testcases/compilation/sum0.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/compilation/sum0.boo -------------------------------------------------------------------------------- /tests/testcases/ducky/BOO-827-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/ducky/BOO-827-1.boo -------------------------------------------------------------------------------- /tests/testcases/ducky/callable-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/ducky/callable-1.boo -------------------------------------------------------------------------------- /tests/testcases/ducky/duck-12.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/ducky/duck-12.boo -------------------------------------------------------------------------------- /tests/testcases/ducky/ducky-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/ducky/ducky-1.boo -------------------------------------------------------------------------------- /tests/testcases/ducky/ducky-10.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/ducky/ducky-10.boo -------------------------------------------------------------------------------- /tests/testcases/ducky/ducky-11.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/ducky/ducky-11.boo -------------------------------------------------------------------------------- /tests/testcases/ducky/ducky-2.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/ducky/ducky-2.boo -------------------------------------------------------------------------------- /tests/testcases/ducky/ducky-3.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/ducky/ducky-3.boo -------------------------------------------------------------------------------- /tests/testcases/ducky/ducky-4.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/ducky/ducky-4.boo -------------------------------------------------------------------------------- /tests/testcases/ducky/ducky-5.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/ducky/ducky-5.boo -------------------------------------------------------------------------------- /tests/testcases/ducky/ducky-6.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/ducky/ducky-6.boo -------------------------------------------------------------------------------- /tests/testcases/ducky/ducky-7.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/ducky/ducky-7.boo -------------------------------------------------------------------------------- /tests/testcases/ducky/ducky-8.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/ducky/ducky-8.boo -------------------------------------------------------------------------------- /tests/testcases/ducky/ducky-9.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/ducky/ducky-9.boo -------------------------------------------------------------------------------- /tests/testcases/ducky/implicit-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/ducky/implicit-1.boo -------------------------------------------------------------------------------- /tests/testcases/ducky/implicit-2.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/ducky/implicit-2.boo -------------------------------------------------------------------------------- /tests/testcases/ducky/implicit-3.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/ducky/implicit-3.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0000-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0000-1.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0004-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0004-1.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0004-2.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0004-2.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0004-3.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0004-3.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0005-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0005-1.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0005-2.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0005-2.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0006-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0006-1.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0007-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0007-1.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0017-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0017-1.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0017-2.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0017-2.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0017-3.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0017-3.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0017-4.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0017-4.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0018-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0018-1.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0018-2.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0018-2.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0018-3.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0018-3.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0018-4.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0018-4.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0019-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0019-1.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0019-2.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0019-2.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0020-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0020-1.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0020-2.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0020-2.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0020-3.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0020-3.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0020-4.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0020-4.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0021-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0021-1.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0022-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0022-1.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0022-10.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0022-10.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0022-11.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0022-11.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0022-12.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0022-12.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0022-13.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0022-13.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0022-14.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0022-14.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0022-2.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0022-2.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0022-3.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0022-3.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0022-4.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0022-4.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0022-5.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0022-5.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0022-6.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0022-6.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0022-8.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0022-8.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0022-9.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0022-9.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0023-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0023-1.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0024-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0024-1.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0024-2.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0024-2.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0024-3.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0024-3.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0024-4.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0024-4.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0032-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0032-1.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0035-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0035-1.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0035-2.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0035-2.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0035-3.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0035-3.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0035-4.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0035-4.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0038-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0038-1.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0045-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0045-1.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0045-2.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0045-2.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0045-3.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0045-3.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0045-4.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0045-4.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0046-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0046-1.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0046-2.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0046-2.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0047-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0047-1.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0047-2.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0047-2.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0047-3.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0047-3.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0047-4.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0047-4.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0047-5.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0047-5.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0049-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0049-1.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0051-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0051-1.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0051-2.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0051-2.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0053-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0053-1.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0053-2.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0053-2.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0053-3.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0053-3.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0057-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0057-1.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0058-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0058-1.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0060-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0060-1.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0060-2.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0060-2.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0060-3.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0060-3.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0061-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0061-1.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0063-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0063-1.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0063-2.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0063-2.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0063-3.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0063-3.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0063-4.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0063-4.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0063-5.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0063-5.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0063-6.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0063-6.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0063-7.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0063-7.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0063-8.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0063-8.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0065-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0065-1.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0065-2.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0065-2.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0067-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0067-1.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0067-2.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0067-2.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0067-3.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0067-3.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0070-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0070-1.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0070-2.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0070-2.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0070-3.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0070-3.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0071-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0071-1.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0071-2.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0071-2.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0072-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0072-1.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0072-2.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0072-2.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0073-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0073-1.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0079-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0079-1.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0080-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0080-1.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0081-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0081-1.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0081-2.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0081-2.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0081-3.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0081-3.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0081-4.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0081-4.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0081-5.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0081-5.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0082-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0082-1.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0083-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0083-1.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0084-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0084-1.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0085-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0085-1.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0085-3.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0085-3.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0086-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0086-1.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0087-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0087-1.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0089-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0089-1.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0089-10.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0089-10.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0089-11.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0089-11.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0089-12.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0089-12.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0089-13.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0089-13.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0089-14.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0089-14.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0089-15.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0089-15.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0089-16.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0089-16.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0089-2.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0089-2.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0089-3.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0089-3.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0089-4.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0089-4.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0089-5.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0089-5.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0089-6.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0089-6.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0089-7.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0089-7.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0089-8.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0089-8.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0089-9.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0089-9.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0090-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0090-1.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0090-2.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0090-2.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0090-3.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0090-3.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0091-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0091-1.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0092-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0092-1.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0093-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0093-1.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0093-2.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0093-2.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0094-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0094-1.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0095-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0095-1.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0095-2.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0095-2.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0096-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0096-1.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0097-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0097-1.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0097-2.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0097-2.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0099-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0099-1.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0099-2.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0099-2.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0100-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0100-1.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0101-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0101-1.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0101-2.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0101-2.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0102-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0102-1.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0103-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0103-1.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0103-2.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0103-2.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0103-3.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0103-3.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0104-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0104-1.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0105-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0105-1.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0107-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0107-1.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0108-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0108-1.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0111-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0111-1.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0112-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0112-1.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0114-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0114-1.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0115-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0115-1.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0116-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0116-1.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0117-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0117-1.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0120-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0120-1.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0120-2.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0120-2.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0120-3.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0120-3.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0120-4.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0120-4.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0120-5.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0120-5.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0120-6.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0120-6.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0121-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0121-1.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0122-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0122-1.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0123-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0123-1.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0123-2.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0123-2.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0124-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0124-1.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0125-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0125-1.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0126-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0126-1.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0126-2.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0126-2.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0126-3.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0126-3.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0126-4.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0126-4.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0126-5.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0126-5.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0126-6.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0126-6.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0126-7.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0126-7.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0127-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0127-1.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0127-2.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0127-2.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0128-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0128-1.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0129-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0129-1.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0130-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0130-1.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0131-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0131-1.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0131-2.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0131-2.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0132-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0132-1.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0132-2.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0132-2.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0132-3.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0132-3.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0132-4.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0132-4.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0132-5.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0132-5.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0133-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0133-1.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0133-2.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0133-2.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0134-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0134-1.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0134-2.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0134-2.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0136-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0136-1.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0137-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0137-1.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0137-2.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0137-2.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0137-3.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0137-3.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0141.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0141.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0142.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0142.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0143-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0143-1.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0144-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0144-1.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0144-2.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0144-2.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0145-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0145-1.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0150-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0150-1.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0151-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0151-1.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0151-2.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0151-2.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0152-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0152-1.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0153-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0153-1.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0153-2.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0153-2.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0154-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0154-1.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0154-2.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0154-2.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0155-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0155-1.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0156-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0156-1.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0157-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0157-1.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0158-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0158-1.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0165-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0165-1.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0166-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0166-1.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0167-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0167-1.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0169-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0169-1.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0170-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0170-1.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0171-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0171-1.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0173-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0173-1.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0175.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0175.boo -------------------------------------------------------------------------------- /tests/testcases/errors/BCE0176-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/BCE0176-1.boo -------------------------------------------------------------------------------- /tests/testcases/errors/strict-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/errors/strict-1.boo -------------------------------------------------------------------------------- /tests/testcases/integration/modules/modules-2.boo: -------------------------------------------------------------------------------- 1 | import SunShip from BooModules 2 | 3 | 4 | assert "10:10" == Ascent() 5 | -------------------------------------------------------------------------------- /tests/testcases/integration/statements/unpack-10.boo: -------------------------------------------------------------------------------- 1 | a = 3, 2, 1 2 | b, = a 3 | assert 3 == b 4 | -------------------------------------------------------------------------------- /tests/testcases/macros/assert-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/macros/assert-1.boo -------------------------------------------------------------------------------- /tests/testcases/macros/debug-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/macros/debug-1.boo -------------------------------------------------------------------------------- /tests/testcases/macros/ifdef-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/macros/ifdef-1.boo -------------------------------------------------------------------------------- /tests/testcases/macros/macro-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/macros/macro-1.boo -------------------------------------------------------------------------------- /tests/testcases/macros/macro-2.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/macros/macro-2.boo -------------------------------------------------------------------------------- /tests/testcases/macros/macro-3.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/macros/macro-3.boo -------------------------------------------------------------------------------- /tests/testcases/macros/macro-4.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/macros/macro-4.boo -------------------------------------------------------------------------------- /tests/testcases/macros/macro-5.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/macros/macro-5.boo -------------------------------------------------------------------------------- /tests/testcases/macros/print-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/macros/print-1.boo -------------------------------------------------------------------------------- /tests/testcases/macros/print-2.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/macros/print-2.boo -------------------------------------------------------------------------------- /tests/testcases/macros/using-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/macros/using-1.boo -------------------------------------------------------------------------------- /tests/testcases/macros/using-2.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/macros/using-2.boo -------------------------------------------------------------------------------- /tests/testcases/macros/using-3.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/macros/using-3.boo -------------------------------------------------------------------------------- /tests/testcases/macros/using-4.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/macros/using-4.boo -------------------------------------------------------------------------------- /tests/testcases/macros/using-5.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/macros/using-5.boo -------------------------------------------------------------------------------- /tests/testcases/macros/yieldAll-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/macros/yieldAll-1.boo -------------------------------------------------------------------------------- /tests/testcases/macros/yieldAll-2.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/macros/yieldAll-2.boo -------------------------------------------------------------------------------- /tests/testcases/parser/class_2.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/parser/class_2.boo -------------------------------------------------------------------------------- /tests/testcases/parser/enum_1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/parser/enum_1.boo -------------------------------------------------------------------------------- /tests/testcases/parser/for_stmt_1.boo: -------------------------------------------------------------------------------- 1 | for i in [1, 2, 3]: 2 | print(i) 3 | -------------------------------------------------------------------------------- /tests/testcases/parser/if_else_1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/parser/if_else_1.boo -------------------------------------------------------------------------------- /tests/testcases/parser/re_literal_1.boo: -------------------------------------------------------------------------------- 1 | s = prompt("> ") 2 | print("It's a match!") if s =~ /foo/ 3 | -------------------------------------------------------------------------------- /tests/testcases/parser/simple.boo: -------------------------------------------------------------------------------- 1 | """ 2 | module doc string 3 | """ 4 | namespace Empty 5 | 6 | 7 | -------------------------------------------------------------------------------- /tests/testcases/parser/unpack_stmt_1.boo: -------------------------------------------------------------------------------- 1 | arg0, arg1 = Environment.GetCommandLineArgs() 2 | -------------------------------------------------------------------------------- /tests/testcases/parser/wsa/as-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/parser/wsa/as-1.boo -------------------------------------------------------------------------------- /tests/testcases/parser/wsa/cast-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/parser/wsa/cast-1.boo -------------------------------------------------------------------------------- /tests/testcases/parser/wsa/char-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/parser/wsa/char-1.boo -------------------------------------------------------------------------------- /tests/testcases/parser/wsa/char-2.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/parser/wsa/char-2.boo -------------------------------------------------------------------------------- /tests/testcases/parser/wsa/dsl-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/parser/wsa/dsl-1.boo -------------------------------------------------------------------------------- /tests/testcases/parser/wsa/elif-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/parser/wsa/elif-1.boo -------------------------------------------------------------------------------- /tests/testcases/parser/wsa/elif-2.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/parser/wsa/elif-2.boo -------------------------------------------------------------------------------- /tests/testcases/parser/wsa/goto-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/parser/wsa/goto-1.boo -------------------------------------------------------------------------------- /tests/testcases/parser/wsa/goto-2.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/parser/wsa/goto-2.boo -------------------------------------------------------------------------------- /tests/testcases/parser/wsa/hash-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/parser/wsa/hash-1.boo -------------------------------------------------------------------------------- /tests/testcases/parser/wsa/iif-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/parser/wsa/iif-1.boo -------------------------------------------------------------------------------- /tests/testcases/parser/wsa/isa-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/parser/wsa/isa-1.boo -------------------------------------------------------------------------------- /tests/testcases/parser/wsa/list-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/parser/wsa/list-1.boo -------------------------------------------------------------------------------- /tests/testcases/parser/wsa/new-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/parser/wsa/new-1.boo -------------------------------------------------------------------------------- /tests/testcases/parser/wsa/not-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/parser/wsa/not-1.boo -------------------------------------------------------------------------------- /tests/testcases/parser/wsa/not-2.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/parser/wsa/not-2.boo -------------------------------------------------------------------------------- /tests/testcases/parser/wsa/null-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/parser/wsa/null-1.boo -------------------------------------------------------------------------------- /tests/testcases/parser/wsa/self-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/parser/wsa/self-1.boo -------------------------------------------------------------------------------- /tests/testcases/parser/wsa/try-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/parser/wsa/try-1.boo -------------------------------------------------------------------------------- /tests/testcases/parser/wsa/try-2.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/parser/wsa/try-2.boo -------------------------------------------------------------------------------- /tests/testcases/parser/wsa/try-3.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/parser/wsa/try-3.boo -------------------------------------------------------------------------------- /tests/testcases/parser/wsa/xor-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/parser/wsa/xor-1.boo -------------------------------------------------------------------------------- /tests/testcases/regression/BOO-1047.boo: -------------------------------------------------------------------------------- 1 | import System.Threading.Interlocked 2 | 3 | x as int = 10 4 | CompareExchange(x, 5, 5) 5 | -------------------------------------------------------------------------------- /tests/testcases/semantics/assert0.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/semantics/assert0.boo -------------------------------------------------------------------------------- /tests/testcases/semantics/assert1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/semantics/assert1.boo -------------------------------------------------------------------------------- /tests/testcases/semantics/enum0.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/semantics/enum0.boo -------------------------------------------------------------------------------- /tests/testcases/semantics/enum1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/semantics/enum1.boo -------------------------------------------------------------------------------- /tests/testcases/semantics/for-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/semantics/for-1.boo -------------------------------------------------------------------------------- /tests/testcases/semantics/for-2.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/semantics/for-2.boo -------------------------------------------------------------------------------- /tests/testcases/semantics/hash0.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/semantics/hash0.boo -------------------------------------------------------------------------------- /tests/testcases/semantics/is-0.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/semantics/is-0.boo -------------------------------------------------------------------------------- /tests/testcases/semantics/len.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/semantics/len.boo -------------------------------------------------------------------------------- /tests/testcases/semantics/lock0.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/semantics/lock0.boo -------------------------------------------------------------------------------- /tests/testcases/semantics/lock1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/semantics/lock1.boo -------------------------------------------------------------------------------- /tests/testcases/semantics/lock2.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/semantics/lock2.boo -------------------------------------------------------------------------------- /tests/testcases/semantics/method2.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/semantics/method2.boo -------------------------------------------------------------------------------- /tests/testcases/semantics/method3.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/semantics/method3.boo -------------------------------------------------------------------------------- /tests/testcases/semantics/method6.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/semantics/method6.boo -------------------------------------------------------------------------------- /tests/testcases/semantics/method7.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/semantics/method7.boo -------------------------------------------------------------------------------- /tests/testcases/semantics/module0.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/semantics/module0.boo -------------------------------------------------------------------------------- /tests/testcases/semantics/null0.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/semantics/null0.boo -------------------------------------------------------------------------------- /tests/testcases/semantics/null1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/semantics/null1.boo -------------------------------------------------------------------------------- /tests/testcases/semantics/using0.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/semantics/using0.boo -------------------------------------------------------------------------------- /tests/testcases/semantics/using1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/semantics/using1.boo -------------------------------------------------------------------------------- /tests/testcases/stdlib/cat-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/stdlib/cat-1.boo -------------------------------------------------------------------------------- /tests/testcases/stdlib/cat-2.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/stdlib/cat-2.boo -------------------------------------------------------------------------------- /tests/testcases/stdlib/hash-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/stdlib/hash-1.boo -------------------------------------------------------------------------------- /tests/testcases/stdlib/hash-2.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/stdlib/hash-2.boo -------------------------------------------------------------------------------- /tests/testcases/stdlib/hash-3.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/stdlib/hash-3.boo -------------------------------------------------------------------------------- /tests/testcases/stdlib/join-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/stdlib/join-1.boo -------------------------------------------------------------------------------- /tests/testcases/stdlib/len-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/stdlib/len-1.boo -------------------------------------------------------------------------------- /tests/testcases/stdlib/list-add-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/stdlib/list-add-1.boo -------------------------------------------------------------------------------- /tests/testcases/stdlib/list-indexof-1.boo: -------------------------------------------------------------------------------- 1 | a = [5, 4, 3, 2, 1] 2 | for i in range(len(a)): 3 | assert i == a.IndexOf(5-i) 4 | -------------------------------------------------------------------------------- /tests/testcases/stdlib/map-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/stdlib/map-1.boo -------------------------------------------------------------------------------- /tests/testcases/stdlib/range-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/stdlib/range-1.boo -------------------------------------------------------------------------------- /tests/testcases/stdlib/range-2.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/stdlib/range-2.boo -------------------------------------------------------------------------------- /tests/testcases/stdlib/range-3.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/stdlib/range-3.boo -------------------------------------------------------------------------------- /tests/testcases/stdlib/reversed-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/stdlib/reversed-1.boo -------------------------------------------------------------------------------- /tests/testcases/unsafe/sizeof-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/unsafe/sizeof-1.boo -------------------------------------------------------------------------------- /tests/testcases/unsafe/unsafe-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/unsafe/unsafe-1.boo -------------------------------------------------------------------------------- /tests/testcases/unsafe/unsafe-2.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/unsafe/unsafe-2.boo -------------------------------------------------------------------------------- /tests/testcases/unsafe/unsafe-3.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/unsafe/unsafe-3.boo -------------------------------------------------------------------------------- /tests/testcases/unsafe/unsafe-4.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/unsafe/unsafe-4.boo -------------------------------------------------------------------------------- /tests/testcases/unsafe/unsafe-5.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/unsafe/unsafe-5.boo -------------------------------------------------------------------------------- /tests/testcases/warnings/nowarn-1.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/warnings/nowarn-1.boo -------------------------------------------------------------------------------- /tests/testcases/warnings/nowarn-2.boo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tests/testcases/warnings/nowarn-2.boo -------------------------------------------------------------------------------- /todo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/todo.txt -------------------------------------------------------------------------------- /tools/RetargetAssembly/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/boo/HEAD/tools/RetargetAssembly/build.gradle -------------------------------------------------------------------------------- /version.txt: -------------------------------------------------------------------------------- 1 | 0.9.7 2 | --------------------------------------------------------------------------------