├── .gitattributes ├── .gitignore ├── CODE-OF-CONDUCT.md ├── ChangeLog ├── LICENSE ├── Makefile ├── README ├── class ├── Makefile ├── lib │ └── bootstrap │ │ ├── Microsoft.VisualBasic.dll │ │ ├── Microsoft.VisualBasic.dll.mdb │ │ ├── Mono.Cecil.VB.Mdb.dll │ │ ├── Mono.Cecil.VB.Mdb.dll.mdb │ │ ├── Mono.Cecil.VB.Pdb.dll │ │ ├── Mono.Cecil.VB.Pdb.dll.mdb │ │ ├── Mono.Cecil.VB.dll │ │ ├── Mono.Cecil.VB.dll.mdb │ │ ├── vbnc.exe │ │ ├── vbnc.exe.mdb │ │ └── vbnc.rsp └── mono.snk ├── configure ├── install-sh ├── man ├── ChangeLog ├── Makefile └── vbnc.1 ├── mkinstalldirs ├── mono-basic.spec.in ├── scripts ├── Makefile ├── vbnc.in └── vbnc2.in ├── tools ├── ChangeLog ├── Makefile ├── extract-source │ ├── Makefile │ ├── extract-source.exe.sources │ ├── extract-source.sln │ ├── extract-source.vb │ └── extract-source.vbproj └── moonlight │ ├── ChangeLog │ ├── Makefile │ └── tuner.vb ├── vbnc ├── ChangeLog ├── License.txt ├── LicenseFileHeader.txt ├── Makefile ├── cecil │ ├── .gitattributes │ ├── .gitignore │ ├── LICENSE.md │ ├── Makefile │ ├── Mono.Cecil.Cil │ │ ├── Code.cs │ │ ├── CodeReader.cs │ │ ├── CodeWriter.cs │ │ ├── Document.cs │ │ ├── ExceptionHandler.cs │ │ ├── ILProcessor.cs │ │ ├── Instruction.cs │ │ ├── MethodBody.cs │ │ ├── OpCode.cs │ │ ├── OpCodes.cs │ │ ├── SequencePoint.cs │ │ ├── Symbols.cs │ │ ├── VariableDefinition.cs │ │ └── VariableReference.cs │ ├── Mono.Cecil.Metadata │ │ ├── BlobHeap.cs │ │ ├── Buffers.cs │ │ ├── CodedIndex.cs │ │ ├── ElementType.cs │ │ ├── GuidHeap.cs │ │ ├── Heap.cs │ │ ├── MetadataToken.cs │ │ ├── Row.cs │ │ ├── StringHeap.cs │ │ ├── TableHeap.cs │ │ ├── TokenType.cs │ │ ├── UserStringHeap.cs │ │ └── Utilities.cs │ ├── Mono.Cecil.PE │ │ ├── BinaryStreamReader.cs │ │ ├── BinaryStreamWriter.cs │ │ ├── ByteBuffer.cs │ │ ├── ByteBufferEqualityComparer.cs │ │ ├── DataDirectory.cs │ │ ├── Image.cs │ │ ├── ImageReader.cs │ │ ├── ImageWriter.cs │ │ ├── Section.cs │ │ └── TextMap.cs │ ├── Mono.Cecil.Tests.settings │ ├── Mono.Cecil.VB.csproj │ ├── Mono.Cecil.VB.dll.sources │ ├── Mono.Cecil.csproj │ ├── Mono.Cecil.nunit │ ├── Mono.Cecil.nuspec │ ├── Mono.Cecil.settings │ ├── Mono.Cecil.sln │ ├── Mono.Cecil.sln.DotSettings │ ├── Mono.Cecil │ │ ├── ArrayType.cs │ │ ├── AssemblyDefinition.cs │ │ ├── AssemblyFlags.cs │ │ ├── AssemblyHashAlgorithm.cs │ │ ├── AssemblyInfo.cs │ │ ├── AssemblyLinkedResource.cs │ │ ├── AssemblyNameDefinition.cs │ │ ├── AssemblyNameReference.cs │ │ ├── AssemblyReader.cs │ │ ├── AssemblyWriter.cs │ │ ├── BaseAssemblyResolver.cs │ │ ├── CallSite.cs │ │ ├── CustomAttribute.cs │ │ ├── DefaultAssemblyResolver.cs │ │ ├── EmbeddedResource.cs │ │ ├── EventAttributes.cs │ │ ├── EventDefinition.cs │ │ ├── EventReference.cs │ │ ├── ExportedType.cs │ │ ├── FieldAttributes.cs │ │ ├── FieldDefinition.cs │ │ ├── FieldReference.cs │ │ ├── FileAttributes.cs │ │ ├── FunctionPointerType.cs │ │ ├── GenericInstanceMethod.cs │ │ ├── GenericInstanceType.cs │ │ ├── GenericParameter.cs │ │ ├── GenericParameterAttributes.cs │ │ ├── IConstantProvider.cs │ │ ├── ICustomAttributeProvider.cs │ │ ├── IGenericInstance.cs │ │ ├── IGenericParameterProvider.cs │ │ ├── IMarshalInfoProvider.cs │ │ ├── IMemberDefinition.cs │ │ ├── IMetadataScope.cs │ │ ├── IMetadataTokenProvider.cs │ │ ├── IMethodSignature.cs │ │ ├── Import.cs │ │ ├── LinkedResource.cs │ │ ├── ManifestResourceAttributes.cs │ │ ├── MarshalInfo.cs │ │ ├── MemberDefinitionCollection.cs │ │ ├── MemberReference.cs │ │ ├── MetadataResolver.cs │ │ ├── MetadataSystem.cs │ │ ├── MethodAttributes.cs │ │ ├── MethodCallingConvention.cs │ │ ├── MethodDefinition.cs │ │ ├── MethodImplAttributes.cs │ │ ├── MethodReference.cs │ │ ├── MethodReturnType.cs │ │ ├── MethodSemanticsAttributes.cs │ │ ├── MethodSpecification.cs │ │ ├── Modifiers.cs │ │ ├── ModuleDefinition.cs │ │ ├── ModuleKind.cs │ │ ├── ModuleReference.cs │ │ ├── NativeType.cs │ │ ├── PInvokeAttributes.cs │ │ ├── PInvokeInfo.cs │ │ ├── ParameterAttributes.cs │ │ ├── ParameterDefinition.cs │ │ ├── ParameterDefinitionCollection.cs │ │ ├── ParameterReference.cs │ │ ├── PinnedType.cs │ │ ├── PointerType.cs │ │ ├── PropertyAttributes.cs │ │ ├── PropertyDefinition.cs │ │ ├── PropertyReference.cs │ │ ├── ReferenceType.cs │ │ ├── Resource.cs │ │ ├── SecurityDeclaration.cs │ │ ├── SentinelType.cs │ │ ├── TargetRuntime.cs │ │ ├── TypeAttributes.cs │ │ ├── TypeDefinition.cs │ │ ├── TypeDefinitionCollection.cs │ │ ├── TypeParser.cs │ │ ├── TypeReference.cs │ │ ├── TypeSpecification.cs │ │ ├── TypeSystem.cs │ │ └── VariantType.cs │ ├── Mono.Collections.Generic │ │ ├── Collection.cs │ │ └── ReadOnlyCollection.cs │ ├── Mono.Security.Cryptography │ │ ├── CryptoConvert.cs │ │ └── CryptoService.cs │ ├── Mono │ │ ├── Actions.cs │ │ ├── Empty.cs │ │ └── Funcs.cs │ ├── README.md │ ├── System.Runtime.CompilerServices │ │ └── ExtensionAttribute.cs │ ├── Test │ │ ├── Mono.Cecil.Tests.csproj │ │ ├── Mono.Cecil.Tests │ │ │ ├── AssemblyInfo.cs │ │ │ ├── AssemblyTests.cs │ │ │ ├── BaseTestFixture.cs │ │ │ ├── CompilationService.cs │ │ │ ├── CustomAttributesTests.cs │ │ │ ├── EventTests.cs │ │ │ ├── Extensions.cs │ │ │ ├── FieldTests.cs │ │ │ ├── Formatter.cs │ │ │ ├── ILProcessorTests.cs │ │ │ ├── ImageReadTests.cs │ │ │ ├── ImportCecilTests.cs │ │ │ ├── ImportReflectionTests.cs │ │ │ ├── Linq.cs │ │ │ ├── MethodBodyTests.cs │ │ │ ├── MethodTests.cs │ │ │ ├── ModuleTests.cs │ │ │ ├── NestedTypesTests.cs │ │ │ ├── ParameterTests.cs │ │ │ ├── PropertyTests.cs │ │ │ ├── ResolveTests.cs │ │ │ ├── SecurityDeclarationTests.cs │ │ │ ├── TypeParserTests.cs │ │ │ ├── TypeTests.cs │ │ │ └── VariableTests.cs │ │ ├── Resources │ │ │ ├── assemblies │ │ │ │ ├── PortableClassLibrary.dll │ │ │ │ ├── boxedoptarg.dll │ │ │ │ ├── bug-185.dll │ │ │ │ ├── catch.exe │ │ │ │ ├── cppcli.dll │ │ │ │ ├── cscgpbug.dll │ │ │ │ ├── decsec-att.dll │ │ │ │ ├── decsec-xml.dll │ │ │ │ ├── decsec1-xml.dll │ │ │ │ ├── delay-signed.dll │ │ │ │ ├── empty-decsec-att.dll │ │ │ │ ├── fptr.exe │ │ │ │ ├── gifaceref.exe │ │ │ │ ├── hello.anycpu.exe │ │ │ │ ├── hello.exe │ │ │ │ ├── hello.ia64.exe │ │ │ │ ├── hello.textonly.x64.exe │ │ │ │ ├── hello.x64.exe │ │ │ │ ├── hello.x86.exe │ │ │ │ ├── hello1.exe │ │ │ │ ├── hellow.exe │ │ │ │ ├── iterator.exe │ │ │ │ ├── libhello.dll │ │ │ │ ├── libres.dll │ │ │ │ ├── marshal.dll │ │ │ │ ├── metro.exe │ │ │ │ ├── mma.exe │ │ │ │ ├── moda.netmodule │ │ │ │ ├── modb.netmodule │ │ │ │ ├── noblob.dll │ │ │ │ ├── nullable-constant.exe │ │ │ │ ├── nullable-parameter.dll │ │ │ │ ├── pinvoke.exe │ │ │ │ ├── switch.exe │ │ │ │ ├── text_file.txt │ │ │ │ ├── varargs.exe │ │ │ │ └── wp7.dll │ │ │ ├── cs │ │ │ │ ├── CustomAttributes.cs │ │ │ │ ├── Events.cs │ │ │ │ ├── Fields.cs │ │ │ │ ├── Generics.cs │ │ │ │ ├── Interfaces.cs │ │ │ │ ├── Layouts.cs │ │ │ │ ├── Methods.cs │ │ │ │ ├── NestedTypes.cs │ │ │ │ └── Properties.cs │ │ │ └── il │ │ │ │ ├── explicitthis.il │ │ │ │ ├── hello.il │ │ │ │ ├── methodspecs.il │ │ │ │ ├── others.il │ │ │ │ └── types.il │ │ └── libs │ │ │ └── nunit-2.6.2 │ │ │ ├── license.txt │ │ │ ├── nunit.core.dll │ │ │ ├── nunit.core.interfaces.dll │ │ │ └── nunit.framework.dll │ ├── mono.snk │ ├── rocks │ │ ├── Mono.Cecil.Rocks.csproj │ │ ├── Mono.Cecil.Rocks │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Functional.cs │ │ │ ├── ILParser.cs │ │ │ ├── MethodBodyRocks.cs │ │ │ ├── MethodDefinitionRocks.cs │ │ │ ├── ModuleDefinitionRocks.cs │ │ │ ├── ParameterReferenceRocks.cs │ │ │ ├── SecurityDeclarationRocks.cs │ │ │ ├── TypeDefinitionRocks.cs │ │ │ └── TypeReferenceRocks.cs │ │ └── Test │ │ │ ├── Mono.Cecil.Rocks.Tests.csproj │ │ │ ├── Mono.Cecil.Tests │ │ │ ├── MethodDefinitionRocksTests.cs │ │ │ ├── ModuleDefinitionRocksTests.cs │ │ │ ├── SecurityDeclarationRocksTests.cs │ │ │ ├── TypeDefinitionRocksTests.cs │ │ │ └── TypeReferenceRocksTests.cs │ │ │ └── Resources │ │ │ ├── assemblies │ │ │ ├── decsec-att.dll │ │ │ └── decsec-xml.dll │ │ │ └── cs │ │ │ └── Types.cs │ └── symbols │ │ ├── Makefile │ │ ├── mdb │ │ ├── Makefile │ │ ├── Mono.Cecil.Mdb.VB.csproj │ │ ├── Mono.Cecil.Mdb.csproj │ │ ├── Mono.Cecil.Mdb │ │ │ ├── AssemblyInfo.cs │ │ │ ├── MdbReader.cs │ │ │ └── MdbWriter.cs │ │ ├── Mono.Cecil.VB.Mdb.dll.sources │ │ ├── Mono.CompilerServices.SymbolWriter │ │ │ ├── MonoSymbolFile.cs │ │ │ ├── MonoSymbolTable.cs │ │ │ ├── MonoSymbolWriter.cs │ │ │ └── SymbolWriterImpl.cs │ │ └── Test │ │ │ ├── Mono.Cecil.Mdb.Tests.csproj │ │ │ ├── Mono.Cecil.Tests │ │ │ └── MdbTests.cs │ │ │ └── Resources │ │ │ └── assemblies │ │ │ ├── hello.exe │ │ │ └── hello.exe.mdb │ │ └── pdb │ │ ├── Makefile │ │ ├── Microsoft.Cci.Pdb │ │ ├── BitAccess.cs │ │ ├── BitSet.cs │ │ ├── CvInfo.cs │ │ ├── DataStream.cs │ │ ├── DbiDbgHdr.cs │ │ ├── DbiHeader.cs │ │ ├── DbiModuleInfo.cs │ │ ├── DbiSecCon.cs │ │ ├── IntHashTable.cs │ │ ├── Interfaces.cs │ │ ├── LICENSE │ │ ├── MsfDirectory.cs │ │ ├── PdbConstant.cs │ │ ├── PdbDebugException.cs │ │ ├── PdbException.cs │ │ ├── PdbFile.cs │ │ ├── PdbFileHeader.cs │ │ ├── PdbFunction.cs │ │ ├── PdbLine.cs │ │ ├── PdbLines.cs │ │ ├── PdbReader.cs │ │ ├── PdbScope.cs │ │ ├── PdbSlot.cs │ │ ├── PdbSource.cs │ │ ├── PdbTokenLine.cs │ │ └── SourceLocationProvider.cs │ │ ├── Mono.Cecil.Pdb.VB.csproj │ │ ├── Mono.Cecil.Pdb.csproj │ │ ├── Mono.Cecil.Pdb │ │ ├── AssemblyInfo.cs │ │ ├── ISymUnmanagedDocumentWriter.cs │ │ ├── ISymUnmanagedWriter2.cs │ │ ├── ModuleMetadata.cs │ │ ├── PdbHelper.cs │ │ ├── PdbReader.cs │ │ ├── PdbWriter.cs │ │ ├── SymDocumentWriter.cs │ │ └── SymWriter.cs │ │ ├── Mono.Cecil.VB.Pdb.dll.sources │ │ └── Test │ │ ├── Mono.Cecil.Pdb.Tests.csproj │ │ ├── Mono.Cecil.Tests │ │ ├── Linq.cs │ │ └── PdbTests.cs │ │ └── Resources │ │ └── assemblies │ │ ├── FSharp.Core.dll │ │ ├── VBConsApp.exe │ │ ├── VBConsApp.pdb │ │ ├── fsapp.exe │ │ ├── fsapp.pdb │ │ ├── test.exe │ │ └── test.pdb ├── msg-generator │ ├── ChangeLog │ ├── Makefile │ ├── Message.vb │ ├── Messages.vb │ ├── ResGen.vb │ ├── build.bat │ ├── msg-gen.exe.sources │ ├── msg-generator.sln │ ├── msg-generator.vbproj │ └── rsp.txt ├── rt │ ├── .gitignore │ ├── ChangeLog │ ├── Makefile │ ├── Readme.txt │ └── source │ │ ├── AssemblyInfo.vb │ │ ├── CecilCompare.vb │ │ ├── CecilComparer.vb │ │ ├── ChangeLog │ │ ├── CommandLine.vb │ │ ├── ConsoleRunner.vb │ │ ├── EnhancedProgressBar.Designer.vb │ │ ├── EnhancedProgressBar.vb │ │ ├── ErrorInfo.vb │ │ ├── ExternalProcessExecutor.vb │ │ ├── ExternalProcessVerification.vb │ │ ├── FileTabPage.Designer.vb │ │ ├── FileTabPage.resx │ │ ├── FileTabPage.vb │ │ ├── Helper.vb │ │ ├── ListViewItemComparer.vb │ │ ├── Main.vb │ │ ├── Settings.vb │ │ ├── Test.MyTypes.vb │ │ ├── Test.Results.vb │ │ ├── Test.Targets.vb │ │ ├── Test.vb │ │ ├── TestExecutor.vb │ │ ├── TestView.vb │ │ ├── Tests.vb │ │ ├── VerificationBase.vb │ │ ├── app.config │ │ ├── frmFiles.Designer.vb │ │ ├── frmFiles.resx │ │ ├── frmFiles.vb │ │ ├── frmMain.Designer.vb │ │ ├── frmMain.resx │ │ ├── frmMain.vb │ │ ├── frmNewTest.Designer.vb │ │ ├── frmNewTest.resx │ │ ├── frmNewTest.vb │ │ ├── rt.sln │ │ └── rt.vbproj └── vbnc │ ├── ChangeLog │ ├── Makefile │ ├── Readme.txt │ ├── setversion.sh │ ├── source │ ├── ChangeLog │ ├── Code │ │ ├── CodeBlock.vb │ │ └── ImplicitCodeBlock.vb │ ├── ConditionalCompilation │ │ ├── ConditionalConstant.vb │ │ ├── ConditionalConstants.vb │ │ └── ConditionalExpression.vb │ ├── Emit │ │ ├── EmitInfo.vb │ │ ├── EmitLog.vb │ │ ├── Emitter.DecimalFields.vb │ │ └── Emitter.vb │ ├── Enums │ │ ├── BuiltInDataTypes.vb │ │ ├── Enums.vb │ │ ├── IntegerBase.vb │ │ ├── KS.vb │ │ ├── LiteralTypeCharacters.vb │ │ ├── ModifierMasks.vb │ │ ├── Operators.vb │ │ ├── TokenType.vb │ │ └── TypeCharacters.vb │ ├── Expressions │ │ ├── AddressOfExpression.vb │ │ ├── Argument.vb │ │ ├── ArgumentList.vb │ │ ├── ArrayCreationExpression.vb │ │ ├── ArrayInitializerExpression.vb │ │ ├── BinaryExpressions │ │ │ ├── AndAlsoExpression.vb │ │ │ ├── AndExpression.vb │ │ │ ├── BinaryAddExpression.vb │ │ │ ├── BinaryExpression.vb │ │ │ ├── BinarySubExpression.vb │ │ │ ├── ConcatExpression.vb │ │ │ ├── EqualsExpression.vb │ │ │ ├── ExponentExpression.vb │ │ │ ├── GEExpression.vb │ │ │ ├── GTExpression.vb │ │ │ ├── IntDivisionExpression.vb │ │ │ ├── Is_IsNotExpression.vb │ │ │ ├── LEExpression.vb │ │ │ ├── LShiftExpression.vb │ │ │ ├── LTExpression.vb │ │ │ ├── LikeExpression.vb │ │ │ ├── ModExpression.vb │ │ │ ├── MultExpression.vb │ │ │ ├── NotEqualsExpression.vb │ │ │ ├── OrElseExpression.vb │ │ │ ├── OrExpression.vb │ │ │ ├── RShiftExpression.vb │ │ │ ├── RealDivisionExpression.vb │ │ │ └── XorExpression.vb │ │ ├── BooleanLiteralExpression.vb │ │ ├── BoxExpression.vb │ │ ├── BuiltInTypeExpression.vb │ │ ├── CachedExpression.vb │ │ ├── CaseComparisonExpression.vb │ │ ├── CaseRangeExpression.vb │ │ ├── CastExpression.vb │ │ ├── Classifications │ │ │ ├── EventAccessClassification.vb │ │ │ ├── ExpressionClassification.Classifications.vb │ │ │ ├── ExpressionClassification.vb │ │ │ ├── LateBoundAccessClassification.vb │ │ │ ├── MethodGroupClassification.vb │ │ │ ├── MethodPointerClassification.vb │ │ │ ├── NamespaceClassification.vb │ │ │ ├── PropertyAccessClassification.vb │ │ │ ├── PropertyGroupClassification.vb │ │ │ ├── TypeClassification.vb │ │ │ ├── ValueClassification.vb │ │ │ ├── VariableClassification.vb │ │ │ └── VoidClassification.vb │ │ ├── CompilerGeneratedExpression.vb │ │ ├── ConstantExpression.vb │ │ ├── Conversions │ │ │ ├── CBoolExpression.vb │ │ │ ├── CByteExpression.vb │ │ │ ├── CCharExpression.vb │ │ │ ├── CDateExpression.vb │ │ │ ├── CDblExpression.vb │ │ │ ├── CDecExpression.vb │ │ │ ├── CIntExpression.vb │ │ │ ├── CLngExpression.vb │ │ │ ├── CObjExpression.vb │ │ │ ├── CSByteExpression.vb │ │ │ ├── CShortExpression.vb │ │ │ ├── CSngExpression.vb │ │ │ ├── CStrExpression.vb │ │ │ ├── CTypeExpression.vb │ │ │ ├── CUIntExpression.vb │ │ │ ├── CULngExpression.vb │ │ │ ├── CUShortExpression.vb │ │ │ ├── ConversionExpression.vb │ │ │ ├── ConversionType.vb │ │ │ ├── DirectCastExpression.vb │ │ │ └── TryCastExpression.vb │ │ ├── DeRefExpression.vb │ │ ├── DelegateOrObjectCreationExpression.vb │ │ ├── DictionaryAccessExpression.vb │ │ ├── DotAccessExpression.vb │ │ ├── Expression.vb │ │ ├── GetRefExpression.vb │ │ ├── GetTypeExpression.vb │ │ ├── GlobalExpression.vb │ │ ├── IfExpression.vb │ │ ├── InstanceExpression.vb │ │ ├── InvocationOrIndexExpression.vb │ │ ├── LateBoundAccessToExpression.vb │ │ ├── LateBoundAccessToPropertyAccessExpression.vb │ │ ├── LateBoundAccessToValueExpression.vb │ │ ├── LiteralExpression.vb │ │ ├── LoadFieldExpression.vb │ │ ├── MeExpression.vb │ │ ├── MemberAccessExpression.vb │ │ ├── MethodGroupToValueExpression.vb │ │ ├── MissingExpression.vb │ │ ├── MyBaseExpression.vb │ │ ├── MyClassExpression.vb │ │ ├── NamedArgument.vb │ │ ├── NamespaceExpression.vb │ │ ├── NewExpression.vb │ │ ├── NothingConstantExpression.vb │ │ ├── OperatorExpression.vb │ │ ├── ParenthesizedExpression.vb │ │ ├── PositionalArgument.vb │ │ ├── PropertyAccessToValueExpression.vb │ │ ├── PropertyGroupToPropertyAccessExpression.vb │ │ ├── PropertyGroupToValueExpression.vb │ │ ├── SimpleExpression.vb │ │ ├── SimpleNameExpression.vb │ │ ├── TypeExpression.vb │ │ ├── TypeOfExpression.vb │ │ ├── UnaryExpressions │ │ │ ├── Expressions.vb │ │ │ ├── UnaryExpression.vb │ │ │ ├── UnaryMinusExpression.vb │ │ │ ├── UnaryNotExpression.vb │ │ │ └── UnaryPlusExpression.vb │ │ ├── VariableExpression.vb │ │ └── VariableToValueExpression.vb │ ├── General │ │ ├── AssemblyInfo.vb │ │ ├── BaseObject.vb │ │ ├── BaseObjects`1.vb │ │ ├── CecilHelper.vb │ │ ├── CodeFile.vb │ │ ├── CodeFiles.vb │ │ ├── CommandLine.DebugTypes.vb │ │ ├── CommandLine.OptionCompareTypes.vb │ │ ├── CommandLine.OptionExplicitTypes.vb │ │ ├── CommandLine.OptionInferTypes.vb │ │ ├── CommandLine.OptionStrictTypes.vb │ │ ├── CommandLine.Targets.vb │ │ ├── CommandLine.vb │ │ ├── Compiler.vb │ │ ├── Define.vb │ │ ├── Defines.vb │ │ ├── GlobalNamespace.vb │ │ ├── Helper.vb │ │ ├── Index.IndexList.vb │ │ ├── Index.vb │ │ ├── InternalException.vb │ │ ├── Main.vb │ │ ├── MemberCache.vb │ │ ├── Message.vb │ │ ├── MessageAttribute.vb │ │ ├── MessageLevel.vb │ │ ├── Messages.vb │ │ ├── MethodBaseDeclaration.vb │ │ ├── MyGenerator.vb │ │ ├── MyGroupData.vb │ │ ├── Namespace.vb │ │ ├── NamespaceDictionary.vb │ │ ├── Namespaces.vb │ │ ├── Report.vb │ │ ├── Resource.vb │ │ ├── Resources.vb │ │ ├── Scanner.vb │ │ ├── TooManyErrorsException.vb │ │ ├── TypeCache.Generated.vb │ │ ├── TypeCache.in │ │ ├── TypeCache.vb │ │ ├── TypeCombinations.vb │ │ ├── TypeConverter.vb │ │ ├── TypeDictionary.vb │ │ ├── TypeList.vb │ │ ├── TypeManager.vb │ │ ├── TypeResolution.vb │ │ ├── Version.vb │ │ ├── cmdlineargs.txt │ │ └── vbncException.vb │ ├── Infos │ │ ├── ExpressionResolveInfo.vb │ │ └── ResolveInfo.vb │ ├── Interfaces │ │ ├── IAttributableDeclaration.vb │ │ ├── IAttributableNamedDeclaration.vb │ │ ├── IBaseObject.vb │ │ ├── IConstructorMember.vb │ │ ├── IEmittable.vb │ │ ├── IFieldMember.vb │ │ ├── IHasImplicitMembers.vb │ │ ├── IHasImplicitTypes.vb │ │ ├── IMember.vb │ │ ├── IMethod.vb │ │ ├── INameable.vb │ │ ├── INonTypeMember.vb │ │ ├── ITokenReader.vb │ │ └── IType.vb │ ├── Members │ │ ├── AliasClause.vb │ │ ├── ArrayElementInitializer.vb │ │ ├── ArrayNameModifier.vb │ │ ├── ArraySizeInitializationModifier.vb │ │ ├── ArrayTypeModifier.vb │ │ ├── ArrayTypeModifiers.vb │ │ ├── Attribute.vb │ │ ├── AttributeArgumentExpression.vb │ │ ├── AttributeArguments.vb │ │ ├── AttributeBlock.vb │ │ ├── AttributeList.vb │ │ ├── AttributePositionalArgumentList.vb │ │ ├── Attributes.vb │ │ ├── BaseList.vb │ │ ├── BaseList~1.vb │ │ ├── BoundList.vb │ │ ├── ConstantDeclaration.vb │ │ ├── ConstantDeclarations.vb │ │ ├── ConstructorDeclaration.vb │ │ ├── ConversionOperatorDeclaration.vb │ │ ├── CustomEventDeclaration.vb │ │ ├── CustomEventHandlerDeclaration.vb │ │ ├── EnumMemberDeclaration.vb │ │ ├── EventAccessorDeclarations.vb │ │ ├── EventDeclaration.vb │ │ ├── EventHandlerDeclaration.vb │ │ ├── EventHandlesList.vb │ │ ├── EventMemberSpecifier.vb │ │ ├── ExternalFunctionDeclaration.vb │ │ ├── ExternalSubDeclaration.vb │ │ ├── FunctionDeclaration.vb │ │ ├── FunctionSignature.vb │ │ ├── HandlesClause.vb │ │ ├── HandlesOrImplements.vb │ │ ├── InterfaceBases.vb │ │ ├── InterfaceEventMemberDeclaration.vb │ │ ├── InterfaceFunctionDeclaration.vb │ │ ├── InterfaceMemberSpecifier.vb │ │ ├── InterfacePropertyMemberDeclaration.vb │ │ ├── InterfaceSubDeclaration.vb │ │ ├── LibraryClause.vb │ │ ├── LocalVariableDeclaration.vb │ │ ├── MemberDeclaration.vb │ │ ├── MemberDeclarations.vb │ │ ├── MemberImplementsClause.vb │ │ ├── MemberImplementsList.vb │ │ ├── MethodDeclaration.vb │ │ ├── MethodResolver.vb │ │ ├── Modifiers.vb │ │ ├── MustOverridePropertyDeclaration.vb │ │ ├── NamedBaseList.vb │ │ ├── Operand.vb │ │ ├── OperatorDeclaration.vb │ │ ├── Parameter.vb │ │ ├── ParameterList.vb │ │ ├── ParametersOrType.vb │ │ ├── ParemeterIdentifier.vb │ │ ├── PropertyDeclaration.vb │ │ ├── PropertyGetDeclaration.vb │ │ ├── PropertyHandlerDeclaration.vb │ │ ├── PropertySetDeclaration.vb │ │ ├── RegularEventDeclaration.vb │ │ ├── RegularEventHandlerDeclaration.vb │ │ ├── RegularPropertyDeclaration.vb │ │ ├── SubDeclaration.vb │ │ ├── SubSignature.vb │ │ ├── TypeVariableDeclaration.vb │ │ ├── VariableDeclaration.vb │ │ ├── VariableIdentifier.vb │ │ ├── VariableIdentifiers.vb │ │ ├── VariableInitializer.vb │ │ ├── VariableInitializerList.vb │ │ ├── VariablePropertyInitializer.vb │ │ └── VariablePropertyInitializerList.vb │ ├── Names │ │ ├── Identifier.vb │ │ └── QualifiedIdentifier.vb │ ├── Notes.txt │ ├── Parser │ │ ├── ExpressionParseInfo.vb │ │ ├── ParseAttributableInfo.vb │ │ ├── ParseTypeInfo.vb │ │ ├── ParsedObject.vb │ │ └── Parser.vb │ ├── Resources │ │ ├── Errors.resx │ │ ├── GenerateCodeAndResX.bat │ │ ├── GenerateCodeAndResX.sh │ │ ├── License.txt │ │ ├── Readme.txt │ │ ├── Source.xml │ │ └── Source.xsd │ ├── Statements │ │ ├── AddOrRemoveHandlerStatement.vb │ │ ├── AssignStatements │ │ │ ├── AddAssignStatement.vb │ │ │ ├── AssignmentStatement.vb │ │ │ ├── CompoundAssignmentStatement.vb │ │ │ ├── ConcatAssignStatement.vb │ │ │ ├── DivisionAssignStatement.vb │ │ │ ├── IntDivisionAssignStatement.vb │ │ │ ├── LShiftAssignStatement.vb │ │ │ ├── MidAssignStatement.vb │ │ │ ├── MultiplicationAssignStatement.vb │ │ │ ├── PowerAssignStatement.vb │ │ │ ├── RShiftAssignStatement.vb │ │ │ └── SubtractionAssignStatement.vb │ │ ├── BlockStatement.vb │ │ ├── CallStatement.vb │ │ ├── CaseClause.vb │ │ ├── CaseClauses.vb │ │ ├── CaseStatement.vb │ │ ├── CatchStatement.vb │ │ ├── ContinueStatement.vb │ │ ├── DoStatement.vb │ │ ├── ElseIfStatement.vb │ │ ├── EndStatement.vb │ │ ├── EraseStatement.vb │ │ ├── ErrorStatement.vb │ │ ├── ExitStatement.vb │ │ ├── ExpressionList.vb │ │ ├── ForEachStatement.vb │ │ ├── ForStatement.vb │ │ ├── GotoStatement.vb │ │ ├── IfStatement.vb │ │ ├── LabelDeclarationStatement.vb │ │ ├── LoopControlVariable.vb │ │ ├── OnErrorStatement.vb │ │ ├── OptionCompareStatement.vb │ │ ├── OptionExplicitStatement.vb │ │ ├── OptionInferStatement.vb │ │ ├── OptionStrictStatement.vb │ │ ├── RaiseEventStatement.vb │ │ ├── ReDimStatement.vb │ │ ├── RedimClause.vb │ │ ├── RedimClauses.vb │ │ ├── ResumeStatement.vb │ │ ├── ReturnStatement.vb │ │ ├── SelectStatement.vb │ │ ├── Statement.vb │ │ ├── StopStatement.vb │ │ ├── SyncLockStatement.vb │ │ ├── ThrowStatement.vb │ │ ├── TryStatement.vb │ │ ├── UsingDeclaration.vb │ │ ├── UsingDeclarator.vb │ │ ├── UsingStatement.vb │ │ ├── WhileStatement.vb │ │ └── WithStatement.vb │ ├── Tokens │ │ ├── IdentifierOrKeyword.vb │ │ ├── IdentifierOrKeywordWithTypeArguments.vb │ │ ├── Span.vb │ │ └── Token.vb │ ├── TypeDeclarations │ │ ├── AssemblyDeclaration.vb │ │ ├── ClassDeclaration.vb │ │ ├── DelegateDeclaration.vb │ │ ├── EnumDeclaration.vb │ │ ├── GenericTypeDeclaration.vb │ │ ├── InterfaceDeclaration.vb │ │ ├── ModuleDeclaration.vb │ │ ├── PartialTypeDeclaration.vb │ │ ├── StructureDeclaration.vb │ │ └── TypeDeclaration.vb │ ├── Types │ │ ├── ArrayTypeName.vb │ │ ├── BuiltInTypeName.vb │ │ ├── Constraint.vb │ │ ├── ConstraintList.vb │ │ ├── ConstructedTypeName.vb │ │ ├── GetTypeTypeName.vb │ │ ├── IConstructable.vb │ │ ├── IModifiable.vb │ │ ├── ImportsAliasClause.vb │ │ ├── ImportsClause.vb │ │ ├── ImportsClauses.vb │ │ ├── ImportsNamespaceClause.vb │ │ ├── ImportsStatement.vb │ │ ├── MissingType.vb │ │ ├── Nameables.vb │ │ ├── NonArrayTypeName.vb │ │ ├── RestorablePoint.vb │ │ ├── SimpleTypeName.vb │ │ ├── TokenManager.vb │ │ ├── TypeArgumentList.vb │ │ ├── TypeArityList.vb │ │ ├── TypeImplementsClauses.vb │ │ ├── TypeName.vb │ │ ├── TypeNameResolutionInfo.vb │ │ ├── TypeParameter.vb │ │ ├── TypeParameterConstraints.vb │ │ ├── TypeParameterList.vb │ │ └── TypeParameters.vb │ ├── app.config │ ├── vbnc.rsp │ ├── vbnc.sln │ └── vbnc.vbproj │ ├── tests │ ├── .gitignore │ ├── 1Declarations │ │ ├── ArrayType1.vb │ │ ├── ArrayType10.vb │ │ ├── ArrayType11.vb │ │ ├── ArrayType2.vb │ │ ├── ArrayType3.vb │ │ ├── ArrayType4.vb │ │ ├── ArrayType5.vb │ │ ├── ArrayType6.vb │ │ ├── ArrayType7.vb │ │ ├── ArrayType8.vb │ │ ├── ArrayType9.vb │ │ ├── AssemblyAttribute1.vb │ │ ├── ByRef1.vb │ │ ├── Class1.vb │ │ ├── Class2.vb │ │ ├── Constructors2.vb │ │ ├── Constructors3.vb │ │ ├── CustomEvent1.vb │ │ ├── CustomEvent2.vb │ │ ├── DebugReflection.response │ │ ├── DebugReflection.vb │ │ ├── DefaultProperty1.vb │ │ ├── DefaultProperty2.vb │ │ ├── Delegate1.vb │ │ ├── Delegate2.vb │ │ ├── Delegate3.vb │ │ ├── Delegate4.vb │ │ ├── Delegate5.vb │ │ ├── Delegate6.vb │ │ ├── Delegate7.vb │ │ ├── Delegate8.vb │ │ ├── Enum1.vb │ │ ├── Enum2.vb │ │ ├── EnumType1.vb │ │ ├── EnumType2.vb │ │ ├── EventDelegate1.vb │ │ ├── Events1.vb │ │ ├── Events2.vb │ │ ├── Events3.vb │ │ ├── Events4.vb │ │ ├── Events5.vb │ │ ├── Events6.vb │ │ ├── Events7.vb │ │ ├── Events8.vb │ │ ├── Field1.vb │ │ ├── Field2.vb │ │ ├── FileVersionInfo1.vb │ │ ├── Function1.vb │ │ ├── GEExpression1.vb │ │ ├── GenericInterface1.vb │ │ ├── GenericInterface2.vb │ │ ├── GenericMember1.vb │ │ ├── GenericMember10.vb │ │ ├── GenericMember2.vb │ │ ├── GenericMember3.vb │ │ ├── GenericMember4.vb │ │ ├── GenericMember5.vb │ │ ├── GenericMember6.vb │ │ ├── GenericMember7.vb │ │ ├── GenericMember8.vb │ │ ├── GenericMember9.vb │ │ ├── GenericMethod1.vb │ │ ├── GenericMethod2.vb │ │ ├── GenericProperty1.vb │ │ ├── GenericType1.vb │ │ ├── GenericType2.vb │ │ ├── GenericType3.vb │ │ ├── Implements1.vb │ │ ├── Interface1.vb │ │ ├── Interface2.vb │ │ ├── Interface3.vb │ │ ├── Interface4.vb │ │ ├── InterfaceProperty1.vb │ │ ├── InterfaceProperty2.vb │ │ ├── Modifiers1.vb │ │ ├── Module1.vb │ │ ├── Module2.vb │ │ ├── MultiInterface1.vb │ │ ├── MultiInterface2.vb │ │ ├── MultiOverride1.vb │ │ ├── MustOverride1.vb │ │ ├── MustOverride2.vb │ │ ├── MustOverride3.vb │ │ ├── MustOverride4.vb │ │ ├── MustOverride5.vb │ │ ├── Namespace1.vb │ │ ├── Namespace2.vb │ │ ├── NestedDeclarations1.vb │ │ ├── Operator1.vb │ │ ├── Optional1.vb │ │ ├── Optional2.vb │ │ ├── Optional3.vb │ │ ├── Overridable1.vb │ │ ├── ParamArray1.vb │ │ ├── Partial1.vb │ │ ├── Partial10.vb │ │ ├── Partial2.vb │ │ ├── Partial3.vb │ │ ├── Partial4.vb │ │ ├── Partial5.vb │ │ ├── Partial6.vb │ │ ├── Partial7.vb │ │ ├── Partial8.vb │ │ ├── Partial9.vb │ │ ├── Property1.vb │ │ ├── Property2.vb │ │ ├── Property3.vb │ │ ├── Property4.vb │ │ ├── Property5.vb │ │ ├── Property6.vb │ │ ├── Property7.vb │ │ ├── Property8.vb │ │ ├── Structure1.vb │ │ ├── Structure2.vb │ │ ├── Structure3.vb │ │ ├── StructureAccess1.vb │ │ ├── Sub1.vb │ │ ├── TypeArguments1.vb │ │ ├── TypeArguments10.vb │ │ ├── TypeArguments11.vb │ │ ├── TypeArguments12.vb │ │ ├── TypeArguments13.vb │ │ ├── TypeArguments14.vb │ │ ├── TypeArguments15.vb │ │ ├── TypeArguments16.vb │ │ ├── TypeArguments2.vb │ │ ├── TypeArguments3.vb │ │ ├── TypeArguments4.vb │ │ ├── TypeArguments5.vb │ │ ├── TypeArguments6.vb │ │ ├── TypeArguments7.vb │ │ ├── TypeArguments8.vb │ │ ├── TypeArguments9.vb │ │ ├── TypeParameter1.response │ │ ├── TypeParameter1.vb │ │ ├── UTF8Bom.vb │ │ ├── UnicodeBigEndianBom.vb │ │ ├── UnicodeBom.vb │ │ ├── WithEvents1.vb │ │ └── WithEvents2.vb │ ├── Bin │ │ ├── Makefile │ │ ├── MethodsWithPointers1_CS.cs │ │ ├── MethodsWithPointers1_CS.dll │ │ └── README │ ├── Bugs │ │ ├── 30099-bug-80999.vb │ │ ├── 30145-bug-328101.response │ │ ├── 30145-bug-328101.vb │ │ ├── 30180-bug-325340.vb │ │ ├── 30420-bug-74955-2.response │ │ ├── 30420-bug-74955-2.vb │ │ ├── 30420-bug-74955.response │ │ ├── 30420-bug-74955.vb │ │ ├── 30451-bug-332869.vb │ │ ├── 30456-bug-456326.vb │ │ ├── 31027-bug-328101.response │ │ ├── 31027-bug-328101.vb │ │ ├── aspnet1.vb │ │ ├── aspnet2.vb │ │ ├── aspnet3.response │ │ ├── aspnet3.vb │ │ ├── bug-12861.vb │ │ ├── bug-15863.vb │ │ ├── bug-2087.vb │ │ ├── bug-320964.vb │ │ ├── bug-325331.vb │ │ ├── bug-325332.response │ │ ├── bug-325332.vb │ │ ├── bug-325339.vb │ │ ├── bug-325346.vb │ │ ├── bug-325976-2.response │ │ ├── bug-325976-2.vb │ │ ├── bug-325976.response │ │ ├── bug-325976.vb │ │ ├── bug-327596.vb │ │ ├── bug-332868.vb │ │ ├── bug-333403.rsp │ │ ├── bug-333403.vb │ │ ├── bug-333962.vb │ │ ├── bug-359234-ProtectedDefaultBaseCtor.response │ │ ├── bug-359234-ProtectedDefaultBaseCtor.vb │ │ ├── bug-3769.vb │ │ ├── bug-392456.vb │ │ ├── bug-428340-2.rsp │ │ ├── bug-428340-2.vb │ │ ├── bug-428340.vb │ │ ├── bug-433952.vb │ │ ├── bug-434288.vb │ │ ├── bug-438656.vb │ │ ├── bug-438669.vb │ │ ├── bug-438672.vb │ │ ├── bug-438683.vb │ │ ├── bug-444120.vb │ │ ├── bug-444811.vb │ │ ├── bug-444993.vb │ │ ├── bug-445479.vb │ │ ├── bug-504791.vb │ │ ├── bug-504822.response │ │ ├── bug-504822.vb │ │ ├── bug-547165.vb │ │ ├── bug-5630.vb │ │ ├── bug-629103.vb │ │ ├── bug-629369.vb │ │ ├── bug-629370.vb │ │ ├── bug-629373.vb │ │ ├── bug-652241.vb │ │ ├── bug-656602.vb │ │ ├── bug-674365.vb │ │ ├── bug-680380.vb │ │ ├── bug-74955.response │ │ ├── bug-74955.vb │ │ ├── bug-7616.vb │ │ ├── bug-7646.vb │ │ ├── bug-80750.response │ │ ├── bug-80750.vb │ │ ├── bug-80752.response │ │ ├── bug-80752.vb │ │ ├── bug-80833.response │ │ ├── bug-80833.vb │ │ ├── bug-80967.rsp │ │ ├── bug-80967.vb │ │ ├── bug-80967 │ │ │ └── bug-80967.rsp │ │ ├── bug-80968.response │ │ ├── bug-80968.vb │ │ ├── bug-80989.response │ │ ├── bug-80989.vb │ │ ├── bug-80990.response │ │ ├── bug-80990.vb │ │ ├── bug-80995.vb │ │ ├── bug-81009.vb │ │ ├── bug-81016.response │ │ ├── bug-81016.vb │ │ ├── bug-81055.response │ │ ├── bug-81055.vb │ │ ├── bug-81059.response │ │ ├── bug-81059.vb │ │ ├── bug-81119.vb │ │ ├── bug-81162.response │ │ ├── bug-81162.vb │ │ ├── bug-81243.vb │ │ ├── bug-82382.response │ │ ├── bug-82382.vb │ │ └── ia64-1.vb │ ├── Cecil │ │ └── LazyBug1.vb │ ├── ChangeLog │ ├── CompileTime │ │ ├── Accessibility1.vb │ │ ├── Accessibility2.vb │ │ ├── AddAssignStatement1.vb │ │ ├── AddHandler1.vb │ │ ├── AddHandler2.vb │ │ ├── AddHandlerWithStaticVariable.vb │ │ ├── AddressOfExpression1.vb │ │ ├── AddressOfExpression2.vb │ │ ├── AddressOfExpression3.vb │ │ ├── AndAlsoConstantExpression1.vb │ │ ├── AndAlsoExpression1.vb │ │ ├── AndConstantExpression1.vb │ │ ├── AndExpression2.vb │ │ ├── Array1.vb │ │ ├── Array2.vb │ │ ├── Array3.vb │ │ ├── Array4.vb │ │ ├── Array5.vb │ │ ├── ArrayCreationExpression1.vb │ │ ├── ArrayCreationExpression2.vb │ │ ├── ArrayCreationExpression3.vb │ │ ├── ArrayCreationExpression4.vb │ │ ├── ArrayCreationExpression5.vb │ │ ├── ArrayCreationExpression6.vb │ │ ├── ArrayInitializer1.vb │ │ ├── ArrayInitializer2.vb │ │ ├── ArrayInitializer3.vb │ │ ├── ArrayRef1.vb │ │ ├── ArrayRef2.vb │ │ ├── Assignment1.vb │ │ ├── Attributes1.vb │ │ ├── Attributes2.vb │ │ ├── Attributes3.vb │ │ ├── Attributes4.vb │ │ ├── Attributes5.vb │ │ ├── Attributes6.vb │ │ ├── Attributes7.vb │ │ ├── BinaryAddConstantExpression1.vb │ │ ├── BinaryAddExpression1.vb │ │ ├── BinarySubConstantExpression1.vb │ │ ├── BinarySubExpression1.vb │ │ ├── BuiltInType1.vb │ │ ├── ByRefProperty1.vb │ │ ├── ByRefStore1.vb │ │ ├── ByRefStructureReturn1.vb │ │ ├── CBoolConstantExpression1.vb │ │ ├── CByteConstantExpression1.vb │ │ ├── CCharConstantExpression1.vb │ │ ├── CDblConstantExpression1.vb │ │ ├── CIntConstantExpression1.vb │ │ ├── CIntExpression1.vb │ │ ├── CObjExpression1.vb │ │ ├── CSByteConstantExpression1.vb │ │ ├── CShortConstantExpression1.vb │ │ ├── CSngConstantExpression1.vb │ │ ├── CStrConstantExpression1.vb │ │ ├── CTypeExpression1.vb │ │ ├── CUIntConstantExpression1.vb │ │ ├── CULngConstantExpression1.vb │ │ ├── CUShortConstantExpression1.vb │ │ ├── Call1.vb │ │ ├── ClassVariable1.vb │ │ ├── ConcatAssignStatement1.vb │ │ ├── ConcatExpression1.vb │ │ ├── ConcatExpression2.vb │ │ ├── ConditionalCompilation1.vb │ │ ├── ConditionalConst1.vb │ │ ├── ConditionalIf1.vb │ │ ├── ConditionalIf2.vb │ │ ├── ConditionalIf3.vb │ │ ├── ConditionalIf4.vb │ │ ├── ConditionalRegion1.vb │ │ ├── ConstantBounds1.vb │ │ ├── ConstantExpression1.vb │ │ ├── ConstantExpression2.vb │ │ ├── ConstantExpression3.vb │ │ ├── ConstantExpression4.vb │ │ ├── ConstantExpression5.vb │ │ ├── ConstantExpression6.vb │ │ ├── ConstantExpression7.vb │ │ ├── ConstantExpression8.vb │ │ ├── ConstantExpression9.vb │ │ ├── Constraint1.vb │ │ ├── Constructors1.vb │ │ ├── Constructors2.vb │ │ ├── Continue1.vb │ │ ├── Continue2.vb │ │ ├── Continue3.vb │ │ ├── Conversion1.vb │ │ ├── CreateInstance1.vb │ │ ├── DataSet1.response │ │ ├── DataSet1.vb │ │ ├── DebugInfo1.vb │ │ ├── DefaultCtor.vb │ │ ├── DefaultMember1.vb │ │ ├── DelegateCreationExpression1.vb │ │ ├── DelegateCreationExpression2.vb │ │ ├── DictionaryLookupExpression1.vb │ │ ├── DictionaryLookupExpression2.vb │ │ ├── DirectCast1.vb │ │ ├── DirectCastExpression1.vb │ │ ├── DirectCastExpression2.vb │ │ ├── DivConstantExpression1.vb │ │ ├── DivisionAssignStatement1.vb │ │ ├── Do1.vb │ │ ├── DoLoop1.vb │ │ ├── DoLoopUntil1.vb │ │ ├── DoLoopWhile1.vb │ │ ├── DoLoopWhile3.vb │ │ ├── DotExpression1.vb │ │ ├── DuplicateReference1.vb │ │ ├── EmitLocalVariables1.vb │ │ ├── EnumConstant1.vb │ │ ├── EnumConstant2.vb │ │ ├── EnumConstant3.vb │ │ ├── EnumConstant4.vb │ │ ├── EnumWithAttribute1.vb │ │ ├── Enumerator1.vb │ │ ├── EqualsConstantExpression1.vb │ │ ├── EqualsExpression1.vb │ │ ├── Erase1.vb │ │ ├── Error1.vb │ │ ├── EventMember1.vb │ │ ├── EventMember2.vb │ │ ├── EventMember3.vb │ │ ├── EventMember4.vb │ │ ├── EventMember5.vb │ │ ├── EventMember6.vb │ │ ├── EventMember7.vb │ │ ├── EventMember8.vb │ │ ├── Exit1.vb │ │ ├── Exit2.vb │ │ ├── ExitFunction1.vb │ │ ├── ExitProperty1.vb │ │ ├── ExitSub1.vb │ │ ├── ExponentExpression1.vb │ │ ├── For1.vb │ │ ├── For2.vb │ │ ├── ForEach1.vb │ │ ├── ForEach2.vb │ │ ├── ForStep1.vb │ │ ├── GEConstantExpression1.vb │ │ ├── GTConstantExpression1.vb │ │ ├── GTExpression1.vb │ │ ├── GenericDelegate1.vb │ │ ├── GenericInterface1.vb │ │ ├── GenericInterface2.vb │ │ ├── GenericInterface3.vb │ │ ├── GenericInterface4.vb │ │ ├── GenericNestedType1.rsp │ │ ├── GenericNestedType1.vb │ │ ├── GenericTypeParameter1.vb │ │ ├── GenericTypeParameter2.vb │ │ ├── GenericTypeParameter3.vb │ │ ├── GenericTypeParameter4.vb │ │ ├── GenericTypeParameter5.vb │ │ ├── GenericTypeParameter6.vb │ │ ├── GenericTypeParameter7.vb │ │ ├── GenericTypeParameter8.vb │ │ ├── GenericTypeParameter9.vb │ │ ├── GetTypeExpression1.vb │ │ ├── GetTypeExpression2.vb │ │ ├── GetTypeExpression3.vb │ │ ├── GetUpperBound.vb │ │ ├── Global1.vb │ │ ├── Goto1.vb │ │ ├── Goto2.vb │ │ ├── HideBySig1.vb │ │ ├── If1.vb │ │ ├── If2.vb │ │ ├── If3.vb │ │ ├── If4.vb │ │ ├── If5.vb │ │ ├── If6.vb │ │ ├── IfElse1.vb │ │ ├── IfElse2.vb │ │ ├── IfElse3.vb │ │ ├── IfElse4.vb │ │ ├── IfElseIf1.vb │ │ ├── IfElseIf2.vb │ │ ├── IfElseIf3.vb │ │ ├── IfElseIfElse1.vb │ │ ├── IfElseIfElse2.vb │ │ ├── ImplementsClause1.vb │ │ ├── ImplementsClause2.vb │ │ ├── Imports1.vb │ │ ├── Imports2.vb │ │ ├── Imports3.response │ │ ├── Imports3.vb │ │ ├── Imports4.response │ │ ├── Imports4.vb │ │ ├── Imports5.response │ │ ├── Imports5.vb │ │ ├── ImportsNamespace1.vb │ │ ├── ImportsType1.vb │ │ ├── ImportsType2.vb │ │ ├── ImportsType3.vb │ │ ├── ImportsType4.vb │ │ ├── InferFor1.vb │ │ ├── IntDivConstantExpression1.vb │ │ ├── IntDivExpression1.vb │ │ ├── IntDivisionAssignStatement1.vb │ │ ├── IntegralTypes1.vb │ │ ├── InterfaceInheritance1.vb │ │ ├── InterfaceMemberSpecifier1.vb │ │ ├── InterfaceMemberSpecifier2.vb │ │ ├── Is1.vb │ │ ├── IsNotExpression1.vb │ │ ├── JaggedArray1.vb │ │ ├── JaggedArray2.vb │ │ ├── JaggedArray3.vb │ │ ├── LEConstantExpression1.vb │ │ ├── LEExpression1.vb │ │ ├── LShiftAssignStatement1.vb │ │ ├── LShiftConstantExpression1.vb │ │ ├── LShiftExpression1.vb │ │ ├── LTConstantExpression1.vb │ │ ├── LTExpression1.vb │ │ ├── Label1.vb │ │ ├── Like1.vb │ │ ├── LikeExpression1.vb │ │ ├── Literals1.vb │ │ ├── LocalArrayVariable1.vb │ │ ├── LocalConstDeclaration1.vb │ │ ├── LocalVariable1.vb │ │ ├── LocalVariable2.vb │ │ ├── LocalVariableAssignment1.vb │ │ ├── MarshalAs.vb │ │ ├── MeExpression1.vb │ │ ├── MeExpression2.vb │ │ ├── MemberAccessExpression1.vb │ │ ├── MemberAccessExpression2.vb │ │ ├── MemberAccessExpression3.vb │ │ ├── MemberAccessExpression4.vb │ │ ├── MemberAccessExpression5.vb │ │ ├── MemberAttributes1.vb │ │ ├── MethodAttributes1.vb │ │ ├── MethodInvocation1.vb │ │ ├── MethodResolution1.vb │ │ ├── MethodVariable1.vb │ │ ├── MethodVariable2.vb │ │ ├── MethodVariable3.vb │ │ ├── MethodsWithPointers1.vb │ │ ├── MidAssignStatement1.vb │ │ ├── MidAssignStatement2.vb │ │ ├── ModConstantExpression1.vb │ │ ├── ModExpression1.vb │ │ ├── ModuleFunction1.vb │ │ ├── ModuleProperty1.vb │ │ ├── MultConstantExpression1.vb │ │ ├── MultConstantExpression2.vb │ │ ├── MultExpression1.vb │ │ ├── MultiFileTest.1.vb │ │ ├── MultiFileTest.2.vb │ │ ├── MultiVar1.vb │ │ ├── MultiVar2.vb │ │ ├── MultiVar3.vb │ │ ├── MultiVar4.vb │ │ ├── MultiplicationAssignStatement1.vb │ │ ├── MyBaseExpression1.vb │ │ ├── MyClassExpression1.vb │ │ ├── NameResolution1.vb │ │ ├── NameResolution2.vb │ │ ├── NameResolution3.vb │ │ ├── NameResolution4.vb │ │ ├── Namespace2.response │ │ ├── Narrowing1.vb │ │ ├── NestedType1.vb │ │ ├── NestedType2.vb │ │ ├── NestedType3.vb │ │ ├── NewAssignment1.vb │ │ ├── NewExpression1.vb │ │ ├── NewExpression2.vb │ │ ├── NewExpression3.vb │ │ ├── NewExpression4.vb │ │ ├── NotConstantExpression1.vb │ │ ├── NotEqualsConstantExpression1.vb │ │ ├── NotEqualsExpression1.vb │ │ ├── NotEqualsExpression2.vb │ │ ├── ObjectCreationExpression1.vb │ │ ├── ObjectCreationExpression2.vb │ │ ├── ObjectCreationExpression3.vb │ │ ├── ObjectCreationExpression4.vb │ │ ├── OnErroGoto_1.vb │ │ ├── OnErrorGoto0_1.vb │ │ ├── OnErrorGotoMinus1_1.vb │ │ ├── OnErrorResumeNext_1.vb │ │ ├── OptionalArguments1.vb │ │ ├── OptionalArguments2.vb │ │ ├── OrConstantExpression1.vb │ │ ├── OrElseConstantExpression1.vb │ │ ├── OrElseExpression1.vb │ │ ├── OrExpression1.vb │ │ ├── Partial1.vb │ │ ├── PowerAssignStatement1.vb │ │ ├── PropertyAccess5.response │ │ ├── PropertyAccess5.vb │ │ ├── RShiftAssignStatement1.vb │ │ ├── RShiftConstantExpression1.vb │ │ ├── RShiftExpression1.vb │ │ ├── RaiseEvent1.vb │ │ ├── RaiseEvent2.vb │ │ ├── RealDivConstantExpression1.vb │ │ ├── RealDivExpression1.vb │ │ ├── Redim1.vb │ │ ├── RedimPreserve1.vb │ │ ├── RedimPreserve2.vb │ │ ├── RedimPreserve3.vb │ │ ├── RemoveHandler1.vb │ │ ├── Resume1.vb │ │ ├── ResumeNext1.vb │ │ ├── Return1.vb │ │ ├── SecurityAttribute1.vb │ │ ├── SecurityAttribute2.vb │ │ ├── SelectCase1.vb │ │ ├── SingleLineIfWithBlockStatements1.vb │ │ ├── SingleLineIfWithNonBlockStatements1.vb │ │ ├── SingleLineStatement1.response │ │ ├── SpecBug1.vb │ │ ├── StaticVariable1.vb │ │ ├── StaticVariable6.vb │ │ ├── Stop1.vb │ │ ├── StructureAccess1.vb │ │ ├── SubtractionAssignStatement1.vb │ │ ├── SyncLock1.vb │ │ ├── Throw1.vb │ │ ├── Throw2.vb │ │ ├── Throw3.response │ │ ├── TryCastExpression1.vb │ │ ├── TryCatch1.vb │ │ ├── TryCatch5.vb │ │ ├── TryCatchFinally1.vb │ │ ├── TryFinally1.vb │ │ ├── TypeLoadEx1.vb │ │ ├── TypeLoadEx2.vb │ │ ├── TypeNameResolution1.vb │ │ ├── TypeNameResolution2.vb │ │ ├── TypeNameResolution3.vb │ │ ├── TypeOfExpression1.vb │ │ ├── UnaryAddExpression1.vb │ │ ├── UnaryMinusExpression1.vb │ │ ├── UnaryNotExpression1.vb │ │ ├── UsingStatement1.vb │ │ ├── UsingStatement2.vb │ │ ├── UsingStatement3.vb │ │ ├── UsingStatement4.vb │ │ ├── VariableInitializer1.vb │ │ ├── VariableInitializer2.vb │ │ ├── While1.vb │ │ ├── With1.vb │ │ ├── XOrExpression1.vb │ │ └── XorConstantExpression1.vb │ ├── CompileTime2 │ │ ├── AddHandler3.vb │ │ ├── AddHandler4.vb │ │ ├── AddressOfExpression4.vb │ │ ├── AndAlsoExpression2.vb │ │ ├── ArgumentTypeInference.vb │ │ ├── ArrayFunctionReturnValue1.vb │ │ ├── ArrayVariable1.vb │ │ ├── AssignmentOperator.vb │ │ ├── Attribute1.vb │ │ ├── Attribute2.vb │ │ ├── Attribute3.vb │ │ ├── AttributeFileVersion.vb │ │ ├── Attributes8.vb │ │ ├── BinaryOperator.vb │ │ ├── Boolean1.vb │ │ ├── Boolean2.vb │ │ ├── Box1.vb │ │ ├── ByRef1.vb │ │ ├── ByRef10.vb │ │ ├── ByRef11.vb │ │ ├── ByRef12.vb │ │ ├── ByRef13.vb │ │ ├── ByRef2.vb │ │ ├── ByRef3.vb │ │ ├── ByRef4.vb │ │ ├── ByRef5.vb │ │ ├── ByRef6.vb │ │ ├── ByRef7.vb │ │ ├── ByRef8.vb │ │ ├── ByRef9.vb │ │ ├── ByRefAssignment1.vb │ │ ├── ByRefAssignment2.vb │ │ ├── ByRefLiteralConversion1.vb │ │ ├── CType7.vb │ │ ├── CoClass1.vb │ │ ├── Comma.vb │ │ ├── Concatenation.vb │ │ ├── ConditionalAttribute1.vb │ │ ├── ConditionalExpression1.vb │ │ ├── Constraint1.vb │ │ ├── ConstructorInitialization1.vb │ │ ├── ConstructorInitialization2.vb │ │ ├── ConstructorInitialization3.vb │ │ ├── ConstructorInitialization4.vb │ │ ├── ConstructorInitialization5.vb │ │ ├── ConstructorInitialization6.vb │ │ ├── ConstructorInitialization7.vb │ │ ├── ConversionExpression1.vb │ │ ├── CurlyBraces.vb │ │ ├── DefaultFunctionVariable1.vb │ │ ├── DefaultInstance1.rsp │ │ ├── DefaultInstance1.vb │ │ ├── DefaultProperty1.vb │ │ ├── DefaultProperty2.vb │ │ ├── DefaultProperty3.vb │ │ ├── DefaultProperty4.vb │ │ ├── DefaultProperty5.vb │ │ ├── DefaultProperty6.vb │ │ ├── DefaultProperty7.vb │ │ ├── DelegateInvocation1.vb │ │ ├── DelegateInvocation2.vb │ │ ├── DictionaryAccessExpression.vb │ │ ├── DictionaryAccessExpressionStrict.vb │ │ ├── DoLoopWhile2.vb │ │ ├── Enum.vb │ │ ├── Enum1.vb │ │ ├── Enum2.vb │ │ ├── Enum3.vb │ │ ├── Enum4.vb │ │ ├── Enum5.vb │ │ ├── Enum6.vb │ │ ├── EnumAccess1.vb │ │ ├── EnumAccess2.vb │ │ ├── EnumAccess3.vb │ │ ├── EnumConversion1.vb │ │ ├── EnumValueComparison1.vb │ │ ├── EnumValueComparison2.vb │ │ ├── Event1.vb │ │ ├── ExitDoStatement1.vb │ │ ├── ExternalModuleFunction1.vb │ │ ├── FieldAccess1.vb │ │ ├── FieldAccess2.vb │ │ ├── FirstLinuxProgram.vb │ │ ├── For1.vb │ │ ├── For2.vb │ │ ├── For3.vb │ │ ├── For4.vb │ │ ├── For5.vb │ │ ├── For6.vb │ │ ├── For7.vb │ │ ├── ForEach.vb │ │ ├── ForEach2.vb │ │ ├── ForEach3.vb │ │ ├── ForEach4.vb │ │ ├── From.vb │ │ ├── FunctionReturnArrayIndex1.vb │ │ ├── FunctionReturnValue1.vb │ │ ├── FunctionReturnVariable1.vb │ │ ├── GEExpression1.vb │ │ ├── Generic1.vb │ │ ├── Generic2.vb │ │ ├── Generic3.vb │ │ ├── Generic4.vb │ │ ├── Generic5.vb │ │ ├── Generic6.vb │ │ ├── Generic7.vb │ │ ├── Generic8.vb │ │ ├── Generic9.vb │ │ ├── GenericArrayAccess1.vb │ │ ├── GenericBaseMethod1.vb │ │ ├── GenericConstraint1.vb │ │ ├── GenericConstraint2.vb │ │ ├── GenericConstructor1.vb │ │ ├── GenericDefaultProperty1.vb │ │ ├── GenericDelegateTypeParameter1.vb │ │ ├── GenericEnumerator1.vb │ │ ├── GenericEnumerator2.vb │ │ ├── GenericFieldAccess1.vb │ │ ├── GenericFieldAccess2.vb │ │ ├── GenericFieldAccess3.vb │ │ ├── GenericFieldAccess4.vb │ │ ├── GenericFieldAccess5.vb │ │ ├── GenericForEach1.vb │ │ ├── GenericForEach2.vb │ │ ├── GenericInherits1.vb │ │ ├── GenericMethod1.vb │ │ ├── GenericMethod10.vb │ │ ├── GenericMethod2.vb │ │ ├── GenericMethod3.vb │ │ ├── GenericMethod4.vb │ │ ├── GenericMethod5.vb │ │ ├── GenericMethod6.vb │ │ ├── GenericMethod7.vb │ │ ├── GenericMethod8.vb │ │ ├── GenericMethod9.vb │ │ ├── GenericMethodImplements1.vb │ │ ├── GenericMethodImplements2.vb │ │ ├── GenericMethodImplements3.vb │ │ ├── GenericMethodParameter1.vb │ │ ├── GenericMethodParameter2.vb │ │ ├── GenericNestedType3.vb │ │ ├── GenericParameterAccess1.vb │ │ ├── GenericProperty1.vb │ │ ├── GenericShadows1.vb │ │ ├── GenericType1.vb │ │ ├── GenericTypeOf1.vb │ │ ├── GetEnumerator1.vb │ │ ├── GetTypeExpression4.vb │ │ ├── If1.vb │ │ ├── If2.vb │ │ ├── IfElse1.vb │ │ ├── IfElseIfElse1.vb │ │ ├── IfElseIfElse2.vb │ │ ├── IfStatement1.vb │ │ ├── ImplicitLineContinuations.vb │ │ ├── ImplicitNullableConversions1.vb │ │ ├── Imports1.vb │ │ ├── IndexedProperty1.vb │ │ ├── InheritedInterfaceMember1.vb │ │ ├── InheritedInterfaceMethod1.vb │ │ ├── InheritedSharedMethod1.vb │ │ ├── InterfaceInheritance2.vb │ │ ├── InterfaceMember1.vb │ │ ├── IsNotExpression2.vb │ │ ├── IsandIsNotOperators.vb │ │ ├── LEExpression1.vb │ │ ├── LeftShift1.vb │ │ ├── LessGeneric1.vb │ │ ├── LessGeneric2.vb │ │ ├── LocalScope1.vb │ │ ├── LocalVariable1.vb │ │ ├── LocalVariableInitialization1.vb │ │ ├── Main1.vb │ │ ├── Main2.vb │ │ ├── Main3.vb │ │ ├── Main4.vb │ │ ├── Main5.vb │ │ ├── Main6.vb │ │ ├── Main7.vb │ │ ├── Main8.vb │ │ ├── MethodAttributes2.vb │ │ ├── MethodDeclaration1.vb │ │ ├── MethodExpression1.vb │ │ ├── MethodExpression2.vb │ │ ├── MethodInvocation1.vb │ │ ├── MethodInvocation10.vb │ │ ├── MethodInvocation11.vb │ │ ├── MethodInvocation12.vb │ │ ├── MethodInvocation13.vb │ │ ├── MethodInvocation14.vb │ │ ├── MethodInvocation15.vb │ │ ├── MethodInvocation16.vb │ │ ├── MethodInvocation17.vb │ │ ├── MethodInvocation18.vb │ │ ├── MethodInvocation19.vb │ │ ├── MethodInvocation2.vb │ │ ├── MethodInvocation20.vb │ │ ├── MethodInvocation21.vb │ │ ├── MethodInvocation22.vb │ │ ├── MethodInvocation23.vb │ │ ├── MethodInvocation24.vb │ │ ├── MethodInvocation3.vb │ │ ├── MethodInvocation4.vb │ │ ├── MethodInvocation5.vb │ │ ├── MethodInvocation6.vb │ │ ├── MethodInvocation8.vb │ │ ├── MethodInvocation9.vb │ │ ├── MethodInvocations.vb │ │ ├── MethodOverloads.vb │ │ ├── MethodOverloadsStrict.vb │ │ ├── MethodResolution1.vb │ │ ├── MethodResolution2.vb │ │ ├── MethodResolution3.vb │ │ ├── MethodResolution4.vb │ │ ├── MethodResolution5.vb │ │ ├── MethodResolution6.vb │ │ ├── MethodResolution7.vb │ │ ├── MethodResolution8.vb │ │ ├── MissingParameter1.vb │ │ ├── Module3.vb │ │ ├── MultDimArray1.vb │ │ ├── MultipleExpression1.vb │ │ ├── MultipleExpression2.vb │ │ ├── MyBase1.vb │ │ ├── NestedDeclarations2.vb │ │ ├── NestedType4.vb │ │ ├── NoOutDir1.rsp │ │ ├── NoOutDir1.vb │ │ ├── Nothing1.vb │ │ ├── NothingComparison1.vb │ │ ├── NothingValueType1.vb │ │ ├── NullChar.vb │ │ ├── Nullable1.vb │ │ ├── Nullable2.vb │ │ ├── Nullable3.vb │ │ ├── Nullable4.vb │ │ ├── Nullable5.vb │ │ ├── Operator1.vb │ │ ├── OperatorIntrinsic.vb │ │ ├── OperatorIntrinsicAnd.vb │ │ ├── OperatorIntrinsicAndAlso.vb │ │ ├── OperatorIntrinsicBinaryAdd.vb │ │ ├── OperatorIntrinsicBinarySub.vb │ │ ├── OperatorIntrinsicConcat.vb │ │ ├── OperatorIntrinsicEquals.vb │ │ ├── OperatorIntrinsicExponent.vb │ │ ├── OperatorIntrinsicGE.vb │ │ ├── OperatorIntrinsicGT.vb │ │ ├── OperatorIntrinsicIntDivision.vb │ │ ├── OperatorIntrinsicIs.vb │ │ ├── OperatorIntrinsicIsNot.vb │ │ ├── OperatorIntrinsicLE.vb │ │ ├── OperatorIntrinsicLShift.vb │ │ ├── OperatorIntrinsicLT.vb │ │ ├── OperatorIntrinsicLike.vb │ │ ├── OperatorIntrinsicMod.vb │ │ ├── OperatorIntrinsicMult.vb │ │ ├── OperatorIntrinsicNotEquals.vb │ │ ├── OperatorIntrinsicOr.vb │ │ ├── OperatorIntrinsicOrElse.vb │ │ ├── OperatorIntrinsicRShift.vb │ │ ├── OperatorIntrinsicRealDivision.vb │ │ ├── OperatorIntrinsicUnaryMinus.vb │ │ ├── OperatorIntrinsicUnaryNot.vb │ │ ├── OperatorIntrinsicUnaryPlus.vb │ │ ├── OperatorIntrinsicXor.vb │ │ ├── OptionCompareText1.vb │ │ ├── OptionCompareText2.vb │ │ ├── OptionStrict1.vb │ │ ├── Optional1.vb │ │ ├── OptionalParameters1.vb │ │ ├── OptionalParameters2.vb │ │ ├── OptionalParameters4.vb │ │ ├── OverrideImplementedMethod1.vb │ │ ├── OverridenProperty1.vb │ │ ├── PEFileKind-Console.vb │ │ ├── PEFileKind-Winexe.response │ │ ├── PEFileKind-Winexe.vb │ │ ├── ParamArray1.vb │ │ ├── ParamArray2.vb │ │ ├── ParamArray3.vb │ │ ├── ParamArray4.vb │ │ ├── ParamArray5.vb │ │ ├── ParamArray6.vb │ │ ├── ParamArray7.vb │ │ ├── ParamArrayResolution1.response │ │ ├── ParamArrayResolution1.vb │ │ ├── ParamArrayResolution2.vb │ │ ├── ParameterAttributes1.vb │ │ ├── ParameterAttributes2.vb │ │ ├── Parenthesis.vb │ │ ├── ParenthesizedExpression1.vb │ │ ├── PartialAccess1.vb │ │ ├── Property9.vb │ │ ├── PropertyAccess1.vb │ │ ├── PropertyAccess2.vb │ │ ├── PropertyAccess3.vb │ │ ├── PropertyAccess4.vb │ │ ├── PropertyAccess6.vb │ │ ├── PropertyAccessExpression1.vb │ │ ├── PropertyAccessExpression2.vb │ │ ├── PropertyAccessExpression3.vb │ │ ├── PropertyAccessExpression4.vb │ │ ├── PropertyAccessExpression5.vb │ │ ├── ReadOnly1.vb │ │ ├── Redim2.vb │ │ ├── ReturnVariable1.vb │ │ ├── Select1.vb │ │ ├── SelectCase1.vb │ │ ├── SelectCase2.vb │ │ ├── SelectCase3.vb │ │ ├── SelectCase5.vb │ │ ├── SelectCase6.vb │ │ ├── ShadowedProperty1.vb │ │ ├── Shadows1.vb │ │ ├── SharedExpressions1.vb │ │ ├── SingleLineStatement1.vb │ │ ├── StaticVariable1.vb │ │ ├── StaticVariable2.vb │ │ ├── StaticVariable3.vb │ │ ├── StaticVariable4.vb │ │ ├── StaticVariable5.vb │ │ ├── StringComparison1.vb │ │ ├── StringHandling1.vb │ │ ├── StructureMembers1.vb │ │ ├── StructureMembers2.vb │ │ ├── StructureMembers3.vb │ │ ├── StructureMembers4.vb │ │ ├── StructureMembers5.vb │ │ ├── StructureMembers6.vb │ │ ├── StructureMembers7.vb │ │ ├── StructureMembers8.vb │ │ ├── Throw3.vb │ │ ├── TryCatch1.vb │ │ ├── TryCatch2.vb │ │ ├── TryCatch3.vb │ │ ├── TryCatch4.vb │ │ ├── TryReturn1.vb │ │ ├── TypeArguments17.vb │ │ ├── TypeConversion.vb │ │ ├── TypeConversionIntrinsic.vb │ │ ├── TypeConversionIntrinsicBoolean.vb │ │ ├── TypeConversionIntrinsicByte.vb │ │ ├── TypeConversionIntrinsicChar.vb │ │ ├── TypeConversionIntrinsicDBNull.vb │ │ ├── TypeConversionIntrinsicDateTime.vb │ │ ├── TypeConversionIntrinsicDecimal.vb │ │ ├── TypeConversionIntrinsicDouble.vb │ │ ├── TypeConversionIntrinsicGenerator.vb │ │ ├── TypeConversionIntrinsicInt16.vb │ │ ├── TypeConversionIntrinsicInt32.vb │ │ ├── TypeConversionIntrinsicInt64.vb │ │ ├── TypeConversionIntrinsicObject.vb │ │ ├── TypeConversionIntrinsicSByte.vb │ │ ├── TypeConversionIntrinsicSingle.vb │ │ ├── TypeConversionIntrinsicString.vb │ │ ├── TypeConversionIntrinsicUInt16.vb │ │ ├── TypeConversionIntrinsicUInt32.vb │ │ ├── TypeConversionIntrinsicUInt64.vb │ │ ├── TypeInferArray1.vb │ │ ├── TypeOf1.vb │ │ ├── TypeParameterExpression1.vb │ │ ├── TypeParameterExpression2.vb │ │ ├── TypeParameterExpression3.vb │ │ ├── UserConversion1.vb │ │ ├── UserConversion2.vb │ │ ├── UserConversion3.vb │ │ ├── UserDefinedNullableConversions1.vb │ │ ├── UsingStatement5.vb │ │ ├── UsingStatement6.vb │ │ └── VariableInitializer3.vb │ ├── Errors │ │ ├── 2003.response │ │ ├── 2003.vb │ │ ├── 2012.vb │ │ ├── 2017-aspnet1.response │ │ ├── 2017-aspnet1.vb │ │ ├── 30002-1.vb │ │ ├── 30002-2.vb │ │ ├── 30002-3.vb │ │ ├── 30002.vb │ │ ├── 30022.vb │ │ ├── 30023.vb │ │ ├── 30035.vb │ │ ├── 30038-1.vb │ │ ├── 30038.vb │ │ ├── 30039-1.vb │ │ ├── 30039-2.vb │ │ ├── 30039-3.vb │ │ ├── 30039.vb │ │ ├── 30057-1.vb │ │ ├── 30057-2.vb │ │ ├── 30057.vb │ │ ├── 30059.vb │ │ ├── 30060-1.vb │ │ ├── 30060-10.vb │ │ ├── 30060-11.vb │ │ ├── 30060-12.vb │ │ ├── 30060-13.vb │ │ ├── 30060-14.vb │ │ ├── 30060-15.vb │ │ ├── 30060-16.vb │ │ ├── 30060-17.vb │ │ ├── 30060-18.vb │ │ ├── 30060-19.vb │ │ ├── 30060-2.vb │ │ ├── 30060-20.vb │ │ ├── 30060-21.vb │ │ ├── 30060-22.vb │ │ ├── 30060-23.vb │ │ ├── 30060-24.vb │ │ ├── 30060-25.vb │ │ ├── 30060-3.vb │ │ ├── 30060-4.vb │ │ ├── 30060-5.vb │ │ ├── 30060-6.vb │ │ ├── 30060-7.vb │ │ ├── 30060-8.vb │ │ ├── 30060-9.vb │ │ ├── 30060.vb │ │ ├── 30064.vb │ │ ├── 30068.vb │ │ ├── 30070-1.vb │ │ ├── 30070-2.vb │ │ ├── 30070-3.vb │ │ ├── 30070.vb │ │ ├── 30074-1.vb │ │ ├── 30074-2.vb │ │ ├── 30074.vb │ │ ├── 30099.vb │ │ ├── 30105.vb │ │ ├── 30106.vb │ │ ├── 30108-1.vb │ │ ├── 30108-2.vb │ │ ├── 30108.vb │ │ ├── 30112.vb │ │ ├── 30124-1.vb │ │ ├── 30124.vb │ │ ├── 30125.vb │ │ ├── 30126.vb │ │ ├── 30127.vb │ │ ├── 30129.vb │ │ ├── 30132-1.vb │ │ ├── 30132.vb │ │ ├── 30179-2.vb │ │ ├── 30179-3.vb │ │ ├── 30179.vb │ │ ├── 30182.vb │ │ ├── 30183.vb │ │ ├── 30198.vb │ │ ├── 30199.vb │ │ ├── 30201-1.vb │ │ ├── 30201.vb │ │ ├── 30203-1.vb │ │ ├── 30203-2.vb │ │ ├── 30203.vb │ │ ├── 30206.vb │ │ ├── 30207.vb │ │ ├── 30209.vb │ │ ├── 30210.vb │ │ ├── 30217.vb │ │ ├── 30225-1.vb │ │ ├── 30225-2.vb │ │ ├── 30225.vb │ │ ├── 30248.vb │ │ ├── 30249.vb │ │ ├── 30251-1.vb │ │ ├── 30251.vb │ │ ├── 30311-1.vb │ │ ├── 30311-10.vb │ │ ├── 30311-11.vb │ │ ├── 30311-12.vb │ │ ├── 30311-13.vb │ │ ├── 30311-14.vb │ │ ├── 30311-15.vb │ │ ├── 30311-16.vb │ │ ├── 30311-17.vb │ │ ├── 30311-18.vb │ │ ├── 30311-19.vb │ │ ├── 30311-2.vb │ │ ├── 30311-20.vb │ │ ├── 30311-21.vb │ │ ├── 30311-22.vb │ │ ├── 30311-23.vb │ │ ├── 30311-24.vb │ │ ├── 30311-25.vb │ │ ├── 30311-26.vb │ │ ├── 30311-27.vb │ │ ├── 30311-28.vb │ │ ├── 30311-29.vb │ │ ├── 30311-3.vb │ │ ├── 30311-30.vb │ │ ├── 30311-31.vb │ │ ├── 30311-32.vb │ │ ├── 30311-33.vb │ │ ├── 30311-34.vb │ │ ├── 30311-35.vb │ │ ├── 30311-36.vb │ │ ├── 30311-37.vb │ │ ├── 30311-38.vb │ │ ├── 30311-39.vb │ │ ├── 30311-4.vb │ │ ├── 30311-40.vb │ │ ├── 30311-41.vb │ │ ├── 30311-42.vb │ │ ├── 30311-43.vb │ │ ├── 30311-44.vb │ │ ├── 30311-45.vb │ │ ├── 30311-46.vb │ │ ├── 30311-47.vb │ │ ├── 30311-48.vb │ │ ├── 30311-49.vb │ │ ├── 30311-5.vb │ │ ├── 30311-50.vb │ │ ├── 30311-51.vb │ │ ├── 30311-52.vb │ │ ├── 30311-53.vb │ │ ├── 30311-54.vb │ │ ├── 30311-55.vb │ │ ├── 30311-56.vb │ │ ├── 30311-57.vb │ │ ├── 30311-58.vb │ │ ├── 30311-59.vb │ │ ├── 30311-6.vb │ │ ├── 30311-60.vb │ │ ├── 30311-61.vb │ │ ├── 30311-62.vb │ │ ├── 30311-63.vb │ │ ├── 30311-64.vb │ │ ├── 30311-65.vb │ │ ├── 30311-66.vb │ │ ├── 30311-67.vb │ │ ├── 30311-68.vb │ │ ├── 30311-7.vb │ │ ├── 30311-8.vb │ │ ├── 30311-9.vb │ │ ├── 30311.vb │ │ ├── 30332-1.vb │ │ ├── 30332-2.vb │ │ ├── 30332-3.vb │ │ ├── 30332-4.vb │ │ ├── 30332-5.vb │ │ ├── 30332-6.vb │ │ ├── 30332-7.vb │ │ ├── 30332.vb │ │ ├── 30333-1.vb │ │ ├── 30333.vb │ │ ├── 30337-1.vb │ │ ├── 30337-2.vb │ │ ├── 30337-3.vb │ │ ├── 30337-4.vb │ │ ├── 30337.vb │ │ ├── 30367.vb │ │ ├── 30369-1.vb │ │ ├── 30369-10.vb │ │ ├── 30369-11.vb │ │ ├── 30369-12.vb │ │ ├── 30369-13.vb │ │ ├── 30369-2.vb │ │ ├── 30369-3.vb │ │ ├── 30369-4.vb │ │ ├── 30369-5.vb │ │ ├── 30369-6.vb │ │ ├── 30369-7.vb │ │ ├── 30369-8.vb │ │ ├── 30369-9.vb │ │ ├── 30369.vb │ │ ├── 30375.vb │ │ ├── 30387.vb │ │ ├── 30390.vb │ │ ├── 30414.vb │ │ ├── 30439-1.vb │ │ ├── 30439-2.vb │ │ ├── 30439.response │ │ ├── 30439.vb │ │ ├── 30443.vb │ │ ├── 30444.vb │ │ ├── 30451-1.vb │ │ ├── 30451-2.vb │ │ ├── 30451-3.vb │ │ ├── 30451.vb │ │ ├── 30452.vb │ │ ├── 30455-1.vb │ │ ├── 30455-2.vb │ │ ├── 30455-3.vb │ │ ├── 30455.vb │ │ ├── 30456-1.vb │ │ ├── 30456-2.vb │ │ ├── 30456-3.vb │ │ ├── 30456.vb │ │ ├── 30469-1.vb │ │ ├── 30469-2.vb │ │ ├── 30469-3.vb │ │ ├── 30469-4.vb │ │ ├── 30469-5.vb │ │ ├── 30469-6.vb │ │ ├── 30469.vb │ │ ├── 30471.vb │ │ ├── 30480-1.vb │ │ ├── 30480-2.vb │ │ ├── 30480-3.vb │ │ ├── 30480-4.vb │ │ ├── 30480.vb │ │ ├── 30491-1.vb │ │ ├── 30491.vb │ │ ├── 30506-1.vb │ │ ├── 30506-2.vb │ │ ├── 30506-3.vb │ │ ├── 30506-4.vb │ │ ├── 30506-5.vb │ │ ├── 30506-6.vb │ │ ├── 30512-1.vb │ │ ├── 30512-10.vb │ │ ├── 30512-100.vb │ │ ├── 30512-101.vb │ │ ├── 30512-102.vb │ │ ├── 30512-103.vb │ │ ├── 30512-104.vb │ │ ├── 30512-105.vb │ │ ├── 30512-106.vb │ │ ├── 30512-107.vb │ │ ├── 30512-108.vb │ │ ├── 30512-109.vb │ │ ├── 30512-11.vb │ │ ├── 30512-110.vb │ │ ├── 30512-111.vb │ │ ├── 30512-112.vb │ │ ├── 30512-113.vb │ │ ├── 30512-114.vb │ │ ├── 30512-115.vb │ │ ├── 30512-116.vb │ │ ├── 30512-117.vb │ │ ├── 30512-118.vb │ │ ├── 30512-119.vb │ │ ├── 30512-12.vb │ │ ├── 30512-13.vb │ │ ├── 30512-14.vb │ │ ├── 30512-15.vb │ │ ├── 30512-16.vb │ │ ├── 30512-17.vb │ │ ├── 30512-18.vb │ │ ├── 30512-19.vb │ │ ├── 30512-2.vb │ │ ├── 30512-20.vb │ │ ├── 30512-21.vb │ │ ├── 30512-22.vb │ │ ├── 30512-23.vb │ │ ├── 30512-24.vb │ │ ├── 30512-25.vb │ │ ├── 30512-26.vb │ │ ├── 30512-27.vb │ │ ├── 30512-28.vb │ │ ├── 30512-29.vb │ │ ├── 30512-3.vb │ │ ├── 30512-30.vb │ │ ├── 30512-31.vb │ │ ├── 30512-32.vb │ │ ├── 30512-33.vb │ │ ├── 30512-34.vb │ │ ├── 30512-35.vb │ │ ├── 30512-36.vb │ │ ├── 30512-37.vb │ │ ├── 30512-38.vb │ │ ├── 30512-39.vb │ │ ├── 30512-4.vb │ │ ├── 30512-40.vb │ │ ├── 30512-41.vb │ │ ├── 30512-42.vb │ │ ├── 30512-43.vb │ │ ├── 30512-44.vb │ │ ├── 30512-45.vb │ │ ├── 30512-46.vb │ │ ├── 30512-47.vb │ │ ├── 30512-48.vb │ │ ├── 30512-49.vb │ │ ├── 30512-5.vb │ │ ├── 30512-50.vb │ │ ├── 30512-51.vb │ │ ├── 30512-52.vb │ │ ├── 30512-53.vb │ │ ├── 30512-54.vb │ │ ├── 30512-55.vb │ │ ├── 30512-56.vb │ │ ├── 30512-57.vb │ │ ├── 30512-58.vb │ │ ├── 30512-59.vb │ │ ├── 30512-6.vb │ │ ├── 30512-60.vb │ │ ├── 30512-61.vb │ │ ├── 30512-62.vb │ │ ├── 30512-63.vb │ │ ├── 30512-64.vb │ │ ├── 30512-65.vb │ │ ├── 30512-66.vb │ │ ├── 30512-67.vb │ │ ├── 30512-68.vb │ │ ├── 30512-69.vb │ │ ├── 30512-7.vb │ │ ├── 30512-70.vb │ │ ├── 30512-71.vb │ │ ├── 30512-72.vb │ │ ├── 30512-73.vb │ │ ├── 30512-74.vb │ │ ├── 30512-75.vb │ │ ├── 30512-76.vb │ │ ├── 30512-77.vb │ │ ├── 30512-78.vb │ │ ├── 30512-79.vb │ │ ├── 30512-8.vb │ │ ├── 30512-80.vb │ │ ├── 30512-81.vb │ │ ├── 30512-82.vb │ │ ├── 30512-83.vb │ │ ├── 30512-84.vb │ │ ├── 30512-85.vb │ │ ├── 30512-86.vb │ │ ├── 30512-87.vb │ │ ├── 30512-88.vb │ │ ├── 30512-89.vb │ │ ├── 30512-9.vb │ │ ├── 30512-90.vb │ │ ├── 30512-91.vb │ │ ├── 30512-92.vb │ │ ├── 30512-93.vb │ │ ├── 30512-94.vb │ │ ├── 30512-95.vb │ │ ├── 30512-96.vb │ │ ├── 30512-97.vb │ │ ├── 30512-98.vb │ │ ├── 30512-99.vb │ │ ├── 30512.vb │ │ ├── 30516-1.vb │ │ ├── 30516.vb │ │ ├── 30517.vb │ │ ├── 30518.vb │ │ ├── 30519-1.vb │ │ ├── 30519.vb │ │ ├── 30524.vb │ │ ├── 30530-1.vb │ │ ├── 30530-2.vb │ │ ├── 30530-3.vb │ │ ├── 30530-4.vb │ │ ├── 30530-5.vb │ │ ├── 30530.vb │ │ ├── 30532.vb │ │ ├── 30533.vb │ │ ├── 30562-1.vb │ │ ├── 30562.vb │ │ ├── 30574.vb │ │ ├── 30581.vb │ │ ├── 30587.vb │ │ ├── 30588.vb │ │ ├── 30590.vb │ │ ├── 30620.vb │ │ ├── 30623.vb │ │ ├── 30636.vb │ │ ├── 30640.vb │ │ ├── 30648.vb │ │ ├── 30650.vb │ │ ├── 30657.vb │ │ ├── 30691-1.vb │ │ ├── 30691.vb │ │ ├── 30737-1.vb │ │ ├── 30737.vb │ │ ├── 30983-1.vb │ │ ├── 30983-2.vb │ │ ├── 30983-3.vb │ │ ├── 30983.vb │ │ ├── 31019.vb │ │ ├── 31087.vb │ │ ├── 31094.vb │ │ ├── 31509.resources │ │ ├── 31509.response │ │ ├── 31509.vb │ │ ├── 32006-1.vb │ │ ├── 32006-2.vb │ │ ├── 32006-3.vb │ │ ├── 32006-4.vb │ │ ├── 32006-5.vb │ │ ├── 32006-6.vb │ │ ├── 32006-7.vb │ │ ├── 32006.vb │ │ ├── 32007-1.vb │ │ ├── 32007-2.vb │ │ ├── 32007-3.vb │ │ ├── 32007-4.vb │ │ ├── 32007-5.vb │ │ ├── 32007-6.vb │ │ ├── 32007.vb │ │ ├── 32008-2.vb │ │ ├── 32008.vb │ │ ├── 32021.vb │ │ ├── 32022.vb │ │ ├── 32035-1.vb │ │ ├── 32035.vb │ │ ├── 32042.vb │ │ ├── 32044-1.vb │ │ ├── 32044.vb │ │ ├── 32046.vb │ │ ├── 32050-1.vb │ │ ├── 32050.vb │ │ ├── 32083-1.vb │ │ ├── 32083-2.vb │ │ ├── 32083-3.vb │ │ ├── 32083-4.vb │ │ ├── 32083-5.vb │ │ ├── 32083-6.vb │ │ ├── 32083-7.vb │ │ ├── 32083-8.vb │ │ ├── 32083.vb │ │ ├── 32084.vb │ │ ├── 32085.vb │ │ ├── 32098SimpleNameExpressionAsTypeParameter1.vb │ │ ├── 32101.vb │ │ ├── 32102.vb │ │ ├── 32103.vb │ │ ├── 32104.vb │ │ ├── 32105-1.vb │ │ ├── 32105-2.vb │ │ ├── 32105.vb │ │ ├── 32106-1.vb │ │ ├── 32106-2.vb │ │ ├── 32106-3.vb │ │ ├── 32106-4.vb │ │ ├── 32106.vb │ │ ├── 32304-DefaultProperty4.vb │ │ ├── 33101-1.vb │ │ ├── 33101-2.vb │ │ ├── 33101.vb │ │ ├── 33104-1.vb │ │ ├── 33104-2.vb │ │ ├── 33104.vb │ │ ├── 33106.vb │ │ ├── 33107-1.vb │ │ ├── 33107.vb │ │ ├── 33110-1.vb │ │ ├── 33110.vb │ │ ├── 36651.vb │ │ ├── 36657-1.vb │ │ ├── 36657.vb │ │ ├── 36758.vb │ │ ├── 42020.vb │ │ ├── 42021.vb │ │ ├── 42024-1.vb │ │ ├── 42024.vb │ │ ├── Classonnewline.vb │ │ ├── Dimonnewline.vb │ │ ├── Empty.vb │ │ ├── EnumErrors.vb │ │ ├── EnumErrors2.vb │ │ ├── FunctionDec.vb │ │ ├── ImportTypeErrors.vb │ │ ├── ImportTypeErrors2.vb │ │ ├── Sub.vb │ │ └── error.vb │ ├── External │ │ ├── PrivateScope1.bat │ │ ├── PrivateScope1.response │ │ ├── PrivateScope1.sh │ │ ├── PrivateScope1.vb │ │ └── ReadMe.txt │ ├── Generated │ │ ├── Constants.rsp │ │ ├── Constants.vb │ │ ├── Conversions.vb │ │ ├── Operators.vb │ │ ├── Readme.txt │ │ ├── ZCompilerCodeGenerator.rsp │ │ └── ZCompilerCodeGenerator.vb │ ├── LateBinding │ │ ├── LateBinding.response │ │ └── LateBinding.vb │ ├── Makefile │ ├── Mono │ │ ├── Accessibility.vb │ │ ├── AccessibilityA.vb │ │ ├── AccessibilityB.vb │ │ ├── AccessibilityC.vb │ │ ├── Arguments_ByReferenceA.vb │ │ ├── Arguments_ByReferenceB.vb │ │ ├── Arguments_ByReferenceC.vb │ │ ├── Arguments_ByReferenceD.vb │ │ ├── Arguments_ByValueA.vb │ │ ├── Arguments_ByValueB.vb │ │ ├── Arguments_ByValueC.vb │ │ ├── Arguments_ByValueD.vb │ │ ├── ArithmeticOperators.vb │ │ ├── ArithmeticOperatorsA.vb │ │ ├── ArrayA.vb │ │ ├── ArrayB.vb │ │ ├── ArrayC.vb │ │ ├── ArrayD.vb │ │ ├── ArrayE.vb │ │ ├── ArrayF.vb │ │ ├── ArrayG.vb │ │ ├── ArrayH.vb │ │ ├── AssignmentOperators.vb │ │ ├── AssignmentStatementsA.vb │ │ ├── AssignmentStatementsB.vb │ │ ├── AssignmentStatementsC.vb │ │ ├── AssignmentStatementsD.vb │ │ ├── AssignmentStatementsE.vb │ │ ├── AssignmentStatementsF.vb │ │ ├── AssignmentStatementsG.vb │ │ ├── AssignmentStatementsH.vb │ │ ├── AssignmentStatementsI.vb │ │ ├── AssignmentStatementsJ.vb │ │ ├── AttributeAssemblyCompany.vb │ │ ├── AttributeAssemblyCopyRight.vb │ │ ├── AttributeAssemblyDescription.vb │ │ ├── AttributeAssemblyFlagA.vb │ │ ├── AttributeAssemblyName.vb │ │ ├── AttributeAssemblyTitle.vb │ │ ├── AttributeAssemblyVersion.vb │ │ ├── AttributeAssemblyVersionBuild.vb │ │ ├── AttributeAssemblyVersionMajor.vb │ │ ├── AttributeAssemblyVersionMinor.vb │ │ ├── AttributeAssemblyVersionRevision.vb │ │ ├── AttributeCLSCompliant.vb │ │ ├── Attributes.vb │ │ ├── AttributesA.vb │ │ ├── AttributesAssemblyCulture.vb │ │ ├── AttributesAssemblyMultiple.vb │ │ ├── AttributesB.vb │ │ ├── AttributesC.vb │ │ ├── AttributesClassA.vb │ │ ├── AttributesClassB.vb │ │ ├── AttributesClassBothSuffixA.vb │ │ ├── AttributesClassC.vb │ │ ├── AttributesClassNoparameterA.vb │ │ ├── AttributesClassUseA.vb │ │ ├── AttributesClassUseB.vb │ │ ├── AttributesClassUseC.vb │ │ ├── AttributesClassUseD.vb │ │ ├── AttributesNewA.vb │ │ ├── AttributesNewB.vb │ │ ├── BlockStatementsA.vb │ │ ├── BoolLiteralA.vb │ │ ├── BoolLiteralTest.vb │ │ ├── CharacterLiterals.vb │ │ ├── ClassTest.vb │ │ ├── ConcatenationOperator.vb │ │ ├── ConditionalCompilation.vb │ │ ├── ConditionalCompilationA.vb │ │ ├── ConditionalCompilationB.vb │ │ ├── ConditionalCompilationC.vb │ │ ├── ConditionalCompilationD.vb │ │ ├── ConditionalCompilationE.vb │ │ ├── ConditionalConstantsA.vb │ │ ├── ConditionalStatementsA.vb │ │ ├── ConditionalStatementsB.vb │ │ ├── ConditionalStatementsC.vb │ │ ├── ConditionalStatementsD.vb │ │ ├── ConditionalStatementsE.vb │ │ ├── ConditionalStatementsF.vb │ │ ├── ConditionalStatementsG.vb │ │ ├── ConditionalStatementsH.vb │ │ ├── ConditionalStatementsI.vb │ │ ├── ConditionalStatementsJ.vb │ │ ├── ConstantA.vb │ │ ├── ConstantB.vb │ │ ├── ConstantC.vb │ │ ├── ConstructorA.vb │ │ ├── ConstructorB.vb │ │ ├── ConstructorC.vb │ │ ├── ConstructorD.vb │ │ ├── ConstructorE.vb │ │ ├── ConstructorF.vb │ │ ├── ConstructorG.vb │ │ ├── ConstructorH.vb │ │ ├── ConstructorI.vb │ │ ├── ConstructorJ.vb │ │ ├── ControlFlowA.vb │ │ ├── ConversionWithAndOperatorA.vb │ │ ├── ConversionWithAndOperatorB.vb │ │ ├── ConversionWithAndOperatorBool.vb │ │ ├── ConversionWithAndOperatorC.vb │ │ ├── ConversionWithAndOperatorD.vb │ │ ├── ConversionWithAndOperatorE.vb │ │ ├── ConversionWithAndOperatorNumA.vb │ │ ├── ConversionWithAndOperatorNumB.vb │ │ ├── ConversionWithAndOperatorNumC.vb │ │ ├── ConversionWithAndOperatorNumD.vb │ │ ├── ConversionWithAndOperatorNumE.vb │ │ ├── ConversionWithEqualOperatorB.vb │ │ ├── ConversionWithEqualOperatorLnInt.vb │ │ ├── ConversionWithEqualOperatorsA.vb │ │ ├── ConversionWithGEOperatorA.vb │ │ ├── ConversionWithGEOperatorDateA.vb │ │ ├── ConversionWithGEoperatorB.vb │ │ ├── ConversionWithGTOperatorCharA.vb │ │ ├── ConversionWithGTOperatorString.vb │ │ ├── ConversionWithGTOperatorTrueFalse.vb │ │ ├── ConversionWithGTOperatorsA.vb │ │ ├── ConversionWithLEOperatorA.vb │ │ ├── ConversionWithLTOperatorsA.vb │ │ ├── ConversionWithNEqlOperator.vb │ │ ├── ConversionWithNotOperatorBoolA.vb │ │ ├── ConversionWithNotOperatorFalseA.vb │ │ ├── ConversionWithNotOperatorTrueA.vb │ │ ├── ConversionWithOrOperatorA.vb │ │ ├── ConversionWithOrOperatorB.vb │ │ ├── ConversionWithOrOperatorBoolA.vb │ │ ├── ConversionWithOrOperatorBoolB.vb │ │ ├── ConversionWithOrOperatorBoolC.vb │ │ ├── ConversionWithOrOperatorBoolD.vb │ │ ├── ConversionWithOrOperatorC.vb │ │ ├── ConversionWithOrOperatorNumA.vb │ │ ├── ConversionWithOrOperatorNumB.vb │ │ ├── ConversionWithOrOperatorNumC.vb │ │ ├── ConversionWithOrOperatorNumD.vb │ │ ├── ConversionWithOrOperatorNumE.vb │ │ ├── ConversionWithShiftOperatorA.vb │ │ ├── ConversionWithShiftOperatorB.vb │ │ ├── ConversionWithShiftOperatorC.vb │ │ ├── ConversionWithShiftOperatorD.vb │ │ ├── ConversionWithShiftOperatorE.vb │ │ ├── ConversionWithShiftOperatorF.vb │ │ ├── ConversionWithShiftOperatorG.vb │ │ ├── ConversionWithShiftOperatorH.vb │ │ ├── ConversionWithShiftOperatorI.vb │ │ ├── ConversionWithShiftOperatorJ.vb │ │ ├── ConversionWithShiftOperatorK.vb │ │ ├── ConversionWithXorOperatorA.vb │ │ ├── ConversionWithXorOperatorB.vb │ │ ├── ConversionWithXorOperatorBoolA.vb │ │ ├── ConversionWithXorOperatorBoolB.vb │ │ ├── ConversionWithXorOperatorBoolC.vb │ │ ├── ConversionWithXorOperatorBoolD.vb │ │ ├── ConversionWithXorOperatorBoolE.vb │ │ ├── ConversionWithXorOperatorC.vb │ │ ├── ConversionWithXorOperatorNumA.vb │ │ ├── ConversionWithXorOperatorNumB.vb │ │ ├── ConversionWithXorOperatorNumC.vb │ │ ├── ConversionWithXorOperatorNumD.vb │ │ ├── ConversionsA.vb │ │ ├── DateLiterals.vb │ │ ├── DateLiteralsA.vb │ │ ├── DateLiteralsC12.vb │ │ ├── DecimalLiteral.vb │ │ ├── DecimalLiteralB.vb │ │ ├── DecimalLiteralTestA.vb │ │ ├── DecimalTypeCharTest.vb │ │ ├── DecimalTypeCharTestB.vb │ │ ├── DecimalTypeCharTestC2.vb │ │ ├── DefaultPropA.vb │ │ ├── DefaultPropB.vb │ │ ├── DefaultPropC.vb │ │ ├── DefaultPropD.vb │ │ ├── DefaultPropE.vb │ │ ├── DefaultPropF.vb │ │ ├── DefaultPropG.vb │ │ ├── DefaultPropH.vb │ │ ├── DelegateA.vb │ │ ├── DelegateD.vb │ │ ├── DelegateE.vb │ │ ├── DelegateF.vb │ │ ├── DelegateG.vb │ │ ├── Delegate_dll.response │ │ ├── Delegate_dll.vb │ │ ├── Delegate_exe.response │ │ ├── Delegate_exe.vb │ │ ├── DoubleLiteral.vb │ │ ├── DoubleLiteralA.vb │ │ ├── DoubleLiteralB.vb │ │ ├── DoubleTypeCharTest.vb │ │ ├── DoubleTypeCharTestB.vb │ │ ├── DoubleTypeCharTestC2.vb │ │ ├── EnumA.vb │ │ ├── EnumB.vb │ │ ├── EnumC1.vb │ │ ├── EnumConversionA.vb │ │ ├── EnumConversionB.vb │ │ ├── EnumD.vb │ │ ├── Error.vb │ │ ├── EventA.vb │ │ ├── EventB.vb │ │ ├── EventC.vb │ │ ├── EventD.vb │ │ ├── EventE.vb │ │ ├── EventF.vb │ │ ├── EventG.vb │ │ ├── EventJ.vb │ │ ├── EventK.vb │ │ ├── EventL.vb │ │ ├── EventM.vb │ │ ├── EventN.vb │ │ ├── Event_dll.response │ │ ├── Event_dll.vb │ │ ├── Event_exe.response │ │ ├── Event_exe.vb │ │ ├── ExceptionHandlingA.vb │ │ ├── ExceptionHandlingC.vb │ │ ├── ExceptionHandlingE.vb │ │ ├── ExceptionHandlingF.vb │ │ ├── ExceptionHandlingG.vb │ │ ├── ExitStatementA.vb │ │ ├── ExpConversionBoolToByteA1.vb │ │ ├── ExpConversionBoolToByteA2.vb │ │ ├── ExpConversionBoolToDecimalA1.vb │ │ ├── ExpConversionBoolToDecimalA2.vb │ │ ├── ExpConversionBoolToDoubleA1.vb │ │ ├── ExpConversionBoolToDoubleA2.vb │ │ ├── ExpConversionBoolToIntA1.vb │ │ ├── ExpConversionBoolToIntA2.vb │ │ ├── ExpConversionBoolToLongA1.vb │ │ ├── ExpConversionBoolToLongA2.vb │ │ ├── ExpConversionBoolToShortA1.vb │ │ ├── ExpConversionBoolToShortA2.vb │ │ ├── ExpConversionBoolToSingleA1.vb │ │ ├── ExpConversionBoolToSingleA2.vb │ │ ├── ExpConversionBooltoStringA.vb │ │ ├── ExpConversionBooltoStringB.vb │ │ ├── ExpConversionByteToBoolA1.vb │ │ ├── ExpConversionBytetoDecimalA.vb │ │ ├── ExpConversionBytetoDoubleA.vb │ │ ├── ExpConversionBytetoIntA.vb │ │ ├── ExpConversionBytetoLongA.vb │ │ ├── ExpConversionBytetoShortA.vb │ │ ├── ExpConversionBytetoSingleA.vb │ │ ├── ExpConversionBytetoStringA.vb │ │ ├── ExpConversionChartoStringA.vb │ │ ├── ExpConversionDatetoStringA.vb │ │ ├── ExpConversionDecimalToBoolA1.vb │ │ ├── ExpConversionDecimaltoByteA.vb │ │ ├── ExpConversionDecimaltoDoubleA.vb │ │ ├── ExpConversionDecimaltoIntA.vb │ │ ├── ExpConversionDecimaltoLongA.vb │ │ ├── ExpConversionDecimaltoShortA.vb │ │ ├── ExpConversionDecimaltoSingleA.vb │ │ ├── ExpConversionDecimaltoStringA.vb │ │ ├── ExpConversionDoubleToBoolA1.vb │ │ ├── ExpConversionDoubletoDecimalA.vb │ │ ├── ExpConversionDoubletoLongA.vb │ │ ├── ExpConversionDoubletoShortA.vb │ │ ├── ExpConversionDoubletoSingleA.vb │ │ ├── ExpConversionDoubletoSingleB.vb │ │ ├── ExpConversionDoubletoSingleC.vb │ │ ├── ExpConversionDoubletoSingleD.vb │ │ ├── ExpConversionDoubletoStringA.vb │ │ ├── ExpConversionIntToBoolA1.vb │ │ ├── ExpConversionInttoByteA.vb │ │ ├── ExpConversionInttoDecimalA.vb │ │ ├── ExpConversionInttoDoubleA.vb │ │ ├── ExpConversionInttoLongA.vb │ │ ├── ExpConversionInttoShortA.vb │ │ ├── ExpConversionInttoSingleA.vb │ │ ├── ExpConversionInttoStringA.vb │ │ ├── ExpConversionLongToBoolA1.vb │ │ ├── ExpConversionLongtoDoubleA.vb │ │ ├── ExpConversionLongtoIntA.vb │ │ ├── ExpConversionLongtoSingleA.vb │ │ ├── ExpConversionLongtoStringA.vb │ │ ├── ExpConversionShortToBoolA1.vb │ │ ├── ExpConversionShorttoByteA.vb │ │ ├── ExpConversionShorttoDecimalA.vb │ │ ├── ExpConversionShorttoDoubleA.vb │ │ ├── ExpConversionShorttoIntA.vb │ │ ├── ExpConversionShorttoLongA.vb │ │ ├── ExpConversionShorttoSingleA.vb │ │ ├── ExpConversionShorttoStringA.vb │ │ ├── ExpConversionSingleToBoolA1.vb │ │ ├── ExpConversionSingletoDecimalA.vb │ │ ├── ExpConversionSingletoDoubleA.vb │ │ ├── ExpConversionSingletoLongA.vb │ │ ├── ExpConversionSingletoShortA.vb │ │ ├── ExpConversionSingletoStringA.vb │ │ ├── ExpConversionStringtoBoolA.vb │ │ ├── ExpConversionStringtoBoolB.vb │ │ ├── ExpConversionStringtoByteA.vb │ │ ├── ExpConversionStringtoCharA.vb │ │ ├── ExpConversionStringtoDateA.vb │ │ ├── ExpConversionStringtoDecimalA.vb │ │ ├── ExpConversionStringtoDoubleA.vb │ │ ├── ExpConversionStringtoIntA.vb │ │ ├── ExpConversionStringtoLongA.vb │ │ ├── ExpConversionStringtoShortA.vb │ │ ├── ExpConversionStringtoSingleA.vb │ │ ├── ExplicitConversionEnumToIntA.vb │ │ ├── ExplicitConversionEnumToIntB.vb │ │ ├── ExplicitConversionEnumToIntC.vb │ │ ├── ExplicitOff.vb │ │ ├── ExpressionInstanceMeA.vb │ │ ├── ExpressionInstanceMyBaseA.vb │ │ ├── ExpressionInstanceMyClassA.vb │ │ ├── ExpressionLiteralCharA.vb │ │ ├── ExpressionLiteralCharB.vb │ │ ├── ExpressionLiteralNothingA.vb │ │ ├── ExpressionLiteralNothingB.vb │ │ ├── ExpressionLiteralNumericA.vb │ │ ├── ExpressionLiteralNumericB.vb │ │ ├── ExpressionLiteralNumericC.vb │ │ ├── ExpressionLiteralNumericD.vb │ │ ├── ExpressionLiteralNumericE.vb │ │ ├── ExpressionLiteralNumericF.vb │ │ ├── ExpressionLiteralNumericG.vb │ │ ├── ExpressionLiteralStringA.vb │ │ ├── ExpressionLiteralStringB.vb │ │ ├── ExpressionLiteralStringC.vb │ │ ├── ExpressionMemberAccess.vb │ │ ├── ExpressionMemberAccessDict.vb │ │ ├── ExpressionOverLoadMethodA.vb │ │ ├── ExpressionOverLoadMethodB.vb │ │ ├── ExpressionOverLoadMethodC.vb │ │ ├── ExpressionParenthesizedA.vb │ │ ├── ExpressionParenthesizedB.vb │ │ ├── ExpressionParenthesizedC.vb │ │ ├── ExpressionReclassificationA.vb │ │ ├── ExpressionReclassifiedB.vb │ │ ├── ExpressionReclassifiedC.vb │ │ ├── ExpressionSimpleNameAddressOfA.vb │ │ ├── ExpressionSimpleNameGetTypeA.vb │ │ ├── ExpressionSimpleNameTypeOfA.vb │ │ ├── ExpressionSimpleWithA.vb │ │ ├── ExpressionSimpleWithB.vb │ │ ├── ExpressionSimpleWithC.vb │ │ ├── ExpressionStringA.vb │ │ ├── ExpressionStringB.vb │ │ ├── ExpressionsWithAndAlsoA.vb │ │ ├── ExpressionsWithAndAlsoB.vb │ │ ├── ExpressionsWithAndAlsoC.vb │ │ ├── ExpressionsWithOrElseA.vb │ │ ├── ExpressionsWithOrElseB.vb │ │ ├── ExpressionsWithOrElseC.vb │ │ ├── ExternalSourceDirectives.vb │ │ ├── ForA.vb │ │ ├── ForB.vb │ │ ├── ForC.vb │ │ ├── ForD.vb │ │ ├── ForE.vb │ │ ├── ForEachA.vb │ │ ├── ForEachB.vb │ │ ├── ForEachC.vb │ │ ├── ForF.vb │ │ ├── ForG.vb │ │ ├── ForH.vb │ │ ├── ForI.vb │ │ ├── ForJ.vb │ │ ├── FunctionArgu_ByReferenceA.vb │ │ ├── FunctionArgu_ByReferenceB.vb │ │ ├── FunctionArgu_ByReferenceC.vb │ │ ├── FunctionArgu_ByReferenceD.vb │ │ ├── FunctionArgu_ByValueA.vb │ │ ├── FunctionArgu_ByValueB.vb │ │ ├── FunctionArgu_ByValueC.vb │ │ ├── FunctionArgu_ByValueD.vb │ │ ├── Function_ParamArrayA.vb │ │ ├── Function_ParamArrayB.vb │ │ ├── Function_ParamArrayC.vb │ │ ├── GetType.vb │ │ ├── GotoStatementA.vb │ │ ├── GotoStatementB.vb │ │ ├── Identifier.vb │ │ ├── IdentifierFail1.vb │ │ ├── ImpConversionBoolToByteA1.vb │ │ ├── ImpConversionBoolToByteA2.vb │ │ ├── ImpConversionBoolToDecimalA1.vb │ │ ├── ImpConversionBoolToDecimalA2.vb │ │ ├── ImpConversionBoolToDoubleA1.vb │ │ ├── ImpConversionBoolToDoubleA2.vb │ │ ├── ImpConversionBoolToIntA1.vb │ │ ├── ImpConversionBoolToIntA2.vb │ │ ├── ImpConversionBoolToLongA1.vb │ │ ├── ImpConversionBoolToLongA2.vb │ │ ├── ImpConversionBoolToShortA1.vb │ │ ├── ImpConversionBoolToShortA2.vb │ │ ├── ImpConversionBoolToSingleA1.vb │ │ ├── ImpConversionBoolToSingleA2.vb │ │ ├── ImpConversionBooltoByteC.vb │ │ ├── ImpConversionBooltoDoubleC.vb │ │ ├── ImpConversionBooltoLongC.vb │ │ ├── ImpConversionBooltoStringA.vb │ │ ├── ImpConversionBooltoStringB.vb │ │ ├── ImpConversionBooltoStringC.vb │ │ ├── ImpConversionByteToBoolA1.vb │ │ ├── ImpConversionByteToBoolA2.vb │ │ ├── ImpConversionBytetoDecimalA.vb │ │ ├── ImpConversionBytetoDecimalB.vb │ │ ├── ImpConversionBytetoDoubleA.vb │ │ ├── ImpConversionBytetoIntA.vb │ │ ├── ImpConversionBytetoIntB.vb │ │ ├── ImpConversionBytetoLongA.vb │ │ ├── ImpConversionBytetoShortA.vb │ │ ├── ImpConversionBytetoSingleA.vb │ │ ├── ImpConversionBytetoStringA.vb │ │ ├── ImpConversionBytetoStringB.vb │ │ ├── ImpConversionChartoStringA.vb │ │ ├── ImpConversionChartoStringB.vb │ │ ├── ImpConversionChartoStringC.vb │ │ ├── ImpConversionDatetoStringA.vb │ │ ├── ImpConversionDatetoStringB.vb │ │ ├── ImpConversionDecimalToBoolA1.vb │ │ ├── ImpConversionDecimaltoBoolA2.vb │ │ ├── ImpConversionDecimaltoByteB.vb │ │ ├── ImpConversionDecimaltoDoubleA.vb │ │ ├── ImpConversionDecimaltoDoubleB.vb │ │ ├── ImpConversionDecimaltoLongA.vb │ │ ├── ImpConversionDecimaltoLongB.vb │ │ ├── ImpConversionDecimaltoShortA.vb │ │ ├── ImpConversionDecimaltoSingleA.vb │ │ ├── ImpConversionDecimaltoStringA.vb │ │ ├── ImpConversionDoubleToBoolA1.vb │ │ ├── ImpConversionDoubleToBoolA2.vb │ │ ├── ImpConversionDoubletoByteB.vb │ │ ├── ImpConversionDoubletoDecimalA.vb │ │ ├── ImpConversionDoubletoDecimalD.vb │ │ ├── ImpConversionDoubletoIntB.vb │ │ ├── ImpConversionDoubletoLongA.vb │ │ ├── ImpConversionDoubletoLongB.vb │ │ ├── ImpConversionDoubletoShortA.vb │ │ ├── ImpConversionDoubletoSingleA.vb │ │ ├── ImpConversionDoubletoSingleB.vb │ │ ├── ImpConversionDoubletoSingleC.vb │ │ ├── ImpConversionDoubletoSingleD.vb │ │ ├── ImpConversionDoubletoStringA.vb │ │ ├── ImpConversionDoubletoStringB.vb │ │ ├── ImpConversionEnumToIntA.vb │ │ ├── ImpConversionEnumToIntB.vb │ │ ├── ImpConversionIntToBoolA1.vb │ │ ├── ImpConversionIntToBoolA2.vb │ │ ├── ImpConversionInttoByteA.vb │ │ ├── ImpConversionInttoByteB.vb │ │ ├── ImpConversionInttoDecimalA.vb │ │ ├── ImpConversionInttoDoubleA.vb │ │ ├── ImpConversionInttoDoubleB.vb │ │ ├── ImpConversionInttoLongA.vb │ │ ├── ImpConversionInttoLongB.vb │ │ ├── ImpConversionInttoShortA.vb │ │ ├── ImpConversionInttoSingleA.vb │ │ ├── ImpConversionInttoStringA.vb │ │ ├── ImpConversionInttoStringB.vb │ │ ├── ImpConversionLongToBoolA1.vb │ │ ├── ImpConversionLongToBoolA2.vb │ │ ├── ImpConversionLongtoDoubleA.vb │ │ ├── ImpConversionLongtoDoubleB.vb │ │ ├── ImpConversionLongtoIntA.vb │ │ ├── ImpConversionLongtoIntB.vb │ │ ├── ImpConversionLongtoSingleA.vb │ │ ├── ImpConversionLongtoStringA.vb │ │ ├── ImpConversionLongtoStringB.vb │ │ ├── ImpConversionShortToBoolA1.vb │ │ ├── ImpConversionShortToBoolA2.vb │ │ ├── ImpConversionShorttoByteA.vb │ │ ├── ImpConversionShorttoDecimalA.vb │ │ ├── ImpConversionShorttoDecimalB.vb │ │ ├── ImpConversionShorttoDoubleA.vb │ │ ├── ImpConversionShorttoIntA.vb │ │ ├── ImpConversionShorttoIntB.vb │ │ ├── ImpConversionShorttoLongA.vb │ │ ├── ImpConversionShorttoSingleA.vb │ │ ├── ImpConversionShorttoStringA.vb │ │ ├── ImpConversionShorttoStringB.vb │ │ ├── ImpConversionSingleToBoolA1.vb │ │ ├── ImpConversionSingleToBoolA2.vb │ │ ├── ImpConversionSingletoByteB.vb │ │ ├── ImpConversionSingletoDecimalA.vb │ │ ├── ImpConversionSingletoDecimalD.vb │ │ ├── ImpConversionSingletoDoubleA.vb │ │ ├── ImpConversionSingletoDoubleB.vb │ │ ├── ImpConversionSingletoIntB.vb │ │ ├── ImpConversionSingletoLongA.vb │ │ ├── ImpConversionSingletoLongB.vb │ │ ├── ImpConversionSingletoShortA.vb │ │ ├── ImpConversionSingletoStringA.vb │ │ ├── ImpConversionSingletoStringB.vb │ │ ├── ImpConversionStringtoBoolA.vb │ │ ├── ImpConversionStringtoBoolB.vb │ │ ├── ImpConversionStringtoByteA.vb │ │ ├── ImpConversionStringtoByteD.vb │ │ ├── ImpConversionStringtoCharA.vb │ │ ├── ImpConversionStringtoCharB.vb │ │ ├── ImpConversionStringtoCharC.vb │ │ ├── ImpConversionStringtoDateA.vb │ │ ├── ImpConversionStringtoDecimalA.vb │ │ ├── ImpConversionStringtoDoubleA.vb │ │ ├── ImpConversionStringtoDoubleC.vb │ │ ├── ImpConversionStringtoIntA.vb │ │ ├── ImpConversionStringtoIntC.vb │ │ ├── ImpConversionStringtoLongA.vb │ │ ├── ImpConversionStringtoShortA.vb │ │ ├── ImpConversionStringtoSingleA.vb │ │ ├── ImpOverloadConversionDecimaltoByte.vb │ │ ├── ImpOverloadConversionDecimaltoDouble.vb │ │ ├── ImpOverloadConversionDecimaltoInt.vb │ │ ├── ImpOverloadConversionDecimaltoLong.vb │ │ ├── ImpOverloadConversionDecimaltoShort.vb │ │ ├── ImpOverloadConversionDecimaltoSingle.vb │ │ ├── ImpOverloadConversionDecimaltoString.vb │ │ ├── ImpOverloadConversionDecimaltogenericSingle.vb │ │ ├── ImpOverloadConversionInttogenericIntC1.vb │ │ ├── ImpOverloadConversionSingletoDouble.vb │ │ ├── ImpOverloadConversionSingletogenericSingle.vb │ │ ├── Inheritance.vb │ │ ├── InheritanceA.vb │ │ ├── InheritanceB.vb │ │ ├── InheritanceC.vb │ │ ├── InheritanceD.vb │ │ ├── InheritanceE.vb │ │ ├── InheritanceF.vb │ │ ├── InheritanceG.vb │ │ ├── InheritanceI.vb │ │ ├── InheritanceJ.vb │ │ ├── InheritanceK.vb │ │ ├── InheritanceL.vb │ │ ├── IntegerLiteral1Test.vb │ │ ├── IntegerLiteral2Test.vb │ │ ├── IntegerLiteralA.vb │ │ ├── IntegerLiteralB.vb │ │ ├── IntegerLiteralTest.vb │ │ ├── IntegerLiteralTestC4.vb │ │ ├── IntegerTypeCharTest.vb │ │ ├── IntegerTypeCharTestA.vb │ │ ├── IntegerTypeCharTestB.vb │ │ ├── IntegerTypeCharTestC2.vb │ │ ├── Interface.vb │ │ ├── InterfaceA.vb │ │ ├── InterfaceB.vb │ │ ├── InterfaceC.vb │ │ ├── InterfaceD.vb │ │ ├── InterfaceE.vb │ │ ├── InterfaceF.vb │ │ ├── InterfaceG.vb │ │ ├── InterfaceH.vb │ │ ├── InterfaceI.vb │ │ ├── InterfaceJ.vb │ │ ├── InterfaceK.vb │ │ ├── InterfaceL.vb │ │ ├── InterfaceM.vb │ │ ├── InterfaceN.vb │ │ ├── InterfaceO.vb │ │ ├── InterfaceP.vb │ │ ├── InterfaceQ.vb │ │ ├── InvocationStatementA.vb │ │ ├── LabelA.vb │ │ ├── LabelB.vb │ │ ├── LabelC.vb │ │ ├── LabelD.vb │ │ ├── LikeOperator.vb │ │ ├── LikeOperatorA.vb │ │ ├── LikeOperatorB.vb │ │ ├── LikeOperatorC.vb │ │ ├── LikeOperatorD.vb │ │ ├── LikeOperatorE.vb │ │ ├── LikeOperatorF.vb │ │ ├── LikeOperatorG.vb │ │ ├── LineContinuationC1.vb │ │ ├── LiteralNothing.vb │ │ ├── LocalDeclarationA.vb │ │ ├── LocalDeclarationB.vb │ │ ├── LocalDeclarationC.vb │ │ ├── LocalVariableC.vb │ │ ├── LocalVariableD.vb │ │ ├── LocalVariableE.vb │ │ ├── LocalVariableG.vb │ │ ├── LocalVariableH.vb │ │ ├── LocalVariableI.vb │ │ ├── LocalVariablesA.vb │ │ ├── LocalVariablesB.vb │ │ ├── LogicalOperators.vb │ │ ├── LogicalOperatorsA.vb │ │ ├── LongLiteralA.vb │ │ ├── LongLiteralB.vb │ │ ├── LongTypeCharTest.vb │ │ ├── LongTypeCharTestB.vb │ │ ├── LongTypeCharTestC2.vb │ │ ├── LoopStatementsA.vb │ │ ├── LoopStatementsB.vb │ │ ├── LoopStatementsC.vb │ │ ├── LoopStatementsD.vb │ │ ├── LoopStatementsE.vb │ │ ├── LoopStatementsF.vb │ │ ├── LoopStatementsG.vb │ │ ├── MethodDeclarationA.vb │ │ ├── MethodDeclarationB.vb │ │ ├── MethodDeclarationC.vb │ │ ├── MethodDeclarationD.vb │ │ ├── MethodDeclarationE.vb │ │ ├── MethodDeclarationF.vb │ │ ├── ModuleB.vb │ │ ├── ModuleTest.vb │ │ ├── MustInherit.vb │ │ ├── MustInheritA.vb │ │ ├── MustInheritB.vb │ │ ├── MustInheritC.vb │ │ ├── NameSpace.vb │ │ ├── NameSpaceC.vb │ │ ├── NameSpaceE.vb │ │ ├── NameSpaceF.vb │ │ ├── NameSpaceG.vb │ │ ├── NamedArgumentsA.vb │ │ ├── NamedArgumentsB.vb │ │ ├── NamedArgumentsC.vb │ │ ├── NamedArgumentsD.vb │ │ ├── NotInheritable.vb │ │ ├── NotInheritableA.vb │ │ ├── OptionalA.vb │ │ ├── OptionalArgFunctionA.vb │ │ ├── OptionalArgu_ByRefFuncA.vb │ │ ├── OptionalArgu_ByRefFuncB.vb │ │ ├── OptionalArgu_ByRefFuncC.vb │ │ ├── OptionalArgu_ByRefFuncD.vb │ │ ├── OptionalArgu_ByRefFuncE.vb │ │ ├── OptionalArgu_ByReferenceA.vb │ │ ├── OptionalArgu_ByReferenceB.vb │ │ ├── OptionalArgu_ByReferenceC.vb │ │ ├── OptionalArgu_ByReferenceD.vb │ │ ├── OptionalArgu_ByValFuncA.vb │ │ ├── OptionalArgu_ByValFuncB.vb │ │ ├── OptionalArgu_ByValFuncC.vb │ │ ├── OptionalArgu_ByValFuncD.vb │ │ ├── OptionalArgu_ByValFuncE.vb │ │ ├── OptionalArgu_ByValueA.vb │ │ ├── OptionalArgu_ByValueB.vb │ │ ├── OptionalArgu_ByValueC.vb │ │ ├── OptionalArgu_ByValueD.vb │ │ ├── OptionalArgu_ByValueE.vb │ │ ├── OptionalArgumentA.vb │ │ ├── OptionalParamaters.vb │ │ ├── OverloadResolutionA.vb │ │ ├── OverloadResolutionB.vb │ │ ├── OverloadResolutionC.vb │ │ ├── OverloadResolutionD.vb │ │ ├── OverloadResolutionE.vb │ │ ├── Overloading.vb │ │ ├── OverloadingA.vb │ │ ├── OverrideA.vb │ │ ├── OverrideB.vb │ │ ├── OverrideC.vb │ │ ├── OverrideD.vb │ │ ├── OverrideE.vb │ │ ├── OverrideF.vb │ │ ├── OverrideG.vb │ │ ├── Override_dll.response │ │ ├── Override_dll.vb │ │ ├── Override_exe.response │ │ ├── Override_exe.vb │ │ ├── ParamArrayA.vb │ │ ├── ParamArrayB.vb │ │ ├── ParamArrayC.vb │ │ ├── ParamArrayD.vb │ │ ├── ParamArrayE.vb │ │ ├── PropertyA.vb │ │ ├── PropertyAsFunctionArgA.vb │ │ ├── PropertyB.vb │ │ ├── PropertyC.vb │ │ ├── PropertyD.vb │ │ ├── PropertyE.vb │ │ ├── PropertyF.vb │ │ ├── PropertyG.vb │ │ ├── PropertyH.vb │ │ ├── PropertyI.vb │ │ ├── PropertyJ.vb │ │ ├── PropertyK.vb │ │ ├── PropertyL.vb │ │ ├── QualifiedNames.vb │ │ ├── RegionDirectives.vb │ │ ├── RegionDirectivesA.vb │ │ ├── RelationalOperators.vb │ │ ├── RelationalOperatorsA.vb │ │ ├── ReturnStatementA.vb │ │ ├── Scope.vb │ │ ├── ScopeA.vb │ │ ├── ScopeB.vb │ │ ├── ScopeC.vb │ │ ├── SelectCaseStatementA.vb │ │ ├── SelectCaseStatementB.vb │ │ ├── SelectCaseStatementC.vb │ │ ├── SelectCaseStatementD.vb │ │ ├── ShadowsA.vb │ │ ├── ShadowsC.vb │ │ ├── ShadowsC4.vb │ │ ├── ShadowsD.vb │ │ ├── ShadowsE.vb │ │ ├── ShadowsF.vb │ │ ├── ShiftOperators.vb │ │ ├── ShiftOperatorsA.vb │ │ ├── SingleLiteral.vb │ │ ├── SingleLiteralA.vb │ │ ├── SingleLiteralB.vb │ │ ├── SingleTypeCharTest.vb │ │ ├── SingleTypeCharTestA.vb │ │ ├── SingleTypeCharTestB.vb │ │ ├── SingleTypeCharTestC2.vb │ │ ├── StringLiteralTest.vb │ │ ├── StringLiterals.vb │ │ ├── StringLiteralsA.vb │ │ ├── StringTypeCharTest.vb │ │ ├── StringTypeCharTestA.vb │ │ ├── StringTypeCharTestB.vb │ │ ├── StringTypeCharTestC2.vb │ │ ├── StructureA.vb │ │ ├── StructureB.vb │ │ ├── SyncLockB.vb │ │ ├── TypeMembersA.vb │ │ ├── TypeMembersB.vb │ │ ├── TypeMembersC.vb │ │ ├── TypeMembersD.vb │ │ ├── TypeMembersE.vb │ │ ├── TypeMembersF.vb │ │ ├── TypeMembersG.vb │ │ ├── TypeMembersH.vb │ │ ├── TypeMembersI.vb │ │ ├── TypeMembersJ.vb │ │ ├── TypeMembersK.vb │ │ ├── TypeMembersL.vb │ │ ├── TypeMembersM.vb │ │ ├── TypeMembersN.vb │ │ ├── TypeMembersO.vb │ │ ├── TypeMembersR.vb │ │ ├── TypeMembersS.vb │ │ ├── TypeMembersT.vb │ │ ├── TypeMembersU.vb │ │ ├── TypeMembersV.vb │ │ ├── TypeMembersW.vb │ │ ├── TypeMembersY.vb │ │ ├── TypeObjectA.vb │ │ ├── TypeOf.vb │ │ ├── TypeStructureA.vb │ │ ├── TypeValRefA.vb │ │ ├── TypeValRefArrayA.vb │ │ ├── TypeValRefB.vb │ │ ├── TypeValRefC.vb │ │ ├── TypeValRefStringA.vb │ │ ├── Variables.vb │ │ ├── VariablesA.vb │ │ ├── VariablesB.vb │ │ ├── VariablesC.vb │ │ ├── VariablesD.vb │ │ ├── VariablesE.vb │ │ ├── VariablesF.vb │ │ ├── VariablesG.vb │ │ ├── VariablesH.vb │ │ ├── VariablesI.vb │ │ ├── VariablesJ.vb │ │ ├── VariablesK.vb │ │ ├── VariablesL.vb │ │ ├── VariablesM.vb │ │ ├── WithStatementA.vb │ │ ├── WithStatementB.vb │ │ ├── WithStatementC.vb │ │ └── misc2.vb │ ├── My │ │ ├── Console.response │ │ ├── Console.vb │ │ ├── Custom.response │ │ ├── Custom.vb │ │ ├── DefaultInstances1.response │ │ ├── DefaultInstances1.vb │ │ ├── DefinedSymbols.response │ │ ├── DefinedSymbols.vb │ │ ├── Empty.response │ │ ├── Empty.vb │ │ ├── EmptyString.response │ │ ├── EmptyString.vb │ │ ├── My.Application1.vb │ │ ├── My.Forms1.response │ │ ├── My.Forms1.vb │ │ ├── NoConfigWithMy.vb │ │ ├── None.response │ │ ├── None.vb │ │ ├── Web.response │ │ ├── Web.vb │ │ ├── WebControl.response │ │ ├── WebControl.vb │ │ ├── Windows.response │ │ ├── Windows.vb │ │ ├── WindowsForms.response │ │ ├── WindowsForms.vb │ │ ├── WindowsFormsWithCustomSubMain.response │ │ ├── WindowsFormsWithCustomSubMain.vb │ │ ├── WindowsForms_exe.response │ │ ├── WindowsForms_exe.vb │ │ ├── WindowsForms_library.response │ │ ├── WindowsForms_library.vb │ │ ├── WindowsForms_module.response │ │ ├── WindowsForms_module.vb │ │ ├── WindowsForms_winexe.response │ │ ├── WindowsForms_winexe.vb │ │ ├── abcd.response │ │ ├── abcd.vb │ │ ├── bug-333403.rsp │ │ └── bug-333403.vb │ ├── NUnitTests │ │ ├── AddHandler.vb │ │ ├── ArrayCreation1.vb │ │ ├── ArrayIndexExpressions.vb │ │ ├── ArrayStore.vb │ │ ├── Assignment.vb │ │ ├── BinaryAdd.Generated.vb │ │ ├── BinaryAdd1.vb │ │ ├── BinaryAdd2.vb │ │ ├── ExplicitConversions.vb │ │ ├── FunctionCall.vb │ │ ├── Generated.vb │ │ ├── ImplicitConversions.vb │ │ ├── Main.vb │ │ ├── MethodCall1.vb │ │ ├── MethodCall2.vb │ │ ├── MethodCall3.vb │ │ ├── MethodCall4.vb │ │ ├── MethodOverload1.vb │ │ └── debug.rsp │ ├── NonCecilRelated │ │ ├── GenericNestedType2.vb │ │ └── GenericType3.vb │ ├── NotImplementedYet │ │ ├── AddressOfExpression1.vb │ │ ├── AddressOfExpression2.vb │ │ ├── CDateConstantExpression1.vb │ │ ├── CDecConstantExpression1.vb │ │ ├── Constructor1.vb │ │ ├── DecimalConstant1.vb │ │ ├── DelegateAsMethodParameter1.vb │ │ └── MethodOverload1.vb │ ├── Readme.txt │ ├── Resources │ │ ├── InvalidResources.resources │ │ ├── Resources1.resources │ │ ├── Resources1.response │ │ ├── Resources1.vb │ │ ├── Resources2.response │ │ ├── Resources2.resx │ │ ├── Resources2.vb │ │ ├── Resources3.binary │ │ ├── Resources3.response │ │ ├── Resources3.vb │ │ ├── Resources4.response │ │ ├── Resources4.resx │ │ ├── Resources4.vb │ │ ├── Resources5.resources │ │ ├── Resources5.response │ │ └── Resources5.vb │ ├── RunTime │ │ ├── AddOperator1.vb │ │ ├── AddOperator2.vb │ │ ├── Array1.vb │ │ ├── ArrayElements1.vb │ │ ├── ArrayElements2.vb │ │ ├── ArrayElements3.vb │ │ ├── ArrayElements4.vb │ │ ├── ArrayElements5.vb │ │ ├── ArrayElementsBoolean1.vb │ │ ├── ArrayElementsByte1.vb │ │ ├── ArrayElementsChar1.vb │ │ ├── ArrayElementsDate1.vb │ │ ├── ArrayElementsDecimal1.vb │ │ ├── ArrayElementsDouble1.vb │ │ ├── ArrayElementsInteger1.vb │ │ ├── ArrayElementsLong1.vb │ │ ├── ArrayElementsObject1.vb │ │ ├── ArrayElementsSByte1.vb │ │ ├── ArrayElementsShort1.vb │ │ ├── ArrayElementsSingle1.vb │ │ ├── ArrayElementsString1.vb │ │ ├── ArrayElementsUInteger1.vb │ │ ├── ArrayElementsULong1.vb │ │ ├── ArrayElementsUShort1.vb │ │ ├── ByRefBoolean1.vb │ │ ├── ByRefByte1.vb │ │ ├── ByRefCType1.vb │ │ ├── ByRefChar1.vb │ │ ├── ByRefDate1.vb │ │ ├── ByRefDecimal1.vb │ │ ├── ByRefDouble1.vb │ │ ├── ByRefInteger1.vb │ │ ├── ByRefLong1.vb │ │ ├── ByRefObject1.vb │ │ ├── ByRefSByte1.vb │ │ ├── ByRefShort1.vb │ │ ├── ByRefSingle1.vb │ │ ├── ByRefString1.vb │ │ ├── ByRefUInteger1.vb │ │ ├── ByRefULong1.vb │ │ ├── ByRefUShort1.vb │ │ ├── CType1.vb │ │ ├── CType2.vb │ │ ├── CType3.vb │ │ ├── CType4.vb │ │ ├── CType5.vb │ │ ├── CType6.vb │ │ ├── CType_Array1.vb │ │ ├── CType_Array2.vb │ │ ├── CType_Array3.vb │ │ ├── CType_Array4.vb │ │ ├── CType_Array5.vb │ │ ├── CType_Array6.vb │ │ ├── CType_Interface1.vb │ │ ├── CType_Interface2.vb │ │ ├── CType_Interface3.vb │ │ ├── CType_TypeParameter1.vb │ │ ├── CType_TypeParameter2.vb │ │ ├── CType_TypeParameter3.vb │ │ ├── CType_TypeParameter4.vb │ │ ├── CType_TypeParameter5.vb │ │ ├── CType_TypeParameter6.vb │ │ ├── CType_ValueType1.vb │ │ ├── End1.response │ │ ├── End1.vb │ │ ├── End2.vb │ │ ├── HelloWorld.vb │ │ ├── JaggedArrayElements1.vb │ │ ├── JaggedArrayElements2.vb │ │ ├── UserDefinedOperators1.vb │ │ └── ValueType1.vb │ ├── SelfTest │ │ ├── .gitignore │ │ ├── Readme.txt │ │ ├── SelfCompile.files.linux │ │ ├── SelfCompile.files.windows │ │ ├── SelfCompile.general.response │ │ ├── SelfCompileLinux.response │ │ ├── SelfCompileWindows.response │ │ ├── boot.bat │ │ ├── boot.sh │ │ ├── heap-buddy.sh │ │ ├── profile.mono.sh │ │ ├── profile.sh │ │ ├── rerun.bat │ │ ├── rerun.sh │ │ ├── updatesources.sh │ │ ├── vbnc.Errors.resources │ │ └── vbnc.vbnc.rsp │ ├── Unfixable │ │ ├── GenericNestedType1.vb │ │ ├── NestedInterfaceInheritance1.response │ │ ├── NestedInterfaceInheritance1.vb │ │ ├── NoVBRuntimeRef1.rsp │ │ └── NoVBRuntimeRef1.vb │ ├── VBRunTime │ │ ├── Microsoft.VisualBasic.files.linux │ │ ├── Microsoft.VisualBasic.files.windows │ │ ├── Microsoft.VisualBasic.linux.response │ │ ├── Microsoft.VisualBasic.linux.rsp │ │ ├── Microsoft.VisualBasic.response │ │ ├── Microsoft.VisualBasic.windows.response │ │ ├── Readme.txt │ │ ├── updatesources.bat │ │ └── updatesources.sh │ ├── clean.bat │ ├── testoutput │ │ └── 31019.dll │ └── tests.xml │ ├── vbnc.Errors.resources │ ├── vbnc.exe.rsp │ ├── vbnc.exe.sources │ └── vbnc.vbnc.rsp └── vbruntime ├── 2005VB.sln ├── 2005VB_test.sln ├── ChangeLog ├── Makefile ├── Microsoft.VisualBasic ├── .gitignore ├── 2010VB.sln ├── 2010VB.vbproj ├── AssemblyInfo.vb ├── ChangeLog ├── Helper.vb ├── Makefile ├── Microsoft.VisualBasic.ApplicationServices │ ├── ApplicationBase.vb │ ├── AssemblyInfo.vb │ ├── AuthenticationMode.vb │ ├── BuiltInRole.vb │ ├── BuiltInRoleConverter.vb │ ├── CantStartSingleInstanceException.vb │ ├── ChangeLog │ ├── ConsoleApplicationBase.vb │ ├── NoStartupFormException.vb │ ├── ShutdownEventHandler.vb │ ├── ShutdownMode.vb │ ├── StartupEventArgs.vb │ ├── StartupEventHandler.vb │ ├── StartupNextInstanceEventArgs.vb │ ├── StartupNextInstanceEventHandler.vb │ ├── UnhandledExceptionEventArgs.vb │ ├── UnhandledExceptionEventHandler.vb │ ├── User.vb │ ├── WebUser.vb │ ├── WindowsFormsApplicationBase.vb │ └── WindowsFormsApplicationContext.vb ├── Microsoft.VisualBasic.CompilerServices │ ├── BooleanType.vb │ ├── ByteType.vb │ ├── ChangeLog │ ├── CharArrayType.vb │ ├── CharType.vb │ ├── Conversions.vb │ ├── DateType.vb │ ├── DecimalType.vb │ ├── DesignerGeneratedAttribute.vb │ ├── DoubleType.vb │ ├── ExceptionUtils.vb │ ├── FlowControl.vb │ ├── HostServices.vb │ ├── IVbHost.vb │ ├── IncompleteInitialization.vb │ ├── IntegerType.vb │ ├── InternalErrorException.vb │ ├── LateBinder.vb │ ├── LateBinding.vb │ ├── LikeOperator.vb │ ├── LongType.vb │ ├── NewLateBinding.vb │ ├── ObjectFlowControl.vb │ ├── ObjectType.vb │ ├── Operators.vb │ ├── OptionCompareAttribute.vb │ ├── OptionTextAttribute.vb │ ├── ProjectData.vb │ ├── ShortType.vb │ ├── SingleType.vb │ ├── StandardModuleAttribute.vb │ ├── StaticLocalInitFlag.vb │ ├── StringType.vb │ ├── TypeCombinations.vb │ ├── Utils.vb │ ├── VBErrors.vb │ └── Versioned.vb ├── Microsoft.VisualBasic.Devices │ ├── Audio.jvm.vb │ ├── Audio.vb │ ├── ChangeLog │ ├── Clock.vb │ ├── Computer.jvm.vb │ ├── Computer.vb │ ├── ComputerInfo.jvm.vb │ ├── ComputerInfo.vb │ ├── Keyboard.jvm.vb │ ├── Keyboard.vb │ ├── Mouse.jvm.vb │ ├── Mouse.vb │ ├── MyProgressDialog.vb │ ├── MyWebClient.vb │ ├── Network.vb │ ├── NetworkAvailableEventArgs.vb │ ├── NetworkAvailableEventHandler.vb │ ├── Ports.jvm.vb │ ├── Ports.vb │ ├── ServerComputer.jvm.vb │ └── ServerComputer.vb ├── Microsoft.VisualBasic.FileIO │ ├── ChangeLog │ ├── DeleteDirectoryOption.vb │ ├── FieldType.vb │ ├── FileSystem.vb │ ├── FileSystemOperation.vb │ ├── FileSystemOperationUI.vb │ ├── FileSystemOperationUIQuestion.vb │ ├── MalformedLineException.vb │ ├── RecycleOption.vb │ ├── SearchOption.vb │ ├── SpecialDirectories.vb │ ├── TextFieldParser.vb │ ├── UICancelOption.vb │ └── UIOption.vb ├── Microsoft.VisualBasic.Logging │ ├── AspLog.vb │ ├── ChangeLog │ ├── DiskSpaceExhaustedOption.vb │ ├── FileLogTraceListener.vb │ ├── Log.vb │ ├── LogFileCreationScheduleOption.vb │ └── LogFileLocation.vb ├── Microsoft.VisualBasic.MyServices.Internal │ ├── ChangeLog │ └── ContextValue.vb ├── Microsoft.VisualBasic.MyServices │ ├── ChangeLog │ ├── ClipboardProxy.vb │ ├── FileSystemProxy.vb │ ├── RegistryProxy.jvm.vb │ ├── RegistryProxy.vb │ └── SpecialDirectoriesProxy.vb ├── Microsoft.VisualBasic.OSSpecific │ ├── ChangeLog │ ├── LinuxDriver.vb │ ├── OSDriver.vb │ └── Win32Driver.vb ├── Microsoft.VisualBasic.dll.monodroid.sources ├── Microsoft.VisualBasic.dll.monotouch.sources ├── Microsoft.VisualBasic.dll.moonlight.sources ├── Microsoft.VisualBasic.dll.sources ├── Microsoft.VisualBasic.dll.sources.win ├── Microsoft.VisualBasic │ ├── AppWinStyle.vb │ ├── ArrayList.vb │ ├── AudioPlayMode.vb │ ├── CallType.vb │ ├── ChangeLog │ ├── Collection.vb │ ├── ComClassAttribute.vb │ ├── CompareMethod.vb │ ├── Constants.vb │ ├── ControlChars.vb │ ├── Conversion.vb │ ├── DateAndTime.vb │ ├── DateFormat.vb │ ├── DateInterval.vb │ ├── DueDate.vb │ ├── ErrObject.vb │ ├── FileAttribute.vb │ ├── FileData.vb │ ├── FileSystem.vb │ ├── Financial.vb │ ├── FirstDayOfWeek.vb │ ├── FirstWeekOfYear.vb │ ├── Globals.vb │ ├── Hashtable.vb │ ├── HideModuleNameAttribute.vb │ ├── Information.vb │ ├── Interaction.vb │ ├── MsgBoxResult.vb │ ├── MsgBoxStyle.vb │ ├── MyGroupCollectionAttribute.vb │ ├── OpenAccess.vb │ ├── OpenMode.vb │ ├── OpenShare.vb │ ├── SpcInfo.vb │ ├── Strings.vb │ ├── TabInfo.vb │ ├── TriState.vb │ ├── VBFixedArrayAttribute.vb │ ├── VBFixedStringAttribute.vb │ ├── VBMath.vb │ ├── VariantType.vb │ └── VbStrConv.vb ├── MonoTODOAttribute.vb ├── makefile.build ├── mono.snk ├── msfinal.pub ├── strings-only2.txt ├── strings.resources ├── strings.txt ├── strings2.resources ├── vbruntime-monodroid.rsp ├── vbruntime-monotouch.rsp ├── vbruntime-moonlight.rsp ├── vbruntime-net_2_0.rsp ├── vbruntime-net_4_0.rsp ├── vbruntime-net_4_5.rsp └── winfx3.pub ├── TODO.txt ├── Test ├── 2010VB_MS.sln ├── 2010VB_Mono.sln ├── 2010VB_test_CS.csproj ├── 2010VB_test_CS.dll.rsp ├── 2010VB_test_CS.dll.sources ├── 2010VB_test_CS.dll.sources.win ├── 2010VB_test_MS_CS.csproj ├── 2010VB_test_MS_VB.vbproj ├── 2010VB_test_VB.dll.rsp ├── 2010VB_test_VB.dll.sources ├── 2010VB_test_VB.dll.sources.win ├── 2010VB_test_VB.vbproj ├── 2010VB_tester.vbproj ├── 2010VB_tester_MS.vbproj ├── ChangeLog ├── Makefile ├── Microsoft.VisualBasic.CompilerServices │ ├── BooleanTypeTest.cs │ ├── BooleanTypeTest.vb │ ├── ByteTypeTest.vb │ ├── ChangeLog │ ├── ConversionsTests.vb │ ├── DateTypeTest.vb │ ├── DecimalTypeTest.cs │ ├── DecimalTypeTest.vb │ ├── DoubleTypeTest.cs │ ├── DoubleTypeTest.vb │ ├── IntegerTypeTest.cs │ ├── IntegerTypeTest.vb │ ├── LateBindingTests.vb │ ├── LateBindingTests2.vb │ ├── LateBindingTests3.vb │ ├── LateBindingTests4.vb │ ├── LateBindingTests5.vb │ ├── LateBindingTests6.vb │ ├── LongTypeTest.cs │ ├── LongTypeTest.vb │ ├── ObjectTypeTests.vb │ ├── OperatorsTests.vb │ ├── ShortTypeTest.cs │ ├── ShortTypeTest.vb │ ├── SingleTypeTest.cs │ ├── SingleTypeTest.vb │ ├── StringTypeTest.cs │ └── UtilsTest.cs ├── Microsoft.VisualBasic.Devices │ ├── AudioTests.vb │ ├── ChangeLog │ ├── ClockTests.vb │ ├── ComputerInfoTests.vb │ ├── ComputerTests.vb │ ├── KeyboardTests.vb │ ├── MouseTests.vb │ ├── NetworkAvailableEventArgsTests.vb │ ├── NetworkTests.vb │ ├── PortsTests.vb │ └── ServerComputerTests.vb ├── Microsoft.VisualBasic.FileIO │ ├── ChangeLog │ ├── FileSystemTest.vb │ ├── MalformedLineExceptionTest.cs │ ├── SpecialDirectoriesTest.cs │ └── TextFieldParserTest.cs ├── Microsoft.VisualBasic.Logging │ ├── AspLogTest.cs │ ├── ChangeLog │ ├── FileLogTraceListener.cs │ └── LogTest.cs ├── Microsoft.VisualBasic.MyServices.Internal │ ├── ChangeLog │ └── ContextValueTest.cs ├── Microsoft.VisualBasic.MyServices │ ├── ChangeLog │ ├── ClipboardProxyTest.cs │ ├── FileSystemProxyTest.cs │ ├── RegistryProxyTest.cs │ └── SpecialDirectoriesProxyTest.cs ├── Microsoft.VisualBasic │ ├── ChangeLog │ ├── CollectionTests.cs │ ├── ConversionTests.cs │ ├── DateAndTimeTests.cs │ ├── ErrObjectTests.cs │ ├── ErrObjectTests.vb │ ├── ExceptionFilteringTests.vb │ ├── FileSystemTestGenerated.vb │ ├── FileSystemTestGenerator.vb │ ├── FileSystemTests.vb │ ├── FileSystemTests2.vb │ ├── FinancialTests.cs │ ├── GlobalsTests.vb │ ├── Helper.cs │ ├── Helper.vb │ ├── InformationTests.cs │ ├── InformationTests.vb │ ├── InteractionTests.vb │ ├── StringsTest.cs │ ├── StringsTest.vb │ ├── VBFixedArrayAttributeTest.vb │ ├── VBFixedStringAttributeTest.vb │ └── VBMathTests.cs ├── OldTests │ ├── build_one_test.J2EE.bat │ ├── mbas.tests.J2EE.build_and_run.bat │ ├── mbas.tests.build.bat │ ├── mbas.tests.run.bat │ ├── mbas │ │ ├── Test │ │ │ ├── ChangeLog │ │ │ ├── Makefile │ │ │ ├── README.tests │ │ │ ├── dlls │ │ │ │ ├── .cvsignore │ │ │ │ ├── Delegate_dll.vb │ │ │ │ ├── Dll1.vb │ │ │ │ ├── Event_dll.vb │ │ │ │ ├── Makefile │ │ │ │ ├── OptionalArgu_dll.vb │ │ │ │ └── Override_dll.vb │ │ │ ├── errors │ │ │ │ ├── .cvsignore │ │ │ │ ├── AccessibilityC10.vb │ │ │ │ ├── AccessibilityC11.vb │ │ │ │ ├── AccessibilityC12.vb │ │ │ │ ├── AccessibilityC13.vb │ │ │ │ ├── AccessibilityC14.vb │ │ │ │ ├── AccessibilityC15.vb │ │ │ │ ├── AccessibilityC16.vb │ │ │ │ ├── AccessibilityC17.vb │ │ │ │ ├── AccessibilityC18.vb │ │ │ │ ├── AccessibilityC19.vb │ │ │ │ ├── AccessibilityC2.vb │ │ │ │ ├── AccessibilityC20.vb │ │ │ │ ├── AccessibilityC21.vb │ │ │ │ ├── AccessibilityC22.vb │ │ │ │ ├── AccessibilityC3.vb │ │ │ │ ├── AccessibilityC4.vb │ │ │ │ ├── AccessibilityC5.vb │ │ │ │ ├── AccessibilityC6.vb │ │ │ │ ├── AccessibilityC7.vb │ │ │ │ ├── AccessibilityC8.vb │ │ │ │ ├── AccessibilityC9.vb │ │ │ │ ├── ArithmeticOperatorsC1.vb │ │ │ │ ├── ArithmeticOperatorsC2.vb │ │ │ │ ├── ArithmeticOperatorsC3.vb │ │ │ │ ├── ArithmeticOperatorsC4.vb │ │ │ │ ├── ArrayB.vb │ │ │ │ ├── ArrayC1.vb │ │ │ │ ├── ArrayC10.vb │ │ │ │ ├── ArrayC11.vb │ │ │ │ ├── ArrayC2.vb │ │ │ │ ├── ArrayC3.vb │ │ │ │ ├── ArrayC4.vb │ │ │ │ ├── ArrayC5.vb │ │ │ │ ├── ArrayC6.vb │ │ │ │ ├── ArrayC7.vb │ │ │ │ ├── ArrayC8.vb │ │ │ │ ├── ArrayC9.vb │ │ │ │ ├── AssignmentStatementsC1.vb │ │ │ │ ├── AssignmentStatementsC10.vb │ │ │ │ ├── AssignmentStatementsC2.vb │ │ │ │ ├── AssignmentStatementsC3.vb │ │ │ │ ├── AssignmentStatementsC4.vb │ │ │ │ ├── AssignmentStatementsC5.vb │ │ │ │ ├── AssignmentStatementsC6.vb │ │ │ │ ├── AssignmentStatementsC7.vb │ │ │ │ ├── AssignmentStatementsC8.vb │ │ │ │ ├── AssignmentStatementsC9.vb │ │ │ │ ├── AttributeAssemblyCulture1.vb │ │ │ │ ├── AttributeAssemblyFlag1.vb │ │ │ │ ├── AttributesArguments1.vb │ │ │ │ ├── AttributesArguments2.vb │ │ │ │ ├── AttributesArguments3.vb │ │ │ │ ├── AttributesArguments4.vb │ │ │ │ ├── AttributesC1.vb │ │ │ │ ├── AttributesC2.vb │ │ │ │ ├── AttributesC3.vb │ │ │ │ ├── AttributesC4.vb │ │ │ │ ├── AttributesC5.vb │ │ │ │ ├── AttributesC6.vb │ │ │ │ ├── AttributesC7.vb │ │ │ │ ├── AttributesC8.vb │ │ │ │ ├── AttributesClassC1.vb │ │ │ │ ├── AttributesClassUseA1.vb │ │ │ │ ├── AttributesClassUseADate1.vb │ │ │ │ ├── AttributesClassUseADecimal1.vb │ │ │ │ ├── AttributesClassUseNoSingle1.vb │ │ │ │ ├── AttributesD.vb │ │ │ │ ├── AttributesMustInheritClassA1.vb │ │ │ │ ├── BlockStatementsC1.vb │ │ │ │ ├── BlockStatementsC2.vb │ │ │ │ ├── BlockStatementsC3.vb │ │ │ │ ├── BlockStatementsC4.vb │ │ │ │ ├── BlockStatementsC5.vb │ │ │ │ ├── ChangeLog │ │ │ │ ├── CharacterLiteralsC1.vb │ │ │ │ ├── CharacterLiteralsC2.vb │ │ │ │ ├── CharacterLiteralsC3.vb │ │ │ │ ├── CharacterLiteralsC4.vb │ │ │ │ ├── CharacterLiteralsC5.vb │ │ │ │ ├── CharacterLiteralsC6.vb │ │ │ │ ├── CharacterLiteralsC7.vb │ │ │ │ ├── ClassTestC1.vb │ │ │ │ ├── CommentC1.vb │ │ │ │ ├── ConcatenationOperatorC1.vb │ │ │ │ ├── ConcatenationOperatorC2.vb │ │ │ │ ├── ConditionalCompilationC1.vb │ │ │ │ ├── ConditionalCompilationC10.vb │ │ │ │ ├── ConditionalCompilationC2.vb │ │ │ │ ├── ConditionalCompilationC3.vb │ │ │ │ ├── ConditionalCompilationC4.vb │ │ │ │ ├── ConditionalCompilationC5.vb │ │ │ │ ├── ConditionalCompilationC6.vb │ │ │ │ ├── ConditionalCompilationC7.vb │ │ │ │ ├── ConditionalCompilationC8.vb │ │ │ │ ├── ConditionalCompilationC9.vb │ │ │ │ ├── ConditionalConstants.vb │ │ │ │ ├── ConditionalConstantsC1.vb │ │ │ │ ├── ConditionalStatementsC1.vb │ │ │ │ ├── ConditionalStatementsC10.vb │ │ │ │ ├── ConditionalStatementsC11.vb │ │ │ │ ├── ConditionalStatementsC12.vb │ │ │ │ ├── ConditionalStatementsC13.vb │ │ │ │ ├── ConditionalStatementsC14.vb │ │ │ │ ├── ConditionalStatementsC15.vb │ │ │ │ ├── ConditionalStatementsC2.vb │ │ │ │ ├── ConditionalStatementsC21.vb │ │ │ │ ├── ConditionalStatementsC22.vb │ │ │ │ ├── ConditionalStatementsC23.vb │ │ │ │ ├── ConditionalStatementsC24.vb │ │ │ │ ├── ConditionalStatementsC25.vb │ │ │ │ ├── ConditionalStatementsC26.vb │ │ │ │ ├── ConditionalStatementsC27.vb │ │ │ │ ├── ConditionalStatementsC3.vb │ │ │ │ ├── ConditionalStatementsC4.vb │ │ │ │ ├── ConditionalStatementsC5.vb │ │ │ │ ├── ConditionalStatementsC6.vb │ │ │ │ ├── ConditionalStatementsC7.vb │ │ │ │ ├── ConditionalStatementsC8.vb │ │ │ │ ├── ConditionalStatementsC9.vb │ │ │ │ ├── ConstantC0.vb │ │ │ │ ├── ConstantC1.vb │ │ │ │ ├── ConstantC10.vb │ │ │ │ ├── ConstantC2.vb │ │ │ │ ├── ConstantC3.vb │ │ │ │ ├── ConstantC4.vb │ │ │ │ ├── ConstantC5.vb │ │ │ │ ├── ConstantC6.vb │ │ │ │ ├── ConstantC7.vb │ │ │ │ ├── ConstantC8.vb │ │ │ │ ├── ConstantC9.vb │ │ │ │ ├── ConstantsC10.vb │ │ │ │ ├── ConstantsC11.vb │ │ │ │ ├── ConstantsC12.vb │ │ │ │ ├── ConstantsC13.vb │ │ │ │ ├── ConstantsC14.vb │ │ │ │ ├── ConstantsC15.vb │ │ │ │ ├── ConstituentTypesC1.vb │ │ │ │ ├── ConstructorC1.vb │ │ │ │ ├── ConstructorC10.vb │ │ │ │ ├── ConstructorC11.vb │ │ │ │ ├── ConstructorC12.vb │ │ │ │ ├── ConstructorC2.vb │ │ │ │ ├── ConstructorC4.vb │ │ │ │ ├── ConstructorC5.vb │ │ │ │ ├── ConstructorC6.vb │ │ │ │ ├── ConstructorC7.vb │ │ │ │ ├── ConstructorC8.vb │ │ │ │ ├── ConstructorC9.vb │ │ │ │ ├── ControlFlowC1.vb │ │ │ │ ├── DateLiteralsC1.vb │ │ │ │ ├── DateLiteralsC10.vb │ │ │ │ ├── DateLiteralsC11.vb │ │ │ │ ├── DateLiteralsC13.vb │ │ │ │ ├── DateLiteralsC2.vb │ │ │ │ ├── DateLiteralsC3.vb │ │ │ │ ├── DateLiteralsC4.vb │ │ │ │ ├── DateLiteralsC5.vb │ │ │ │ ├── DateLiteralsC6.vb │ │ │ │ ├── DateLiteralsC7.vb │ │ │ │ ├── DateLiteralsC8.vb │ │ │ │ ├── DateLiteralsC9.vb │ │ │ │ ├── DecimalLiteralC1.vb │ │ │ │ ├── DecimalTypeCharTestA.vb │ │ │ │ ├── DecimalTypeCharTestC1.vb │ │ │ │ ├── DecimalTypeCharTestC3.vb │ │ │ │ ├── DecimalTypeCharTestC4.vb │ │ │ │ ├── DefaultPropC1.vb │ │ │ │ ├── DefaultPropC2.vb │ │ │ │ ├── DefaultPropC3.vb │ │ │ │ ├── DefaultPropC4.vb │ │ │ │ ├── DefaultPropC5.vb │ │ │ │ ├── DefaultPropC6.vb │ │ │ │ ├── DefaultPropC7.vb │ │ │ │ ├── DelegateC1.vb │ │ │ │ ├── DelegateC2.vb │ │ │ │ ├── DelegateC3.vb │ │ │ │ ├── DelegateC4.vb │ │ │ │ ├── DelegateC5.vb │ │ │ │ ├── DelegateC6.vb │ │ │ │ ├── DelegateC7.vb │ │ │ │ ├── DoubleLiteralC1.vb │ │ │ │ ├── DoubleTypeCharTestA.vb │ │ │ │ ├── DoubleTypeCharTestC1.vb │ │ │ │ ├── DoubleTypeCharTestC3.vb │ │ │ │ ├── EnumC2.vb │ │ │ │ ├── EnumC3.vb │ │ │ │ ├── EnumC4.vb │ │ │ │ ├── EnumC5.vb │ │ │ │ ├── EnumC6.vb │ │ │ │ ├── EnumC7.vb │ │ │ │ ├── EventC10.vb │ │ │ │ ├── EventC11.vb │ │ │ │ ├── EventC12.vb │ │ │ │ ├── EventC13.vb │ │ │ │ ├── EventC14.vb │ │ │ │ ├── EventC3.vb │ │ │ │ ├── EventC4.vb │ │ │ │ ├── EventC5.vb │ │ │ │ ├── EventC6.vb │ │ │ │ ├── EventC7.vb │ │ │ │ ├── EventC8.vb │ │ │ │ ├── EventC9.vb │ │ │ │ ├── EventH.vb │ │ │ │ ├── EventI.vb │ │ │ │ ├── ExceptionHandlingC1.vb │ │ │ │ ├── ExceptionHandlingC10.vb │ │ │ │ ├── ExceptionHandlingC11.vb │ │ │ │ ├── ExceptionHandlingC12.vb │ │ │ │ ├── ExceptionHandlingC13.vb │ │ │ │ ├── ExceptionHandlingC14.vb │ │ │ │ ├── ExceptionHandlingC15.vb │ │ │ │ ├── ExceptionHandlingC16.vb │ │ │ │ ├── ExceptionHandlingC17.vb │ │ │ │ ├── ExceptionHandlingC18.vb │ │ │ │ ├── ExceptionHandlingC19.vb │ │ │ │ ├── ExceptionHandlingC2.vb │ │ │ │ ├── ExceptionHandlingC20.vb │ │ │ │ ├── ExceptionHandlingC21.vb │ │ │ │ ├── ExceptionHandlingC22.vb │ │ │ │ ├── ExceptionHandlingC23.vb │ │ │ │ ├── ExceptionHandlingC24.vb │ │ │ │ ├── ExceptionHandlingC25.vb │ │ │ │ ├── ExceptionHandlingC3.vb │ │ │ │ ├── ExceptionHandlingC4.vb │ │ │ │ ├── ExceptionHandlingC5.vb │ │ │ │ ├── ExceptionHandlingC6.vb │ │ │ │ ├── ExceptionHandlingC7.vb │ │ │ │ ├── ExceptionHandlingC8.vb │ │ │ │ ├── ExceptionHandlingC9.vb │ │ │ │ ├── ExitStatementC1.vb │ │ │ │ ├── ExitStatementC2.vb │ │ │ │ ├── ExplicitOn.vb │ │ │ │ ├── ExpressionLiteralNumeric1.vb │ │ │ │ ├── ExpressionLiteralString1.vb │ │ │ │ ├── ExpressionMyBase1.vb │ │ │ │ ├── ExpressionOverLoadMethodA.vb │ │ │ │ ├── ExpressionStringC.vb │ │ │ │ ├── ExternalSourceDirectivesC1.vb │ │ │ │ ├── ExternalSourceDirectivesC2.vb │ │ │ │ ├── ExternalSourceDirectivesC3.vb │ │ │ │ ├── ExternalSourceDirectivesC4.vb │ │ │ │ ├── FloatingPointLiteralsTest.vb │ │ │ │ ├── ForC1.vb │ │ │ │ ├── ForC10.vb │ │ │ │ ├── ForC11.vb │ │ │ │ ├── ForC12.vb │ │ │ │ ├── ForC2.vb │ │ │ │ ├── ForC3.vb │ │ │ │ ├── ForC4.vb │ │ │ │ ├── ForC5.vb │ │ │ │ ├── ForC6.vb │ │ │ │ ├── ForC7.vb │ │ │ │ ├── ForC8.vb │ │ │ │ ├── ForC9.vb │ │ │ │ ├── ForEachC1.vb │ │ │ │ ├── ForEachC2.vb │ │ │ │ ├── ForEachC3.vb │ │ │ │ ├── ForEachC4.vb │ │ │ │ ├── ForEachC5.vb │ │ │ │ ├── ForEachC6.vb │ │ │ │ ├── ForEachC7.vb │ │ │ │ ├── ForEachC8.vb │ │ │ │ ├── Function_ParamArrayC1.vb │ │ │ │ ├── Function_ParamArrayC2.vb │ │ │ │ ├── Function_ParamArrayC3.vb │ │ │ │ ├── Function_ParamArrayC4.vb │ │ │ │ ├── GotoStatementC1.vb │ │ │ │ ├── GotoStatementC2.vb │ │ │ │ ├── IdentifierFail2.vb │ │ │ │ ├── IdentifierFail3.vb │ │ │ │ ├── IdentifierFail4.vb │ │ │ │ ├── ImpOverloadConversionDecimaltogenericIntC1.vb │ │ │ │ ├── Import1.vb │ │ │ │ ├── InheritanceC1.vb │ │ │ │ ├── InheritanceC10.vb │ │ │ │ ├── InheritanceC2.vb │ │ │ │ ├── InheritanceC3.vb │ │ │ │ ├── InheritanceC4.vb │ │ │ │ ├── InheritanceC5.vb │ │ │ │ ├── InheritanceC6.vb │ │ │ │ ├── InheritanceC7.vb │ │ │ │ ├── InheritanceC8.vb │ │ │ │ ├── InheritanceC9.vb │ │ │ │ ├── IntegerLiteralC1.vb │ │ │ │ ├── IntegerLiteralTestC1.vb │ │ │ │ ├── IntegerLiteralTestC2.vb │ │ │ │ ├── IntegerLiteralTestC3.vb │ │ │ │ ├── IntegerTypeCharTestC1.vb │ │ │ │ ├── IntegerTypeCharTestC3.vb │ │ │ │ ├── IntegerTypeCharTestC4.vb │ │ │ │ ├── IntegerTypeCharTestC5.vb │ │ │ │ ├── IntegerTypeCharTestC6.vb │ │ │ │ ├── InterfaceC1.vb │ │ │ │ ├── InterfaceC10.vb │ │ │ │ ├── InterfaceC11.vb │ │ │ │ ├── InterfaceC12.vb │ │ │ │ ├── InterfaceC13.vb │ │ │ │ ├── InterfaceC14.vb │ │ │ │ ├── InterfaceC15.vb │ │ │ │ ├── InterfaceC16.vb │ │ │ │ ├── InterfaceC17.vb │ │ │ │ ├── InterfaceC18.vb │ │ │ │ ├── InterfaceC19.vb │ │ │ │ ├── InterfaceC2.vb │ │ │ │ ├── InterfaceC3.vb │ │ │ │ ├── InterfaceC4.vb │ │ │ │ ├── InterfaceC5.vb │ │ │ │ ├── InterfaceC6.vb │ │ │ │ ├── InterfaceC7.vb │ │ │ │ ├── InterfaceC8.vb │ │ │ │ ├── InterfaceC9.vb │ │ │ │ ├── InvocationStatementC1.vb │ │ │ │ ├── LateBindingC1.vb │ │ │ │ ├── LateBindingC2.vb │ │ │ │ ├── LikeOperatorC1.vb │ │ │ │ ├── LikeOperatorC2.vb │ │ │ │ ├── LikeOperatorC3.vb │ │ │ │ ├── LineContinuationC2.vb │ │ │ │ ├── LocalDeclarationC1.vb │ │ │ │ ├── LocalDeclarationC2.vb │ │ │ │ ├── LocalDeclarationC3.vb │ │ │ │ ├── LocalDeclarationC4.vb │ │ │ │ ├── LocalDeclarationC5.vb │ │ │ │ ├── LocalDeclarationD.vb │ │ │ │ ├── LocalVariableC10.vb │ │ │ │ ├── LocalVariableC11.vb │ │ │ │ ├── LocalVariableC12.vb │ │ │ │ ├── LocalVariableC4.vb │ │ │ │ ├── LocalVariableC5.vb │ │ │ │ ├── LocalVariableC6.vb │ │ │ │ ├── LocalVariableC7.vb │ │ │ │ ├── LocalVariableC8.vb │ │ │ │ ├── LocalVariableC9.vb │ │ │ │ ├── LocalVariablesC1.vb │ │ │ │ ├── LocalVariablesC2.vb │ │ │ │ ├── LocalVariablesC3.vb │ │ │ │ ├── LogicalOperatorsC1.vb │ │ │ │ ├── LogicalOperatorsC2.vb │ │ │ │ ├── LogicalOperatorsC3.vb │ │ │ │ ├── LogicalOperatorsC4.vb │ │ │ │ ├── LongLiteralC1.vb │ │ │ │ ├── LongTypeCharTestA.vb │ │ │ │ ├── LongTypeCharTestC1.vb │ │ │ │ ├── LongTypeCharTestC3.vb │ │ │ │ ├── LongTypeCharTestC4.vb │ │ │ │ ├── LoopStatementsC1.vb │ │ │ │ ├── LoopStatementsC10.vb │ │ │ │ ├── LoopStatementsC11.vb │ │ │ │ ├── LoopStatementsC12.vb │ │ │ │ ├── LoopStatementsC13.vb │ │ │ │ ├── LoopStatementsC2.vb │ │ │ │ ├── LoopStatementsC3.vb │ │ │ │ ├── LoopStatementsC4.vb │ │ │ │ ├── LoopStatementsC5.vb │ │ │ │ ├── LoopStatementsC6.vb │ │ │ │ ├── LoopStatementsC7.vb │ │ │ │ ├── LoopStatementsC8.vb │ │ │ │ ├── LoopStatementsC9.vb │ │ │ │ ├── Makefile │ │ │ │ ├── MethodDeclarationC1.vb │ │ │ │ ├── MethodDeclarationC10.vb │ │ │ │ ├── MethodDeclarationC11.vb │ │ │ │ ├── MethodDeclarationC12.vb │ │ │ │ ├── MethodDeclarationC13.vb │ │ │ │ ├── MethodDeclarationC14.vb │ │ │ │ ├── MethodDeclarationC15.vb │ │ │ │ ├── MethodDeclarationC16.vb │ │ │ │ ├── MethodDeclarationC17.vb │ │ │ │ ├── MethodDeclarationC18.vb │ │ │ │ ├── MethodDeclarationC19.vb │ │ │ │ ├── MethodDeclarationC2.vb │ │ │ │ ├── MethodDeclarationC20.vb │ │ │ │ ├── MethodDeclarationC21.vb │ │ │ │ ├── MethodDeclarationC22.vb │ │ │ │ ├── MethodDeclarationC23.vb │ │ │ │ ├── MethodDeclarationC24.vb │ │ │ │ ├── MethodDeclarationC3.vb │ │ │ │ ├── MethodDeclarationC4.vb │ │ │ │ ├── MethodDeclarationC5.vb │ │ │ │ ├── MethodDeclarationC6.vb │ │ │ │ ├── MethodDeclarationC7.vb │ │ │ │ ├── MethodDeclarationC8.vb │ │ │ │ ├── MethodDeclarationC9.vb │ │ │ │ ├── ModuleA.vb │ │ │ │ ├── ModuleTestC1.vb │ │ │ │ ├── ModuleTestC2.vb │ │ │ │ ├── ModuleTestC3.vb │ │ │ │ ├── ModuleTestC4.vb │ │ │ │ ├── ModuleTestC5.vb │ │ │ │ ├── ModuleTestC6.vb │ │ │ │ ├── ModuleTestC7.vb │ │ │ │ ├── MustInheritC1.vb │ │ │ │ ├── MustInheritC10.vb │ │ │ │ ├── MustInheritC2.vb │ │ │ │ ├── MustInheritC3.vb │ │ │ │ ├── MustInheritC4.vb │ │ │ │ ├── MustInheritC5.vb │ │ │ │ ├── MustInheritC6.vb │ │ │ │ ├── MustInheritC7.vb │ │ │ │ ├── MustInheritC8.vb │ │ │ │ ├── MustInheritC9.vb │ │ │ │ ├── NSA.vb │ │ │ │ ├── NSB.vb │ │ │ │ ├── NameSpaceA.vb │ │ │ │ ├── NameSpaceB.vb │ │ │ │ ├── NameSpaceC1.vb │ │ │ │ ├── NameSpaceC10.vb │ │ │ │ ├── NameSpaceC2.vb │ │ │ │ ├── NameSpaceC3.vb │ │ │ │ ├── NameSpaceC4.vb │ │ │ │ ├── NameSpaceC5.vb │ │ │ │ ├── NameSpaceC6.vb │ │ │ │ ├── NameSpaceC7.vb │ │ │ │ ├── NameSpaceC8.vb │ │ │ │ ├── NameSpaceC9.vb │ │ │ │ ├── NameSpaceD.vb │ │ │ │ ├── NameSpaceTestA.vb │ │ │ │ ├── NameSpaceTestB.vb │ │ │ │ ├── NotInheritableC1.vb │ │ │ │ ├── NotInheritableC2.vb │ │ │ │ ├── NotInheritableC3.vb │ │ │ │ ├── NotInheritableC4.vb │ │ │ │ ├── OptionalArgu_ByFunctionA2.vb │ │ │ │ ├── OptionalArgu_ByFunctionC1.vb │ │ │ │ ├── OptionalArgu_ByValueA2.vb │ │ │ │ ├── OptionalArgu_ByValueC1.vb │ │ │ │ ├── OptionalArgu_exe.vb │ │ │ │ ├── OptionalParamatersC1.vb │ │ │ │ ├── Optional_ParamArrayC1.vb │ │ │ │ ├── Optional_ParamArrayC2.vb │ │ │ │ ├── OverloadingC1.vb │ │ │ │ ├── OverloadingC2.vb │ │ │ │ ├── OverloadingC3.vb │ │ │ │ ├── OverloadingC4.vb │ │ │ │ ├── OverrideC1.vb │ │ │ │ ├── OverrideC10.vb │ │ │ │ ├── OverrideC11.vb │ │ │ │ ├── OverrideC12.vb │ │ │ │ ├── OverrideC13.vb │ │ │ │ ├── OverrideC14.vb │ │ │ │ ├── OverrideC15.vb │ │ │ │ ├── OverrideC16.vb │ │ │ │ ├── OverrideC17.vb │ │ │ │ ├── OverrideC2.vb │ │ │ │ ├── OverrideC3.vb │ │ │ │ ├── OverrideC4.vb │ │ │ │ ├── OverrideC5.vb │ │ │ │ ├── OverrideC6.vb │ │ │ │ ├── OverrideC7.vb │ │ │ │ ├── OverrideC8.vb │ │ │ │ ├── OverrideC9.vb │ │ │ │ ├── ParamArrayC2.vb │ │ │ │ ├── PreProcessorDirective.vb │ │ │ │ ├── PreProcessorDirectiveC1.vb │ │ │ │ ├── PropertyC1.vb │ │ │ │ ├── PropertyC10.vb │ │ │ │ ├── PropertyC11.vb │ │ │ │ ├── PropertyC12.vb │ │ │ │ ├── PropertyC13.vb │ │ │ │ ├── PropertyC14.vb │ │ │ │ ├── PropertyC15.vb │ │ │ │ ├── PropertyC16.vb │ │ │ │ ├── PropertyC17.vb │ │ │ │ ├── PropertyC18.vb │ │ │ │ ├── PropertyC19.vb │ │ │ │ ├── PropertyC2.vb │ │ │ │ ├── PropertyC20.vb │ │ │ │ ├── PropertyC21.vb │ │ │ │ ├── PropertyC22.vb │ │ │ │ ├── PropertyC23.vb │ │ │ │ ├── PropertyC24.vb │ │ │ │ ├── PropertyC3.vb │ │ │ │ ├── PropertyC4.vb │ │ │ │ ├── PropertyC5.vb │ │ │ │ ├── PropertyC6.vb │ │ │ │ ├── PropertyC7.vb │ │ │ │ ├── PropertyC8.vb │ │ │ │ ├── PropertyC9.vb │ │ │ │ ├── PropertyE.vb │ │ │ │ ├── RegionDirectivesC1.vb │ │ │ │ ├── RegionDirectivesC2.vb │ │ │ │ ├── RegionDirectivesC3.vb │ │ │ │ ├── RegionDirectivesC4.vb │ │ │ │ ├── RelationalOperatorsC1.vb │ │ │ │ ├── RelationalOperatorsC2.vb │ │ │ │ ├── ReturnStatementC1.vb │ │ │ │ ├── ReturnStatementC2.vb │ │ │ │ ├── ScopeC1.vb │ │ │ │ ├── ScopeC2.vb │ │ │ │ ├── ScopeC3.vb │ │ │ │ ├── ShadowsB.vb │ │ │ │ ├── ShadowsC1.vb │ │ │ │ ├── ShadowsC2.vb │ │ │ │ ├── ShadowsC3.vb │ │ │ │ ├── ShadowsC5.vb │ │ │ │ ├── ShadowsC6.vb │ │ │ │ ├── ShadowsC7.vb │ │ │ │ ├── ShadowsC8.vb │ │ │ │ ├── ShiftOperatorsC1.vb │ │ │ │ ├── ShiftOperatorsC2.vb │ │ │ │ ├── ShiftOperatorsC3.vb │ │ │ │ ├── ShiftOperatorsC4.vb │ │ │ │ ├── SingleLiteral1.vb │ │ │ │ ├── SingleTypeCharTestC1.vb │ │ │ │ ├── SingleTypeCharTestC3.vb │ │ │ │ ├── StringLiteralsC1.vb │ │ │ │ ├── StringLiteralsC2.vb │ │ │ │ ├── StringLiteralsC3.vb │ │ │ │ ├── StringTypeCharTestC1.vb │ │ │ │ ├── StringTypeCharTestC3.vb │ │ │ │ ├── StructureC1.vb │ │ │ │ ├── StructureC2.vb │ │ │ │ ├── StructureC3.vb │ │ │ │ ├── StructureC4.vb │ │ │ │ ├── StructureC5.vb │ │ │ │ ├── StructureC6.vb │ │ │ │ ├── SyncLockA.vb │ │ │ │ ├── SyncLockC1.vb │ │ │ │ ├── SyncLockC2.vb │ │ │ │ ├── SyncLockC3.vb │ │ │ │ ├── Test.vb │ │ │ │ ├── Test1.vb │ │ │ │ ├── TypeMembersC1.vb │ │ │ │ ├── TypeMembersC2.vb │ │ │ │ ├── TypeMembersC3.vb │ │ │ │ ├── TypeMembersC4.vb │ │ │ │ ├── TypeMembersC5.vb │ │ │ │ ├── TypeValRefVoidA1.vb │ │ │ │ ├── VariablesC1.vb │ │ │ │ ├── VariablesC10.vb │ │ │ │ ├── VariablesC11.vb │ │ │ │ ├── VariablesC12.vb │ │ │ │ ├── VariablesC13.vb │ │ │ │ ├── VariablesC14.vb │ │ │ │ ├── VariablesC15.vb │ │ │ │ ├── VariablesC16.vb │ │ │ │ ├── VariablesC17.vb │ │ │ │ ├── VariablesC18.vb │ │ │ │ ├── VariablesC19.vb │ │ │ │ ├── VariablesC2.vb │ │ │ │ ├── VariablesC20.vb │ │ │ │ ├── VariablesC21.vb │ │ │ │ ├── VariablesC22.vb │ │ │ │ ├── VariablesC23.vb │ │ │ │ ├── VariablesC3.vb │ │ │ │ ├── VariablesC4.vb │ │ │ │ ├── VariablesC5.vb │ │ │ │ ├── VariablesC6.vb │ │ │ │ ├── VariablesC7.vb │ │ │ │ ├── VariablesC8.vb │ │ │ │ ├── VariablesC9.vb │ │ │ │ ├── WithStatementC1.vb │ │ │ │ ├── WithStatementC2.vb │ │ │ │ ├── WithStatementC3.vb │ │ │ │ ├── WithStatementC4.vb │ │ │ │ ├── test-mbas.make │ │ │ │ └── test-mbas.pl │ │ │ ├── misc │ │ │ │ ├── .cvsignore │ │ │ │ ├── AssemblyInfo.vb │ │ │ │ ├── Makefile │ │ │ │ ├── RedimPreserve.vb │ │ │ │ ├── WriteOK.vb │ │ │ │ ├── WriteOK2.mbs │ │ │ │ ├── ado.vb │ │ │ │ ├── aspx_temp.vb │ │ │ │ ├── ctest.vb │ │ │ │ ├── filelist │ │ │ │ ├── gtk.vb │ │ │ │ ├── test.vb │ │ │ │ ├── test2.vb │ │ │ │ ├── test3.vb │ │ │ │ ├── test4.vb │ │ │ │ ├── test5.vb │ │ │ │ └── testm.vb │ │ │ ├── rerrors │ │ │ │ ├── .cvsignore │ │ │ │ ├── ChangeLog │ │ │ │ ├── ExpressionsDateRuntime.vb │ │ │ │ ├── ExpressionsLongIntRuntime.vb │ │ │ │ ├── ExpressionsOperatorsDecimalsRuntime.vb │ │ │ │ ├── ExpressionsPlusOperator1.vb │ │ │ │ ├── ExpressionsShortIntRuntime.vb │ │ │ │ ├── Makefile │ │ │ │ ├── Scope1.vb │ │ │ │ ├── Test │ │ │ │ │ ├── ArithmeticOperators1.vb │ │ │ │ │ ├── ArithmeticOperators2.vb │ │ │ │ │ ├── ArithmeticOperators3.vb │ │ │ │ │ ├── Array1.vb │ │ │ │ │ ├── Array2.vb │ │ │ │ │ ├── Array3.vb │ │ │ │ │ ├── AssignmentStatements1.vb │ │ │ │ │ ├── AssignmentStatements2.vb │ │ │ │ │ ├── AssignmentStatements3.vb │ │ │ │ │ ├── AssignmentStatements4.vb │ │ │ │ │ ├── ChangeLog │ │ │ │ │ ├── ConditionalStatements1.vb │ │ │ │ │ ├── DecimalLiteral1.vb │ │ │ │ │ ├── DoubleLiteral1.vb │ │ │ │ │ ├── Error.vb │ │ │ │ │ ├── ExceptionHandling1.vb │ │ │ │ │ ├── ExpConversionDoubletoByte1.vb │ │ │ │ │ ├── ExpConversionDoubletoDecimal2.vb │ │ │ │ │ ├── ExpConversionDoubletoInt1.vb │ │ │ │ │ ├── ExpConversionSingletoByte1.vb │ │ │ │ │ ├── ExpConversionSingletoDecimal2.vb │ │ │ │ │ ├── ExpConversionSingletoDecimal3.vb │ │ │ │ │ ├── ExpConversionSingletoInt1.vb │ │ │ │ │ ├── ExpConversionStringtoBool3.vb │ │ │ │ │ ├── ExpConversionStringtoByte2.vb │ │ │ │ │ ├── ExpConversionStringtoByte3.vb │ │ │ │ │ ├── ExpConversionStringtoDate2.vb │ │ │ │ │ ├── ExpConversionStringtoDecimal2.vb │ │ │ │ │ ├── ExpConversionStringtoDouble2.vb │ │ │ │ │ ├── ExpConversionStringtoInt2.vb │ │ │ │ │ ├── ExpConversionStringtoLong2.vb │ │ │ │ │ ├── ExpConversionStringtoShort2.vb │ │ │ │ │ ├── ExpConversionStringtoSingle2.vb │ │ │ │ │ ├── For1.vb │ │ │ │ │ ├── ImpConversionDecimaltoByte1.vb │ │ │ │ │ ├── ImpConversionDecimaltoInt1.vb │ │ │ │ │ ├── ImpConversionDoubletoByte1.vb │ │ │ │ │ ├── ImpConversionDoubletoDecimal2.vb │ │ │ │ │ ├── ImpConversionDoubletoDecimal3.vb │ │ │ │ │ ├── ImpConversionDoubletoInt1.vb │ │ │ │ │ ├── ImpConversionSingletoByte1.vb │ │ │ │ │ ├── ImpConversionSingletoDecimal2.vb │ │ │ │ │ ├── ImpConversionSingletoDecimal3.vb │ │ │ │ │ ├── ImpConversionSingletoInt1.vb │ │ │ │ │ ├── ImpConversionStringtoBool3.vb │ │ │ │ │ ├── ImpConversionStringtoByte2.vb │ │ │ │ │ ├── ImpConversionStringtoByte3.vb │ │ │ │ │ ├── ImpConversionStringtoDate2.vb │ │ │ │ │ ├── ImpConversionStringtoDecimal2.vb │ │ │ │ │ ├── ImpConversionStringtoDouble2.vb │ │ │ │ │ ├── ImpConversionStringtoInt2.vb │ │ │ │ │ ├── ImpConversionStringtoLong2.vb │ │ │ │ │ ├── ImpConversionStringtoShort2.vb │ │ │ │ │ ├── ImpConversionStringtoSingle2.vb │ │ │ │ │ ├── Inheritance1.vb │ │ │ │ │ ├── Inheritance2.vb │ │ │ │ │ ├── InheritanceM.vb │ │ │ │ │ ├── InheritanceN.vb │ │ │ │ │ ├── IntegerLiteral1.vb │ │ │ │ │ ├── IntegerLiteralTest1.vb │ │ │ │ │ ├── IntegerLiteralTest2.vb │ │ │ │ │ ├── IntegerLiteralTest3.vb │ │ │ │ │ ├── Interface1.vb │ │ │ │ │ ├── LateBinding1.vb │ │ │ │ │ ├── LateBinding10.vb │ │ │ │ │ ├── LateBinding11.vb │ │ │ │ │ ├── LateBinding12.vb │ │ │ │ │ ├── LateBinding13.vb │ │ │ │ │ ├── LateBinding14.vb │ │ │ │ │ ├── LateBinding15.vb │ │ │ │ │ ├── LateBinding2.vb │ │ │ │ │ ├── LateBinding3.vb │ │ │ │ │ ├── LateBinding4.vb │ │ │ │ │ ├── LateBinding5.vb │ │ │ │ │ ├── LateBinding6.vb │ │ │ │ │ ├── LateBinding7.vb │ │ │ │ │ ├── LateBinding8.vb │ │ │ │ │ ├── LateBinding9.vb │ │ │ │ │ ├── LikeOperator1.vb │ │ │ │ │ ├── LikeOperator2.vb │ │ │ │ │ ├── LikeOperator3.vb │ │ │ │ │ ├── LiteralNothing1.vb │ │ │ │ │ ├── LocalVariables1.vb │ │ │ │ │ ├── LogicalOperators1.vb │ │ │ │ │ ├── LongLiteral1.vb │ │ │ │ │ ├── LoopStatements1.vb │ │ │ │ │ ├── NamedArguments1.vb │ │ │ │ │ ├── OptionalArgFunction1.vb │ │ │ │ │ ├── OptionalArgument1.vb │ │ │ │ │ ├── Override1.vb │ │ │ │ │ ├── RelationalOperators1.vb │ │ │ │ │ ├── Scope1.vb │ │ │ │ │ ├── ShiftOperators1.vb │ │ │ │ │ ├── StringLiterals1.vb │ │ │ │ │ ├── SyncLock1.vb │ │ │ │ │ ├── Variables1.vb │ │ │ │ │ └── Variables2.vb │ │ │ │ ├── dummy.cs │ │ │ │ ├── rerrors.dll.sources │ │ │ │ └── rerrors_btest.dll.sources │ │ │ ├── test-mbas.make │ │ │ ├── test-mbas.pl │ │ │ └── tests │ │ │ │ ├── .cvsignore │ │ │ │ ├── ChangeLog │ │ │ │ ├── Makefile │ │ │ │ ├── attributes │ │ │ │ ├── AttributeAssemblyCompany.vb │ │ │ │ ├── AttributeAssemblyCopyRight.vb │ │ │ │ ├── AttributeAssemblyDescription.vb │ │ │ │ ├── AttributeAssemblyFlagA.vb │ │ │ │ ├── AttributeAssemblyName.vb │ │ │ │ ├── AttributeAssemblyTitle.vb │ │ │ │ ├── AttributeAssemblyVersion.vb │ │ │ │ ├── AttributeAssemblyVersionBuild.vb │ │ │ │ ├── AttributeAssemblyVersionMajor.vb │ │ │ │ ├── AttributeAssemblyVersionMinor.vb │ │ │ │ ├── AttributeAssemblyVersionRevision.vb │ │ │ │ ├── AttributeCLSCompliant.vb │ │ │ │ ├── Attributes.vb │ │ │ │ ├── AttributesA.vb │ │ │ │ ├── AttributesAssemblyCulture.vb │ │ │ │ ├── AttributesAssemblyMultiple.vb │ │ │ │ ├── AttributesB.vb │ │ │ │ ├── AttributesC.vb │ │ │ │ ├── AttributesClassA.vb │ │ │ │ ├── AttributesClassB.vb │ │ │ │ ├── AttributesClassBothSuffixA.vb │ │ │ │ ├── AttributesClassC.vb │ │ │ │ ├── AttributesClassNoparameterA.vb │ │ │ │ ├── AttributesClassUseA.vb │ │ │ │ ├── AttributesClassUseB.vb │ │ │ │ ├── AttributesClassUseC.vb │ │ │ │ ├── AttributesClassUseD.vb │ │ │ │ ├── AttributesNewA.vb │ │ │ │ ├── AttributesNewB.vb │ │ │ │ ├── ChangeLog │ │ │ │ ├── Makefile │ │ │ │ └── test-mbas.make │ │ │ │ ├── conversions │ │ │ │ ├── ChangeLog │ │ │ │ ├── ConversionWithAndOperatorA.vb │ │ │ │ ├── ConversionWithAndOperatorB.vb │ │ │ │ ├── ConversionWithAndOperatorBool.vb │ │ │ │ ├── ConversionWithAndOperatorC.vb │ │ │ │ ├── ConversionWithAndOperatorD.vb │ │ │ │ ├── ConversionWithAndOperatorE.vb │ │ │ │ ├── ConversionWithAndOperatorNumA.vb │ │ │ │ ├── ConversionWithAndOperatorNumB.vb │ │ │ │ ├── ConversionWithAndOperatorNumC.vb │ │ │ │ ├── ConversionWithAndOperatorNumD.vb │ │ │ │ ├── ConversionWithAndOperatorNumE.vb │ │ │ │ ├── ConversionWithEqualOperatorB.vb │ │ │ │ ├── ConversionWithEqualOperatorLnInt.vb │ │ │ │ ├── ConversionWithEqualOperatorsA.vb │ │ │ │ ├── ConversionWithGEOperatorA.vb │ │ │ │ ├── ConversionWithGEOperatorDateA.vb │ │ │ │ ├── ConversionWithGEoperatorB.vb │ │ │ │ ├── ConversionWithGTOperatorCharA.vb │ │ │ │ ├── ConversionWithGTOperatorString.vb │ │ │ │ ├── ConversionWithGTOperatorTrueFalse.vb │ │ │ │ ├── ConversionWithGTOperatorsA.vb │ │ │ │ ├── ConversionWithLEOperatorA.vb │ │ │ │ ├── ConversionWithLTOperatorsA.vb │ │ │ │ ├── ConversionWithNEqlOperator.vb │ │ │ │ ├── ConversionWithNotOperatorBoolA.vb │ │ │ │ ├── ConversionWithNotOperatorFalseA.vb │ │ │ │ ├── ConversionWithNotOperatorTrueA.vb │ │ │ │ ├── ConversionWithOrOperatorA.vb │ │ │ │ ├── ConversionWithOrOperatorB.vb │ │ │ │ ├── ConversionWithOrOperatorBoolA.vb │ │ │ │ ├── ConversionWithOrOperatorBoolB.vb │ │ │ │ ├── ConversionWithOrOperatorBoolC.vb │ │ │ │ ├── ConversionWithOrOperatorBoolD.vb │ │ │ │ ├── ConversionWithOrOperatorC.vb │ │ │ │ ├── ConversionWithOrOperatorNumA.vb │ │ │ │ ├── ConversionWithOrOperatorNumB.vb │ │ │ │ ├── ConversionWithOrOperatorNumC.vb │ │ │ │ ├── ConversionWithOrOperatorNumD.vb │ │ │ │ ├── ConversionWithOrOperatorNumE.vb │ │ │ │ ├── ConversionWithShiftOperatorA.vb │ │ │ │ ├── ConversionWithShiftOperatorB.vb │ │ │ │ ├── ConversionWithShiftOperatorC.vb │ │ │ │ ├── ConversionWithShiftOperatorD.vb │ │ │ │ ├── ConversionWithShiftOperatorE.vb │ │ │ │ ├── ConversionWithShiftOperatorF.vb │ │ │ │ ├── ConversionWithShiftOperatorG.vb │ │ │ │ ├── ConversionWithShiftOperatorH.vb │ │ │ │ ├── ConversionWithShiftOperatorI.vb │ │ │ │ ├── ConversionWithShiftOperatorJ.vb │ │ │ │ ├── ConversionWithShiftOperatorK.vb │ │ │ │ ├── ConversionWithXorOperatorA.vb │ │ │ │ ├── ConversionWithXorOperatorB.vb │ │ │ │ ├── ConversionWithXorOperatorBoolA.vb │ │ │ │ ├── ConversionWithXorOperatorBoolB.vb │ │ │ │ ├── ConversionWithXorOperatorBoolC.vb │ │ │ │ ├── ConversionWithXorOperatorBoolD.vb │ │ │ │ ├── ConversionWithXorOperatorBoolE.vb │ │ │ │ ├── ConversionWithXorOperatorC.vb │ │ │ │ ├── ConversionWithXorOperatorNumA.vb │ │ │ │ ├── ConversionWithXorOperatorNumB.vb │ │ │ │ ├── ConversionWithXorOperatorNumC.vb │ │ │ │ ├── ConversionWithXorOperatorNumD.vb │ │ │ │ ├── ConversionsA.vb │ │ │ │ ├── EnumConversionA.vb │ │ │ │ ├── EnumConversionB.vb │ │ │ │ ├── ExpConversionBoolToByteA1.vb │ │ │ │ ├── ExpConversionBoolToByteA2.vb │ │ │ │ ├── ExpConversionBoolToDecimalA1.vb │ │ │ │ ├── ExpConversionBoolToDecimalA2.vb │ │ │ │ ├── ExpConversionBoolToDoubleA1.vb │ │ │ │ ├── ExpConversionBoolToDoubleA2.vb │ │ │ │ ├── ExpConversionBoolToIntA1.vb │ │ │ │ ├── ExpConversionBoolToIntA2.vb │ │ │ │ ├── ExpConversionBoolToLongA1.vb │ │ │ │ ├── ExpConversionBoolToLongA2.vb │ │ │ │ ├── ExpConversionBoolToShortA1.vb │ │ │ │ ├── ExpConversionBoolToShortA2.vb │ │ │ │ ├── ExpConversionBoolToSingleA1.vb │ │ │ │ ├── ExpConversionBoolToSingleA2.vb │ │ │ │ ├── ExpConversionBooltoStringA.vb │ │ │ │ ├── ExpConversionBooltoStringB.vb │ │ │ │ ├── ExpConversionByteToBoolA1.vb │ │ │ │ ├── ExpConversionBytetoDecimalA.vb │ │ │ │ ├── ExpConversionBytetoDoubleA.vb │ │ │ │ ├── ExpConversionBytetoIntA.vb │ │ │ │ ├── ExpConversionBytetoLongA.vb │ │ │ │ ├── ExpConversionBytetoShortA.vb │ │ │ │ ├── ExpConversionBytetoSingleA.vb │ │ │ │ ├── ExpConversionBytetoStringA.vb │ │ │ │ ├── ExpConversionChartoStringA.vb │ │ │ │ ├── ExpConversionDatetoStringA.vb │ │ │ │ ├── ExpConversionDecimalToBoolA1.vb │ │ │ │ ├── ExpConversionDecimaltoByteA.vb │ │ │ │ ├── ExpConversionDecimaltoDoubleA.vb │ │ │ │ ├── ExpConversionDecimaltoIntA.vb │ │ │ │ ├── ExpConversionDecimaltoLongA.vb │ │ │ │ ├── ExpConversionDecimaltoShortA.vb │ │ │ │ ├── ExpConversionDecimaltoSingleA.vb │ │ │ │ ├── ExpConversionDecimaltoStringA.vb │ │ │ │ ├── ExpConversionDoubleToBoolA1.vb │ │ │ │ ├── ExpConversionDoubletoDecimalA.vb │ │ │ │ ├── ExpConversionDoubletoLongA.vb │ │ │ │ ├── ExpConversionDoubletoShortA.vb │ │ │ │ ├── ExpConversionDoubletoSingleA.vb │ │ │ │ ├── ExpConversionDoubletoSingleB.vb │ │ │ │ ├── ExpConversionDoubletoSingleC.vb │ │ │ │ ├── ExpConversionDoubletoSingleD.vb │ │ │ │ ├── ExpConversionDoubletoStringA.vb │ │ │ │ ├── ExpConversionIntToBoolA1.vb │ │ │ │ ├── ExpConversionInttoByteA.vb │ │ │ │ ├── ExpConversionInttoDecimalA.vb │ │ │ │ ├── ExpConversionInttoDoubleA.vb │ │ │ │ ├── ExpConversionInttoLongA.vb │ │ │ │ ├── ExpConversionInttoShortA.vb │ │ │ │ ├── ExpConversionInttoSingleA.vb │ │ │ │ ├── ExpConversionInttoStringA.vb │ │ │ │ ├── ExpConversionLongToBoolA1.vb │ │ │ │ ├── ExpConversionLongtoDoubleA.vb │ │ │ │ ├── ExpConversionLongtoIntA.vb │ │ │ │ ├── ExpConversionLongtoSingleA.vb │ │ │ │ ├── ExpConversionLongtoStringA.vb │ │ │ │ ├── ExpConversionShortToBoolA1.vb │ │ │ │ ├── ExpConversionShorttoByteA.vb │ │ │ │ ├── ExpConversionShorttoDecimalA.vb │ │ │ │ ├── ExpConversionShorttoDoubleA.vb │ │ │ │ ├── ExpConversionShorttoIntA.vb │ │ │ │ ├── ExpConversionShorttoLongA.vb │ │ │ │ ├── ExpConversionShorttoSingleA.vb │ │ │ │ ├── ExpConversionShorttoStringA.vb │ │ │ │ ├── ExpConversionSingleToBoolA1.vb │ │ │ │ ├── ExpConversionSingletoDecimalA.vb │ │ │ │ ├── ExpConversionSingletoDoubleA.vb │ │ │ │ ├── ExpConversionSingletoLongA.vb │ │ │ │ ├── ExpConversionSingletoShortA.vb │ │ │ │ ├── ExpConversionSingletoStringA.vb │ │ │ │ ├── ExpConversionStringtoBoolA.vb │ │ │ │ ├── ExpConversionStringtoBoolB.vb │ │ │ │ ├── ExpConversionStringtoByteA.vb │ │ │ │ ├── ExpConversionStringtoCharA.vb │ │ │ │ ├── ExpConversionStringtoDateA.vb │ │ │ │ ├── ExpConversionStringtoDecimalA.vb │ │ │ │ ├── ExpConversionStringtoDoubleA.vb │ │ │ │ ├── ExpConversionStringtoIntA.vb │ │ │ │ ├── ExpConversionStringtoLongA.vb │ │ │ │ ├── ExpConversionStringtoShortA.vb │ │ │ │ ├── ExpConversionStringtoSingleA.vb │ │ │ │ ├── ExplicitConversionEnumToIntA.vb │ │ │ │ ├── ExplicitConversionEnumToIntB.vb │ │ │ │ ├── ExplicitConversionEnumToIntC.vb │ │ │ │ ├── ImpConversionBoolToByteA1.vb │ │ │ │ ├── ImpConversionBoolToByteA2.vb │ │ │ │ ├── ImpConversionBoolToDecimalA1.vb │ │ │ │ ├── ImpConversionBoolToDecimalA2.vb │ │ │ │ ├── ImpConversionBoolToDoubleA1.vb │ │ │ │ ├── ImpConversionBoolToDoubleA2.vb │ │ │ │ ├── ImpConversionBoolToIntA1.vb │ │ │ │ ├── ImpConversionBoolToIntA2.vb │ │ │ │ ├── ImpConversionBoolToLongA1.vb │ │ │ │ ├── ImpConversionBoolToLongA2.vb │ │ │ │ ├── ImpConversionBoolToShortA1.vb │ │ │ │ ├── ImpConversionBoolToShortA2.vb │ │ │ │ ├── ImpConversionBoolToSingleA1.vb │ │ │ │ ├── ImpConversionBoolToSingleA2.vb │ │ │ │ ├── ImpConversionBooltoByteC.vb │ │ │ │ ├── ImpConversionBooltoDoubleC.vb │ │ │ │ ├── ImpConversionBooltoLongC.vb │ │ │ │ ├── ImpConversionBooltoStringA.vb │ │ │ │ ├── ImpConversionBooltoStringB.vb │ │ │ │ ├── ImpConversionBooltoStringC.vb │ │ │ │ ├── ImpConversionByteToBoolA1.vb │ │ │ │ ├── ImpConversionByteToBoolA2.vb │ │ │ │ ├── ImpConversionBytetoDecimalA.vb │ │ │ │ ├── ImpConversionBytetoDecimalB.vb │ │ │ │ ├── ImpConversionBytetoDoubleA.vb │ │ │ │ ├── ImpConversionBytetoIntA.vb │ │ │ │ ├── ImpConversionBytetoIntB.vb │ │ │ │ ├── ImpConversionBytetoLongA.vb │ │ │ │ ├── ImpConversionBytetoShortA.vb │ │ │ │ ├── ImpConversionBytetoSingleA.vb │ │ │ │ ├── ImpConversionBytetoStringA.vb │ │ │ │ ├── ImpConversionBytetoStringB.vb │ │ │ │ ├── ImpConversionChartoStringA.vb │ │ │ │ ├── ImpConversionChartoStringB.vb │ │ │ │ ├── ImpConversionChartoStringC.vb │ │ │ │ ├── ImpConversionDatetoStringA.vb │ │ │ │ ├── ImpConversionDatetoStringB.vb │ │ │ │ ├── ImpConversionDecimalToBoolA1.vb │ │ │ │ ├── ImpConversionDecimaltoBoolA2.vb │ │ │ │ ├── ImpConversionDecimaltoByteB.vb │ │ │ │ ├── ImpConversionDecimaltoDoubleA.vb │ │ │ │ ├── ImpConversionDecimaltoDoubleB.vb │ │ │ │ ├── ImpConversionDecimaltoLongA.vb │ │ │ │ ├── ImpConversionDecimaltoLongB.vb │ │ │ │ ├── ImpConversionDecimaltoShortA.vb │ │ │ │ ├── ImpConversionDecimaltoSingleA.vb │ │ │ │ ├── ImpConversionDecimaltoStringA.vb │ │ │ │ ├── ImpConversionDoubleToBoolA1.vb │ │ │ │ ├── ImpConversionDoubleToBoolA2.vb │ │ │ │ ├── ImpConversionDoubletoByteB.vb │ │ │ │ ├── ImpConversionDoubletoDecimalA.vb │ │ │ │ ├── ImpConversionDoubletoDecimalD.vb │ │ │ │ ├── ImpConversionDoubletoIntB.vb │ │ │ │ ├── ImpConversionDoubletoLongA.vb │ │ │ │ ├── ImpConversionDoubletoLongB.vb │ │ │ │ ├── ImpConversionDoubletoShortA.vb │ │ │ │ ├── ImpConversionDoubletoSingleA.vb │ │ │ │ ├── ImpConversionDoubletoSingleB.vb │ │ │ │ ├── ImpConversionDoubletoSingleC.vb │ │ │ │ ├── ImpConversionDoubletoSingleD.vb │ │ │ │ ├── ImpConversionDoubletoStringA.vb │ │ │ │ ├── ImpConversionDoubletoStringB.vb │ │ │ │ ├── ImpConversionEnumToIntA.vb │ │ │ │ ├── ImpConversionEnumToIntB.vb │ │ │ │ ├── ImpConversionIntToBoolA1.vb │ │ │ │ ├── ImpConversionIntToBoolA2.vb │ │ │ │ ├── ImpConversionInttoByteA.vb │ │ │ │ ├── ImpConversionInttoByteB.vb │ │ │ │ ├── ImpConversionInttoDecimalA.vb │ │ │ │ ├── ImpConversionInttoDoubleA.vb │ │ │ │ ├── ImpConversionInttoDoubleB.vb │ │ │ │ ├── ImpConversionInttoLongA.vb │ │ │ │ ├── ImpConversionInttoLongB.vb │ │ │ │ ├── ImpConversionInttoShortA.vb │ │ │ │ ├── ImpConversionInttoSingleA.vb │ │ │ │ ├── ImpConversionInttoStringA.vb │ │ │ │ ├── ImpConversionInttoStringB.vb │ │ │ │ ├── ImpConversionLongToBoolA1.vb │ │ │ │ ├── ImpConversionLongToBoolA2.vb │ │ │ │ ├── ImpConversionLongtoDoubleA.vb │ │ │ │ ├── ImpConversionLongtoDoubleB.vb │ │ │ │ ├── ImpConversionLongtoIntA.vb │ │ │ │ ├── ImpConversionLongtoIntB.vb │ │ │ │ ├── ImpConversionLongtoSingleA.vb │ │ │ │ ├── ImpConversionLongtoStringA.vb │ │ │ │ ├── ImpConversionLongtoStringB.vb │ │ │ │ ├── ImpConversionShortToBoolA1.vb │ │ │ │ ├── ImpConversionShortToBoolA2.vb │ │ │ │ ├── ImpConversionShorttoByteA.vb │ │ │ │ ├── ImpConversionShorttoDecimalA.vb │ │ │ │ ├── ImpConversionShorttoDecimalB.vb │ │ │ │ ├── ImpConversionShorttoDoubleA.vb │ │ │ │ ├── ImpConversionShorttoIntA.vb │ │ │ │ ├── ImpConversionShorttoIntB.vb │ │ │ │ ├── ImpConversionShorttoLongA.vb │ │ │ │ ├── ImpConversionShorttoSingleA.vb │ │ │ │ ├── ImpConversionShorttoStringA.vb │ │ │ │ ├── ImpConversionShorttoStringB.vb │ │ │ │ ├── ImpConversionSingleToBoolA1.vb │ │ │ │ ├── ImpConversionSingleToBoolA2.vb │ │ │ │ ├── ImpConversionSingletoByteB.vb │ │ │ │ ├── ImpConversionSingletoDecimalA.vb │ │ │ │ ├── ImpConversionSingletoDecimalD.vb │ │ │ │ ├── ImpConversionSingletoDoubleA.vb │ │ │ │ ├── ImpConversionSingletoDoubleB.vb │ │ │ │ ├── ImpConversionSingletoIntB.vb │ │ │ │ ├── ImpConversionSingletoLongA.vb │ │ │ │ ├── ImpConversionSingletoLongB.vb │ │ │ │ ├── ImpConversionSingletoShortA.vb │ │ │ │ ├── ImpConversionSingletoStringA.vb │ │ │ │ ├── ImpConversionSingletoStringB.vb │ │ │ │ ├── ImpConversionStringtoBoolA.vb │ │ │ │ ├── ImpConversionStringtoBoolB.vb │ │ │ │ ├── ImpConversionStringtoByteA.vb │ │ │ │ ├── ImpConversionStringtoByteD.vb │ │ │ │ ├── ImpConversionStringtoCharA.vb │ │ │ │ ├── ImpConversionStringtoCharB.vb │ │ │ │ ├── ImpConversionStringtoCharC.vb │ │ │ │ ├── ImpConversionStringtoDateA.vb │ │ │ │ ├── ImpConversionStringtoDecimalA.vb │ │ │ │ ├── ImpConversionStringtoDoubleA.vb │ │ │ │ ├── ImpConversionStringtoDoubleC.vb │ │ │ │ ├── ImpConversionStringtoIntA.vb │ │ │ │ ├── ImpConversionStringtoIntC.vb │ │ │ │ ├── ImpConversionStringtoLongA.vb │ │ │ │ ├── ImpConversionStringtoShortA.vb │ │ │ │ ├── ImpConversionStringtoSingleA.vb │ │ │ │ ├── ImpOverloadConversionDecimaltoByte.vb │ │ │ │ ├── ImpOverloadConversionDecimaltoDouble.vb │ │ │ │ ├── ImpOverloadConversionDecimaltoInt.vb │ │ │ │ ├── ImpOverloadConversionDecimaltoLong.vb │ │ │ │ ├── ImpOverloadConversionDecimaltoShort.vb │ │ │ │ ├── ImpOverloadConversionDecimaltoSingle.vb │ │ │ │ ├── ImpOverloadConversionDecimaltoString.vb │ │ │ │ ├── ImpOverloadConversionDecimaltogenericSingle.vb │ │ │ │ ├── ImpOverloadConversionInttogenericIntC1.vb │ │ │ │ ├── ImpOverloadConversionSingletoDouble.vb │ │ │ │ ├── ImpOverloadConversionSingletogenericSingle.vb │ │ │ │ ├── Makefile │ │ │ │ └── test-mbas.make │ │ │ │ ├── directives │ │ │ │ ├── ConditionalCompilation.vb │ │ │ │ ├── ConditionalCompilationA.vb │ │ │ │ ├── ConditionalCompilationB.vb │ │ │ │ ├── ConditionalCompilationC.vb │ │ │ │ ├── ConditionalCompilationD.vb │ │ │ │ ├── ConditionalCompilationE.vb │ │ │ │ ├── ConditionalConstantsA.vb │ │ │ │ ├── ExternalSourceDirectives.vb │ │ │ │ ├── Makefile │ │ │ │ ├── RegionDirectives.vb │ │ │ │ ├── RegionDirectivesA.vb │ │ │ │ └── test-mbas.make │ │ │ │ ├── expressions │ │ │ │ ├── ArithmeticOperators.vb │ │ │ │ ├── ArithmeticOperatorsA.vb │ │ │ │ ├── AssignmentOperators.vb │ │ │ │ ├── ChangeLog │ │ │ │ ├── ConcatenationOperator.vb │ │ │ │ ├── ExpressionInstanceMeA.vb │ │ │ │ ├── ExpressionInstanceMyBaseA.vb │ │ │ │ ├── ExpressionInstanceMyClassA.vb │ │ │ │ ├── ExpressionLiteralCharA.vb │ │ │ │ ├── ExpressionLiteralCharB.vb │ │ │ │ ├── ExpressionLiteralNothingA.vb │ │ │ │ ├── ExpressionLiteralNothingB.vb │ │ │ │ ├── ExpressionLiteralNumericA.vb │ │ │ │ ├── ExpressionLiteralNumericB.vb │ │ │ │ ├── ExpressionLiteralNumericC.vb │ │ │ │ ├── ExpressionLiteralNumericD.vb │ │ │ │ ├── ExpressionLiteralNumericE.vb │ │ │ │ ├── ExpressionLiteralNumericF.vb │ │ │ │ ├── ExpressionLiteralNumericG.vb │ │ │ │ ├── ExpressionLiteralStringA.vb │ │ │ │ ├── ExpressionLiteralStringB.vb │ │ │ │ ├── ExpressionLiteralStringC.vb │ │ │ │ ├── ExpressionMemberAccess.vb │ │ │ │ ├── ExpressionMemberAccessDict.vb │ │ │ │ ├── ExpressionOverLoadMethodA.vb │ │ │ │ ├── ExpressionParenthesizedA.vb │ │ │ │ ├── ExpressionParenthesizedB.vb │ │ │ │ ├── ExpressionParenthesizedC.vb │ │ │ │ ├── ExpressionReclassificationA.vb │ │ │ │ ├── ExpressionReclassifiedB.vb │ │ │ │ ├── ExpressionReclassifiedC.vb │ │ │ │ ├── ExpressionSimpleNameAddressOfA.vb │ │ │ │ ├── ExpressionSimpleNameGetTypeA.vb │ │ │ │ ├── ExpressionSimpleNameTypeOfA.vb │ │ │ │ ├── ExpressionSimpleWithA.vb │ │ │ │ ├── ExpressionSimpleWithB.vb │ │ │ │ ├── ExpressionSimpleWithC.vb │ │ │ │ ├── ExpressionStringA.vb │ │ │ │ ├── ExpressionStringB.vb │ │ │ │ ├── ExpressionsWithAndAlsoA.vb │ │ │ │ ├── ExpressionsWithAndAlsoB.vb │ │ │ │ ├── ExpressionsWithAndAlsoC.vb │ │ │ │ ├── ExpressionsWithOrElseA.vb │ │ │ │ ├── ExpressionsWithOrElseB.vb │ │ │ │ ├── ExpressionsWithOrElseC.vb │ │ │ │ ├── LikeOperator.vb │ │ │ │ ├── LikeOperatorA.vb │ │ │ │ ├── LikeOperatorB.vb │ │ │ │ ├── LikeOperatorC.vb │ │ │ │ ├── LikeOperatorD.vb │ │ │ │ ├── LikeOperatorE.vb │ │ │ │ ├── LikeOperatorF.vb │ │ │ │ ├── LikeOperatorG.vb │ │ │ │ ├── LogicalOperators.vb │ │ │ │ ├── LogicalOperatorsA.vb │ │ │ │ ├── Makefile │ │ │ │ ├── RelationalOperators.vb │ │ │ │ ├── RelationalOperatorsA.vb │ │ │ │ ├── ShiftOperators.vb │ │ │ │ ├── ShiftOperatorsA.vb │ │ │ │ └── test-mbas.make │ │ │ │ ├── general │ │ │ │ ├── Accessibility.vb │ │ │ │ ├── AccessibilityA.vb │ │ │ │ ├── AccessibilityB.vb │ │ │ │ ├── AccessibilityC.vb │ │ │ │ ├── ChangeLog │ │ │ │ ├── Identifier.vb │ │ │ │ ├── IdentifierFail1.vb │ │ │ │ ├── Inheritance.vb │ │ │ │ ├── InheritanceA.vb │ │ │ │ ├── InheritanceB.vb │ │ │ │ ├── InheritanceC.vb │ │ │ │ ├── InheritanceD.vb │ │ │ │ ├── InheritanceE.vb │ │ │ │ ├── InheritanceF.vb │ │ │ │ ├── InheritanceG.vb │ │ │ │ ├── InheritanceH.vb │ │ │ │ ├── InheritanceI.vb │ │ │ │ ├── InheritanceJ.vb │ │ │ │ ├── InheritanceK.vb │ │ │ │ ├── InheritanceL.vb │ │ │ │ ├── LineContinuationC1.vb │ │ │ │ ├── LocalVariableC.vb │ │ │ │ ├── LocalVariableD.vb │ │ │ │ ├── LocalVariableE.vb │ │ │ │ ├── LocalVariableG.vb │ │ │ │ ├── LocalVariableH.vb │ │ │ │ ├── LocalVariableI.vb │ │ │ │ ├── LocalVariablesA.vb │ │ │ │ ├── LocalVariablesB.vb │ │ │ │ ├── Makefile │ │ │ │ ├── MustInherit.vb │ │ │ │ ├── MustInheritA.vb │ │ │ │ ├── MustInheritB.vb │ │ │ │ ├── MustInheritC.vb │ │ │ │ ├── NotInheritable.vb │ │ │ │ ├── NotInheritableA.vb │ │ │ │ ├── Overloading.vb │ │ │ │ ├── OverloadingA.vb │ │ │ │ ├── OverrideA.vb │ │ │ │ ├── OverrideB.vb │ │ │ │ ├── OverrideD.vb │ │ │ │ ├── OverrideE.vb │ │ │ │ ├── OverrideF.vb │ │ │ │ ├── OverrideG.vb │ │ │ │ ├── Override_exe.vb │ │ │ │ ├── QualifiedNames.vb │ │ │ │ ├── Scope.vb │ │ │ │ ├── ScopeA.vb │ │ │ │ ├── ScopeB.vb │ │ │ │ ├── ScopeC.vb │ │ │ │ ├── ShadowsA.vb │ │ │ │ ├── ShadowsC.vb │ │ │ │ ├── ShadowsC4.vb │ │ │ │ ├── ShadowsD.vb │ │ │ │ ├── ShadowsE.vb │ │ │ │ ├── ShadowsF.vb │ │ │ │ ├── Variables.vb │ │ │ │ ├── VariablesA.vb │ │ │ │ ├── VariablesB.vb │ │ │ │ ├── VariablesC.vb │ │ │ │ ├── VariablesD.vb │ │ │ │ ├── VariablesE.vb │ │ │ │ ├── VariablesF.vb │ │ │ │ ├── VariablesG.vb │ │ │ │ ├── VariablesH.vb │ │ │ │ ├── VariablesI.vb │ │ │ │ ├── VariablesJ.vb │ │ │ │ ├── VariablesK.vb │ │ │ │ ├── VariablesL.vb │ │ │ │ ├── VariablesM.vb │ │ │ │ ├── misc2.vb │ │ │ │ └── test-mbas.make │ │ │ │ ├── latebinding │ │ │ │ ├── Arguments_ByReferenceA.vb │ │ │ │ ├── Arguments_ByReferenceB.vb │ │ │ │ ├── Arguments_ByReferenceC.vb │ │ │ │ ├── Arguments_ByValueA.vb │ │ │ │ ├── Arguments_ByValueB.vb │ │ │ │ ├── Arguments_ByValueC.vb │ │ │ │ ├── Arguments_ByValueD.vb │ │ │ │ ├── ArrayA.vb │ │ │ │ ├── ArrayB.vb │ │ │ │ ├── ArrayC.vb │ │ │ │ ├── Changelog │ │ │ │ ├── DefaultPropA.vb │ │ │ │ ├── DefaultPropB.vb │ │ │ │ ├── DefaultPropC.vb │ │ │ │ ├── DefaultPropD.vb │ │ │ │ ├── DefaultPropE.vb │ │ │ │ ├── DefaultPropF.vb │ │ │ │ ├── DefaultPropG.vb │ │ │ │ ├── DefaultPropH.vb │ │ │ │ ├── ExplicitOff.vb │ │ │ │ ├── ExpressionMemberAccess.vb │ │ │ │ ├── ExpressionMemberAccessDict.vb │ │ │ │ ├── ExpressionOverLoadMethodA.vb │ │ │ │ ├── ExpressionOverLoadMethodB.vb │ │ │ │ ├── ExpressionOverLoadMethodC.vb │ │ │ │ ├── FunctionArgu_ByReferenceA.vb │ │ │ │ ├── FunctionArgu_ByReferenceB.vb │ │ │ │ ├── FunctionArgu_ByReferenceC.vb │ │ │ │ ├── FunctionArgu_ByValueA.vb │ │ │ │ ├── FunctionArgu_ByValueB.vb │ │ │ │ ├── FunctionArgu_ByValueC.vb │ │ │ │ ├── FunctionArgu_ByValueD.vb │ │ │ │ ├── Function_ParamArrayA.vb │ │ │ │ ├── Function_ParamArrayB.vb │ │ │ │ ├── Function_ParamArrayC.vb │ │ │ │ ├── Inheritance.vb │ │ │ │ ├── InheritanceA.vb │ │ │ │ ├── InheritanceB.vb │ │ │ │ ├── InheritanceC.vb │ │ │ │ ├── InvocationStatementA.vb │ │ │ │ ├── Makefile │ │ │ │ ├── MethodDeclarationA.vb │ │ │ │ ├── NamedArgumentsA.vb │ │ │ │ ├── NamedArgumentsB.vb │ │ │ │ ├── NamedArgumentsC.vb │ │ │ │ ├── NamedArgumentsD.vb │ │ │ │ ├── OptionalArgFunctionA.vb │ │ │ │ ├── OptionalArgu_ByReferenceA.vb │ │ │ │ ├── OptionalArgu_ByReferenceB.vb │ │ │ │ ├── OptionalArgu_ByValFuncA.vb │ │ │ │ ├── OptionalArgu_ByValFuncB.vb │ │ │ │ ├── OptionalArgumentA.vb │ │ │ │ ├── OverloadingA.vb │ │ │ │ ├── OverrideA.vb │ │ │ │ ├── OverrideB.vb │ │ │ │ ├── OverrideC.vb │ │ │ │ ├── OverrideD.vb │ │ │ │ ├── OverrideE.vb │ │ │ │ ├── ParamArrayA.vb │ │ │ │ ├── ParamArrayB.vb │ │ │ │ ├── ParamArrayC.vb │ │ │ │ ├── ParamArrayD.vb │ │ │ │ ├── ParamArrayE.vb │ │ │ │ ├── PropertyA.vb │ │ │ │ ├── PropertyB.vb │ │ │ │ ├── TypeMembersA.vb │ │ │ │ ├── TypeMembersB.vb │ │ │ │ ├── TypeMembersC.vb │ │ │ │ ├── TypeMembersD.vb │ │ │ │ ├── TypeMembersE.vb │ │ │ │ ├── TypeMembersF.vb │ │ │ │ ├── TypeMembersG.vb │ │ │ │ ├── TypeMembersH.vb │ │ │ │ ├── TypeMembersI.vb │ │ │ │ ├── TypeMembersJ.vb │ │ │ │ ├── TypeMembersK.vb │ │ │ │ ├── TypeMembersL.vb │ │ │ │ ├── TypeMembersM.vb │ │ │ │ ├── TypeMembersN.vb │ │ │ │ ├── TypeMembersO.vb │ │ │ │ ├── TypeMembersR.vb │ │ │ │ ├── TypeMembersS.vb │ │ │ │ ├── TypeMembersT.vb │ │ │ │ ├── TypeMembersU.vb │ │ │ │ ├── TypeMembersV.vb │ │ │ │ ├── TypeMembersW.vb │ │ │ │ ├── TypeMembersY.vb │ │ │ │ ├── VariablesA.vb │ │ │ │ ├── VariablesB.vb │ │ │ │ ├── VariablesC.vb │ │ │ │ ├── VariablesD.vb │ │ │ │ ├── WithStatementA.vb │ │ │ │ └── test-mbas.make │ │ │ │ ├── namespace │ │ │ │ ├── Makefile │ │ │ │ ├── NameSpace.vb │ │ │ │ ├── NameSpaceC.vb │ │ │ │ ├── NameSpaceE.vb │ │ │ │ ├── NameSpaceF.vb │ │ │ │ ├── NameSpaceG.vb │ │ │ │ └── test-mbas.make │ │ │ │ ├── statements │ │ │ │ ├── AssignmentStatementsA.vb │ │ │ │ ├── AssignmentStatementsB.vb │ │ │ │ ├── AssignmentStatementsC.vb │ │ │ │ ├── AssignmentStatementsD.vb │ │ │ │ ├── AssignmentStatementsE.vb │ │ │ │ ├── AssignmentStatementsF.vb │ │ │ │ ├── AssignmentStatementsG.vb │ │ │ │ ├── AssignmentStatementsH.vb │ │ │ │ ├── AssignmentStatementsI.vb │ │ │ │ ├── AssignmentStatementsJ.vb │ │ │ │ ├── BlockStatementsA.vb │ │ │ │ ├── ChangeLog │ │ │ │ ├── ConditionalStatementsA.vb │ │ │ │ ├── ConditionalStatementsB.vb │ │ │ │ ├── ConditionalStatementsC.vb │ │ │ │ ├── ConditionalStatementsD.vb │ │ │ │ ├── ConditionalStatementsE.vb │ │ │ │ ├── ConditionalStatementsF.vb │ │ │ │ ├── ConditionalStatementsG.vb │ │ │ │ ├── ConditionalStatementsH.vb │ │ │ │ ├── ConditionalStatementsI.vb │ │ │ │ ├── ConditionalStatementsJ.vb │ │ │ │ ├── ControlFlowA.vb │ │ │ │ ├── Error.vb │ │ │ │ ├── ExceptionHandlingA.vb │ │ │ │ ├── ExceptionHandlingC.vb │ │ │ │ ├── ExceptionHandlingE.vb │ │ │ │ ├── ExceptionHandlingF.vb │ │ │ │ ├── ExceptionHandlingG.vb │ │ │ │ ├── ExitStatementA.vb │ │ │ │ ├── ForA.vb │ │ │ │ ├── ForB.vb │ │ │ │ ├── ForC.vb │ │ │ │ ├── ForD.vb │ │ │ │ ├── ForE.vb │ │ │ │ ├── ForEachA.vb │ │ │ │ ├── ForEachB.vb │ │ │ │ ├── ForEachC.vb │ │ │ │ ├── ForF.vb │ │ │ │ ├── ForG.vb │ │ │ │ ├── ForH.vb │ │ │ │ ├── ForI.vb │ │ │ │ ├── ForJ.vb │ │ │ │ ├── GotoStatementA.vb │ │ │ │ ├── GotoStatementB.vb │ │ │ │ ├── InvocationStatementA.vb │ │ │ │ ├── LabelA.vb │ │ │ │ ├── LabelB.vb │ │ │ │ ├── LabelC.vb │ │ │ │ ├── LabelD.vb │ │ │ │ ├── LocalDeclarationA.vb │ │ │ │ ├── LocalDeclarationB.vb │ │ │ │ ├── LocalDeclarationC.vb │ │ │ │ ├── LoopStatementsA.vb │ │ │ │ ├── LoopStatementsB.vb │ │ │ │ ├── LoopStatementsC.vb │ │ │ │ ├── LoopStatementsD.vb │ │ │ │ ├── LoopStatementsE.vb │ │ │ │ ├── LoopStatementsF.vb │ │ │ │ ├── LoopStatementsG.vb │ │ │ │ ├── Makefile │ │ │ │ ├── ReturnStatementA.vb │ │ │ │ ├── SelectCaseStatementA.vb │ │ │ │ ├── SelectCaseStatementB.vb │ │ │ │ ├── SelectCaseStatementC.vb │ │ │ │ ├── SelectCaseStatementD.vb │ │ │ │ ├── SyncLockB.vb │ │ │ │ ├── WithStatementA.vb │ │ │ │ ├── WithStatementB.vb │ │ │ │ ├── WithStatementC.vb │ │ │ │ └── test-mbas.make │ │ │ │ ├── test-mbas.make │ │ │ │ ├── test-mbas.pl │ │ │ │ ├── typemembers │ │ │ │ ├── Arguments_ByReferenceA.vb │ │ │ │ ├── Arguments_ByReferenceB.vb │ │ │ │ ├── Arguments_ByReferenceC.vb │ │ │ │ ├── Arguments_ByReferenceD.vb │ │ │ │ ├── Arguments_ByValueA.vb │ │ │ │ ├── Arguments_ByValueB.vb │ │ │ │ ├── Arguments_ByValueC.vb │ │ │ │ ├── Arguments_ByValueD.vb │ │ │ │ ├── ChangeLog │ │ │ │ ├── ConstantA.vb │ │ │ │ ├── ConstantB.vb │ │ │ │ ├── ConstantC.vb │ │ │ │ ├── ConstructorA.vb │ │ │ │ ├── ConstructorB.vb │ │ │ │ ├── ConstructorC.vb │ │ │ │ ├── ConstructorD.vb │ │ │ │ ├── ConstructorE.vb │ │ │ │ ├── ConstructorF.vb │ │ │ │ ├── ConstructorG.vb │ │ │ │ ├── ConstructorH.vb │ │ │ │ ├── ConstructorI.vb │ │ │ │ ├── ConstructorJ.vb │ │ │ │ ├── DefaultPropA.vb │ │ │ │ ├── DefaultPropB.vb │ │ │ │ ├── DefaultPropC.vb │ │ │ │ ├── DefaultPropD.vb │ │ │ │ ├── DefaultPropE.vb │ │ │ │ ├── DefaultPropF.vb │ │ │ │ ├── DefaultPropG.vb │ │ │ │ ├── DefaultPropH.vb │ │ │ │ ├── EventA.vb │ │ │ │ ├── EventB.vb │ │ │ │ ├── EventC.vb │ │ │ │ ├── EventD.vb │ │ │ │ ├── EventE.vb │ │ │ │ ├── EventF.vb │ │ │ │ ├── EventG.vb │ │ │ │ ├── EventJ.vb │ │ │ │ ├── EventK.vb │ │ │ │ ├── EventL.vb │ │ │ │ ├── EventM.vb │ │ │ │ ├── EventN.vb │ │ │ │ ├── EventO.vb │ │ │ │ ├── EventP.vb │ │ │ │ ├── Event_exe.vb │ │ │ │ ├── ExpressionOverLoadMethodA.vb │ │ │ │ ├── ExpressionOverLoadMethodB.vb │ │ │ │ ├── ExpressionOverLoadMethodC.vb │ │ │ │ ├── FunctionArgu_ByReferenceA.vb │ │ │ │ ├── FunctionArgu_ByReferenceB.vb │ │ │ │ ├── FunctionArgu_ByReferenceC.vb │ │ │ │ ├── FunctionArgu_ByReferenceD.vb │ │ │ │ ├── FunctionArgu_ByValueA.vb │ │ │ │ ├── FunctionArgu_ByValueB.vb │ │ │ │ ├── FunctionArgu_ByValueC.vb │ │ │ │ ├── FunctionArgu_ByValueD.vb │ │ │ │ ├── Function_ParamArrayA.vb │ │ │ │ ├── Function_ParamArrayB.vb │ │ │ │ ├── Function_ParamArrayC.vb │ │ │ │ ├── Interface.vb │ │ │ │ ├── InterfaceA.vb │ │ │ │ ├── InterfaceB.vb │ │ │ │ ├── InterfaceC.vb │ │ │ │ ├── InterfaceD.vb │ │ │ │ ├── InterfaceE.vb │ │ │ │ ├── InterfaceF.vb │ │ │ │ ├── InterfaceG.vb │ │ │ │ ├── InterfaceH.vb │ │ │ │ ├── InterfaceI.vb │ │ │ │ ├── InterfaceJ.vb │ │ │ │ ├── InterfaceK.vb │ │ │ │ ├── InterfaceL.vb │ │ │ │ ├── InterfaceM.vb │ │ │ │ ├── InterfaceN.vb │ │ │ │ ├── InterfaceO.vb │ │ │ │ ├── InterfaceP.vb │ │ │ │ ├── InterfaceQ.vb │ │ │ │ ├── Makefile │ │ │ │ ├── MethodDeclarationA.vb │ │ │ │ ├── MethodDeclarationB.vb │ │ │ │ ├── MethodDeclarationC.vb │ │ │ │ ├── MethodDeclarationD.vb │ │ │ │ ├── MethodDeclarationE.vb │ │ │ │ ├── MethodDeclarationF.vb │ │ │ │ ├── NamedArgumentsA.vb │ │ │ │ ├── NamedArgumentsB.vb │ │ │ │ ├── OptionalA.vb │ │ │ │ ├── OptionalArgu_ByRefFuncA.vb │ │ │ │ ├── OptionalArgu_ByRefFuncB.vb │ │ │ │ ├── OptionalArgu_ByRefFuncC.vb │ │ │ │ ├── OptionalArgu_ByRefFuncD.vb │ │ │ │ ├── OptionalArgu_ByRefFuncE.vb │ │ │ │ ├── OptionalArgu_ByReferenceA.vb │ │ │ │ ├── OptionalArgu_ByReferenceB.vb │ │ │ │ ├── OptionalArgu_ByReferenceC.vb │ │ │ │ ├── OptionalArgu_ByReferenceD.vb │ │ │ │ ├── OptionalArgu_ByValFuncA.vb │ │ │ │ ├── OptionalArgu_ByValFuncB.vb │ │ │ │ ├── OptionalArgu_ByValFuncC.vb │ │ │ │ ├── OptionalArgu_ByValFuncD.vb │ │ │ │ ├── OptionalArgu_ByValFuncE.vb │ │ │ │ ├── OptionalArgu_ByValueA.vb │ │ │ │ ├── OptionalArgu_ByValueB.vb │ │ │ │ ├── OptionalArgu_ByValueC.vb │ │ │ │ ├── OptionalArgu_ByValueD.vb │ │ │ │ ├── OptionalArgu_ByValueE.vb │ │ │ │ ├── OptionalParamaters.vb │ │ │ │ ├── OverloadResolutionA.vb │ │ │ │ ├── OverloadResolutionB.vb │ │ │ │ ├── OverloadResolutionC.vb │ │ │ │ ├── OverloadResolutionD.vb │ │ │ │ ├── OverloadResolutionE.vb │ │ │ │ ├── ParamArrayA.vb │ │ │ │ ├── ParamArrayB.vb │ │ │ │ ├── PropertyA.vb │ │ │ │ ├── PropertyAsFunctionArgA.vb │ │ │ │ ├── PropertyB.vb │ │ │ │ ├── PropertyC.vb │ │ │ │ ├── PropertyD.vb │ │ │ │ ├── PropertyE.vb │ │ │ │ ├── PropertyF.vb │ │ │ │ ├── PropertyG.vb │ │ │ │ ├── PropertyH.vb │ │ │ │ ├── PropertyI.vb │ │ │ │ ├── PropertyJ.vb │ │ │ │ ├── PropertyK.vb │ │ │ │ ├── PropertyL.vb │ │ │ │ └── test-mbas.make │ │ │ │ └── types │ │ │ │ ├── ArrayA.vb │ │ │ │ ├── ArrayC.vb │ │ │ │ ├── ArrayD.vb │ │ │ │ ├── ArrayE.vb │ │ │ │ ├── ArrayF.vb │ │ │ │ ├── ArrayG.vb │ │ │ │ ├── ArrayH.vb │ │ │ │ ├── BoolLiteralA.vb │ │ │ │ ├── BoolLiteralTest.vb │ │ │ │ ├── ChangeLog │ │ │ │ ├── CharacterLiterals.vb │ │ │ │ ├── ClassTest.vb │ │ │ │ ├── DateLiterals.vb │ │ │ │ ├── DateLiteralsA.vb │ │ │ │ ├── DateLiteralsC12.vb │ │ │ │ ├── DecimalLiteral.vb │ │ │ │ ├── DecimalLiteralB.vb │ │ │ │ ├── DecimalLiteralTestA.vb │ │ │ │ ├── DecimalTypeCharTest.vb │ │ │ │ ├── DecimalTypeCharTestB.vb │ │ │ │ ├── DecimalTypeCharTestC2.vb │ │ │ │ ├── DelegateA.vb │ │ │ │ ├── DelegateD.vb │ │ │ │ ├── DelegateE.vb │ │ │ │ ├── DelegateF.vb │ │ │ │ ├── DelegateG.vb │ │ │ │ ├── Delegate_exe.vb │ │ │ │ ├── DoubleLiteral.vb │ │ │ │ ├── DoubleLiteralA.vb │ │ │ │ ├── DoubleLiteralB.vb │ │ │ │ ├── DoubleTypeCharTest.vb │ │ │ │ ├── DoubleTypeCharTestB.vb │ │ │ │ ├── DoubleTypeCharTestC2.vb │ │ │ │ ├── EnumA.vb │ │ │ │ ├── EnumB.vb │ │ │ │ ├── EnumC1.vb │ │ │ │ ├── EnumD.vb │ │ │ │ ├── GetType.vb │ │ │ │ ├── IntegerLiteral1Test.vb │ │ │ │ ├── IntegerLiteral2Test.vb │ │ │ │ ├── IntegerLiteralA.vb │ │ │ │ ├── IntegerLiteralB.vb │ │ │ │ ├── IntegerLiteralTest.vb │ │ │ │ ├── IntegerLiteralTestC4.vb │ │ │ │ ├── IntegerTypeCharTest.vb │ │ │ │ ├── IntegerTypeCharTestA.vb │ │ │ │ ├── IntegerTypeCharTestB.vb │ │ │ │ ├── IntegerTypeCharTestC2.vb │ │ │ │ ├── LiteralNothing.vb │ │ │ │ ├── LongLiteralA.vb │ │ │ │ ├── LongLiteralB.vb │ │ │ │ ├── LongTypeCharTest.vb │ │ │ │ ├── LongTypeCharTestB.vb │ │ │ │ ├── LongTypeCharTestC2.vb │ │ │ │ ├── Makefile │ │ │ │ ├── ModuleB.vb │ │ │ │ ├── ModuleTest.vb │ │ │ │ ├── SingleLiteral.vb │ │ │ │ ├── SingleLiteralA.vb │ │ │ │ ├── SingleLiteralB.vb │ │ │ │ ├── SingleTypeCharTest.vb │ │ │ │ ├── SingleTypeCharTestA.vb │ │ │ │ ├── SingleTypeCharTestB.vb │ │ │ │ ├── SingleTypeCharTestC2.vb │ │ │ │ ├── StringLiteralTest.vb │ │ │ │ ├── StringLiterals.vb │ │ │ │ ├── StringLiteralsA.vb │ │ │ │ ├── StringTypeCharTest.vb │ │ │ │ ├── StringTypeCharTestA.vb │ │ │ │ ├── StringTypeCharTestB.vb │ │ │ │ ├── StringTypeCharTestC2.vb │ │ │ │ ├── StructureA.vb │ │ │ │ ├── StructureB.vb │ │ │ │ ├── TypeObjectA.vb │ │ │ │ ├── TypeOf.vb │ │ │ │ ├── TypeStructureA.vb │ │ │ │ ├── TypeValRefA.vb │ │ │ │ ├── TypeValRefArrayA.vb │ │ │ │ ├── TypeValRefB.vb │ │ │ │ ├── TypeValRefC.vb │ │ │ │ ├── TypeValRefStringA.vb │ │ │ │ └── test-mbas.make │ │ ├── readme.txt │ │ └── testsuite │ │ │ ├── TestUtils.vb │ │ │ ├── arraytest.vb │ │ │ ├── attrtest.vb │ │ │ ├── enum_struct_test.vb │ │ │ ├── paramtest.vb │ │ │ └── testmbas.sh │ ├── standalone.tests.J2EE.build_and_run.bat │ ├── standalone.tests.build.bat │ ├── standalone.tests.run.bat │ └── standalone │ │ ├── 12141.vb │ │ ├── 12148.vb │ │ ├── 12149.vb │ │ ├── 12154.vb │ │ ├── 12164.vb │ │ ├── 12179.vb │ │ ├── 12206.vb │ │ ├── 12207.vb │ │ ├── 12216.vb │ │ ├── 12217.vb │ │ ├── 12218.vb │ │ ├── 12219.vb │ │ ├── 12220.vb │ │ ├── 12221.vb │ │ ├── 12222.vb │ │ ├── 12223.vb │ │ ├── 12224.vb │ │ ├── 12225.vb │ │ ├── 12289.vb │ │ ├── 12292.vb │ │ ├── 12293.vb │ │ ├── 12294.vb │ │ ├── 12295.vb │ │ ├── 12296.vb │ │ ├── 12297.vb │ │ ├── 12298.vb │ │ ├── 12299.vb │ │ ├── 12300.vb │ │ ├── 12301.vb │ │ ├── 12302.vb │ │ ├── 12303.vb │ │ ├── 12304.vb │ │ ├── 12305.vb │ │ ├── 12306.vb │ │ ├── 12307.vb │ │ ├── 12308.vb │ │ ├── 12309.vb │ │ ├── 12310.vb │ │ ├── 12311.vb │ │ ├── 12312.vb │ │ ├── 12314.vb │ │ ├── 12315.vb │ │ ├── 12316.vb │ │ ├── 12317.vb │ │ ├── 12318.vb │ │ ├── 12333.vb │ │ ├── 12334.vb │ │ ├── 12336.vb │ │ ├── 13255.vb │ │ ├── 5001.vb │ │ ├── 5002.vb │ │ ├── 5003.vb │ │ ├── 5004.vb │ │ ├── 5005.vb │ │ ├── 5006.vb │ │ ├── 5007.vb │ │ ├── 5008.vb │ │ ├── 5009.vb │ │ ├── 5010.vb │ │ ├── 5011.vb │ │ ├── 5012.vb │ │ ├── 5021.vb │ │ ├── 5022.vb │ │ ├── 5023.vb │ │ ├── 5024.vb │ │ ├── 5025.vb │ │ ├── 5026.vb │ │ ├── 5027.vb │ │ ├── 5031.vb │ │ ├── 5032.vb │ │ ├── 5033.vb │ │ ├── 5034.vb │ │ ├── 5035.vb │ │ ├── 5036.vb │ │ ├── 5041.vb │ │ ├── 5042.vb │ │ ├── 5043.vb │ │ ├── 5044.vb │ │ ├── 5045.vb │ │ ├── 5051.vb │ │ ├── 5052.vb │ │ ├── 5053.vb │ │ ├── 5054.vb │ │ ├── 5055.vb │ │ ├── 5056.vb │ │ ├── 5057.vb │ │ ├── 5058.vb │ │ ├── 5059.vb │ │ ├── 5060.vb │ │ ├── 5061.vb │ │ ├── 5062.vb │ │ ├── 5063.vb │ │ ├── 5064.vb │ │ ├── 5065.vb │ │ ├── 5066.vb │ │ ├── 5067.vb │ │ ├── 5068.vb │ │ ├── 5069.vb │ │ ├── 5070.vb │ │ ├── 5075.vb │ │ ├── 5076.vb │ │ ├── 5077.vb │ │ ├── 5078.vb │ │ ├── 5079.vb │ │ ├── 5080.vb │ │ ├── 5081.vb │ │ ├── 5082.vb │ │ ├── 5083.vb │ │ ├── 5084.vb │ │ ├── 5085.vb │ │ ├── 5086.vb │ │ ├── 5087.vb │ │ ├── 5088.vb │ │ ├── 5089.vb │ │ ├── 5090.vb │ │ ├── 5091.vb │ │ ├── 5092.vb │ │ ├── 5093.vb │ │ ├── 5094.vb │ │ ├── 5095.vb │ │ ├── 5096.vb │ │ ├── 5097.vb │ │ ├── 5098.vb │ │ ├── 5099.vb │ │ ├── 5100.vb │ │ ├── 5101.vb │ │ ├── 5102.vb │ │ ├── 5103.vb │ │ ├── 5104.vb │ │ ├── 5105.vb │ │ ├── 5106.vb │ │ ├── 5107.vb │ │ ├── 5108.vb │ │ ├── 5109.vb │ │ ├── 5110.vb │ │ ├── 5111.vb │ │ ├── 5112.vb │ │ ├── 5113.vb │ │ ├── 5114.vb │ │ ├── 5115.vb │ │ ├── 5116.vb │ │ ├── 5117.vb │ │ ├── 5118.vb │ │ ├── 5119.vb │ │ ├── 5120.vb │ │ ├── 5121.vb │ │ ├── 5122.vb │ │ ├── 5123.vb │ │ ├── 5124.vb │ │ ├── 5125.vb │ │ ├── 5126.vb │ │ ├── 5127.vb │ │ ├── 5128.vb │ │ ├── 5129.vb │ │ ├── 5130.vb │ │ ├── 5131.vb │ │ ├── 5132.vb │ │ ├── 5133.vb │ │ ├── 5134.vb │ │ ├── 5135.vb │ │ ├── 5136.vb │ │ ├── 5137.vb │ │ ├── 5138.vb │ │ ├── 5139.vb │ │ ├── 5140.vb │ │ ├── 5141.vb │ │ ├── 5142.vb │ │ ├── 5143.vb │ │ ├── 5144.vb │ │ ├── 5145.vb │ │ ├── 5200.txt │ │ ├── 5200.vb │ │ ├── 5201.vb │ │ ├── 5202.vb │ │ ├── 5203.txt │ │ ├── 5203.vb │ │ ├── 5204.txt │ │ ├── 5204.vb │ │ ├── 5205.txt │ │ ├── 5205.vb │ │ ├── 5206.txt │ │ ├── 5206.vb │ │ ├── 5207.txt │ │ ├── 5207.vb │ │ ├── 5208.txt │ │ ├── 5208.vb │ │ ├── 5209.vb │ │ ├── 5210.txt │ │ ├── 5210.vb │ │ ├── 5211.txt │ │ ├── 5211.vb │ │ ├── 5212.txt │ │ ├── 5212.vb │ │ ├── 5213.txt │ │ ├── 5213.vb │ │ ├── 5214.txt │ │ ├── 5214.vb │ │ ├── 5215.txt │ │ ├── 5215.vb │ │ ├── 5216.txt │ │ ├── 5216.vb │ │ ├── 5217.txt │ │ ├── 5217.vb │ │ ├── 5218.vb │ │ ├── 5219.vb │ │ ├── 5220.vb │ │ ├── 5221.vb │ │ ├── 5222.vb │ │ ├── 5223.txt │ │ ├── 5223.vb │ │ ├── 5224.txt │ │ ├── 5224.vb │ │ ├── 5225.vb │ │ ├── 5226.txt │ │ ├── 5226.vb │ │ ├── 5227.txt │ │ ├── 5227.vb │ │ ├── 5228.txt │ │ ├── 5228.vb │ │ ├── 5229.txt │ │ ├── 5229.vb │ │ ├── 5230.txt │ │ ├── 5230.vb │ │ ├── 5231.vb │ │ ├── 5232.vb │ │ ├── 5233.vb │ │ ├── 5234.txt │ │ ├── 5234.vb │ │ ├── 5235.txt │ │ ├── 5235.vb │ │ ├── 5236.txt │ │ ├── 5236.vb │ │ ├── 5237.txt │ │ ├── 5237.vb │ │ ├── 5238.txt │ │ ├── 5238.vb │ │ ├── 5239.txt │ │ ├── 5239.vb │ │ ├── 5240.txt │ │ ├── 5240.vb │ │ ├── 5241.txt │ │ ├── 5241.vb │ │ ├── 5242.txt │ │ ├── 5242.vb │ │ ├── 5243.txt │ │ ├── 5243.vb │ │ ├── 5244.txt │ │ ├── 5244.vb │ │ ├── 5245.txt │ │ ├── 5245.vb │ │ ├── 5246.txt │ │ ├── 5246.vb │ │ ├── 5247.txt │ │ ├── 5247.vb │ │ ├── 5248.vb │ │ ├── 5249.vb │ │ ├── 5250.vb │ │ ├── 5251.txt │ │ ├── 5251.vb │ │ ├── 5252.vb │ │ ├── 5253.txt │ │ ├── 5253.vb │ │ ├── 5254.txt │ │ ├── 5254.vb │ │ ├── 5255.vb │ │ ├── 5256.txt │ │ ├── 5256.vb │ │ ├── 5257.vb │ │ ├── 5258.vb │ │ ├── 6480.vb │ │ ├── 6490.vb │ │ ├── 6493.vb │ │ ├── 6495.vb │ │ ├── 6499.vb │ │ ├── 6539.vb │ │ ├── 6540.vb │ │ ├── 6541.vb │ │ ├── 6568.vb │ │ ├── 6569.vb │ │ ├── 6581.vb │ │ ├── 6582.vb │ │ ├── 6583.vb │ │ ├── 6584.vb │ │ ├── 6585.vb │ │ ├── 6586.vb │ │ ├── 6607.vb │ │ ├── 6608.vb │ │ ├── 6609.vb │ │ ├── 6613.vb │ │ ├── 6614.vb │ │ ├── 6615.vb │ │ ├── 6628.vb │ │ ├── 6630.vb │ │ ├── 6631.vb │ │ ├── 6638.vb │ │ ├── 6665.vb │ │ ├── 6666.vb │ │ ├── 6674.vb │ │ ├── 6675.vb │ │ ├── 6736.vb │ │ ├── 6748.txt │ │ ├── 6748.vb │ │ ├── 6786.vb │ │ ├── 6794.vb │ │ ├── 6797.vb │ │ ├── 6798.vb │ │ ├── 6799.vb │ │ ├── 6829.vb │ │ ├── 6873.vb │ │ ├── 6874.vb │ │ ├── 6875.vb │ │ ├── 6876.vb │ │ ├── 6877.vb │ │ ├── 6879.vb │ │ ├── 6880.vb │ │ ├── 6881.vb │ │ ├── 6882.vb │ │ ├── 6883.vb │ │ ├── 6884.vb │ │ ├── 6885.vb │ │ ├── 6922.vb │ │ ├── 6923.vb │ │ ├── 6924.vb │ │ ├── 6925.vb │ │ ├── 6926.vb │ │ ├── 6927.vb │ │ ├── 6928.vb │ │ ├── 6933.vb │ │ ├── 6939.vb │ │ ├── 6945.vb │ │ ├── 6946.vb │ │ ├── 6949.vb │ │ ├── 6954.vb │ │ ├── 6956.vb │ │ ├── 6960.vb │ │ ├── 6961.vb │ │ ├── 6962.vb │ │ ├── 6963.vb │ │ ├── 6964.vb │ │ ├── 6965.vb │ │ ├── 6966.vb │ │ ├── 6967.vb │ │ ├── 6968.vb │ │ ├── 6969.vb │ │ ├── 6970.vb │ │ ├── 6972.vb │ │ ├── 6973.vb │ │ ├── 6974.vb │ │ ├── 6975.vb │ │ ├── 6976.vb │ │ ├── 6977.vb │ │ ├── 6978.vb │ │ ├── 6979.vb │ │ ├── 6980.vb │ │ ├── 6981.vb │ │ ├── 6982.vb │ │ ├── 6983.vb │ │ ├── 6984.vb │ │ ├── 6985.vb │ │ ├── 6986.vb │ │ ├── 6987.vb │ │ ├── 6988.vb │ │ ├── 6989.vb │ │ ├── 6990.vb │ │ ├── 6991.vb │ │ ├── 6994.vb │ │ ├── 6995.vb │ │ ├── 6996.vb │ │ ├── 7001.vb │ │ ├── 7002.vb │ │ ├── 7003.vb │ │ ├── 7004.vb │ │ ├── 7005.vb │ │ ├── 7006.vb │ │ ├── 7007.vb │ │ ├── 7008.vb │ │ ├── 7009.vb │ │ ├── 7010.vb │ │ ├── 7011.vb │ │ ├── 7012.vb │ │ ├── 7013.vb │ │ ├── 7014.vb │ │ ├── 7015.vb │ │ ├── 7017.vb │ │ ├── 7018.vb │ │ ├── 7019.vb │ │ ├── 7020.vb │ │ ├── 7021.vb │ │ ├── ChangeLog │ │ ├── MainModule.vb │ │ ├── Makefile │ │ └── execute.sh ├── OtherTests │ ├── ChangeLog │ └── WindowsApplication1 │ │ ├── Form1.Designer.vb │ │ ├── Form1.vb │ │ ├── My Project │ │ ├── Application.Designer.vb │ │ ├── Application.myapp │ │ ├── AssemblyInfo.vb │ │ ├── Resources.Designer.vb │ │ ├── Resources.resx │ │ ├── Settings.Designer.vb │ │ └── Settings.settings │ │ ├── WindowsApplication1.sln │ │ ├── WindowsApplication1.vbproj │ │ └── bin │ │ └── Debug │ │ ├── WindowsApplication1.exe │ │ ├── WindowsApplication1.exe.manifest │ │ └── WindowsApplication1.pdb ├── README.txt ├── Tester.vb └── bin │ ├── nunit-console.exe.config │ ├── nunit-console1.exe.config │ └── nunit-console2.exe.config ├── VB.J2EE.build.bat ├── VB.build.bat ├── VB.replace.bat ├── VB.restore.bat ├── VB_TESTS.J2EE.build.bat ├── makefile.build ├── msfinal.pub ├── readme.txt ├── run-tests.bat ├── run-tests.cs.bat ├── run-tests.vb.bat ├── vbnc.tests.build.bat └── vbnc.tests.run.bat /.gitattributes: -------------------------------------------------------------------------------- 1 | tests.xml eol=lf 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE-OF-CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/CODE-OF-CONDUCT.md -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/ChangeLog -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/Makefile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/README -------------------------------------------------------------------------------- /class/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/class/Makefile -------------------------------------------------------------------------------- /class/lib/bootstrap/vbnc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/class/lib/bootstrap/vbnc.exe -------------------------------------------------------------------------------- /class/lib/bootstrap/vbnc.exe.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/class/lib/bootstrap/vbnc.exe.mdb -------------------------------------------------------------------------------- /class/lib/bootstrap/vbnc.rsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/class/lib/bootstrap/vbnc.rsp -------------------------------------------------------------------------------- /class/mono.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/class/mono.snk -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/configure -------------------------------------------------------------------------------- /install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/install-sh -------------------------------------------------------------------------------- /man/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/man/ChangeLog -------------------------------------------------------------------------------- /man/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/man/Makefile -------------------------------------------------------------------------------- /man/vbnc.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/man/vbnc.1 -------------------------------------------------------------------------------- /mkinstalldirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/mkinstalldirs -------------------------------------------------------------------------------- /mono-basic.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/mono-basic.spec.in -------------------------------------------------------------------------------- /scripts/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/scripts/Makefile -------------------------------------------------------------------------------- /scripts/vbnc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/scripts/vbnc.in -------------------------------------------------------------------------------- /scripts/vbnc2.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/scripts/vbnc2.in -------------------------------------------------------------------------------- /tools/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/tools/ChangeLog -------------------------------------------------------------------------------- /tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/tools/Makefile -------------------------------------------------------------------------------- /tools/extract-source/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/tools/extract-source/Makefile -------------------------------------------------------------------------------- /tools/extract-source/extract-source.exe.sources: -------------------------------------------------------------------------------- 1 | extract-source.vb 2 | 3 | -------------------------------------------------------------------------------- /tools/moonlight/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/tools/moonlight/ChangeLog -------------------------------------------------------------------------------- /tools/moonlight/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/tools/moonlight/Makefile -------------------------------------------------------------------------------- /tools/moonlight/tuner.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/tools/moonlight/tuner.vb -------------------------------------------------------------------------------- /vbnc/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/ChangeLog -------------------------------------------------------------------------------- /vbnc/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/License.txt -------------------------------------------------------------------------------- /vbnc/LicenseFileHeader.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/LicenseFileHeader.txt -------------------------------------------------------------------------------- /vbnc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/Makefile -------------------------------------------------------------------------------- /vbnc/cecil/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/cecil/.gitattributes -------------------------------------------------------------------------------- /vbnc/cecil/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/cecil/.gitignore -------------------------------------------------------------------------------- /vbnc/cecil/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/cecil/LICENSE.md -------------------------------------------------------------------------------- /vbnc/cecil/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/cecil/Makefile -------------------------------------------------------------------------------- /vbnc/cecil/Mono.Cecil.Cil/Code.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/cecil/Mono.Cecil.Cil/Code.cs -------------------------------------------------------------------------------- /vbnc/cecil/Mono.Cecil.Cil/OpCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/cecil/Mono.Cecil.Cil/OpCode.cs -------------------------------------------------------------------------------- /vbnc/cecil/Mono.Cecil.Cil/OpCodes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/cecil/Mono.Cecil.Cil/OpCodes.cs -------------------------------------------------------------------------------- /vbnc/cecil/Mono.Cecil.Cil/Symbols.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/cecil/Mono.Cecil.Cil/Symbols.cs -------------------------------------------------------------------------------- /vbnc/cecil/Mono.Cecil.PE/Image.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/cecil/Mono.Cecil.PE/Image.cs -------------------------------------------------------------------------------- /vbnc/cecil/Mono.Cecil.PE/Section.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/cecil/Mono.Cecil.PE/Section.cs -------------------------------------------------------------------------------- /vbnc/cecil/Mono.Cecil.PE/TextMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/cecil/Mono.Cecil.PE/TextMap.cs -------------------------------------------------------------------------------- /vbnc/cecil/Mono.Cecil.Tests.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/cecil/Mono.Cecil.Tests.settings -------------------------------------------------------------------------------- /vbnc/cecil/Mono.Cecil.VB.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/cecil/Mono.Cecil.VB.csproj -------------------------------------------------------------------------------- /vbnc/cecil/Mono.Cecil.VB.dll.sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/cecil/Mono.Cecil.VB.dll.sources -------------------------------------------------------------------------------- /vbnc/cecil/Mono.Cecil.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/cecil/Mono.Cecil.csproj -------------------------------------------------------------------------------- /vbnc/cecil/Mono.Cecil.nunit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/cecil/Mono.Cecil.nunit -------------------------------------------------------------------------------- /vbnc/cecil/Mono.Cecil.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/cecil/Mono.Cecil.nuspec -------------------------------------------------------------------------------- /vbnc/cecil/Mono.Cecil.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/cecil/Mono.Cecil.settings -------------------------------------------------------------------------------- /vbnc/cecil/Mono.Cecil.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/cecil/Mono.Cecil.sln -------------------------------------------------------------------------------- /vbnc/cecil/Mono.Cecil/ArrayType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/cecil/Mono.Cecil/ArrayType.cs -------------------------------------------------------------------------------- /vbnc/cecil/Mono.Cecil/CallSite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/cecil/Mono.Cecil/CallSite.cs -------------------------------------------------------------------------------- /vbnc/cecil/Mono.Cecil/Import.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/cecil/Mono.Cecil/Import.cs -------------------------------------------------------------------------------- /vbnc/cecil/Mono.Cecil/MarshalInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/cecil/Mono.Cecil/MarshalInfo.cs -------------------------------------------------------------------------------- /vbnc/cecil/Mono.Cecil/Modifiers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/cecil/Mono.Cecil/Modifiers.cs -------------------------------------------------------------------------------- /vbnc/cecil/Mono.Cecil/ModuleKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/cecil/Mono.Cecil/ModuleKind.cs -------------------------------------------------------------------------------- /vbnc/cecil/Mono.Cecil/NativeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/cecil/Mono.Cecil/NativeType.cs -------------------------------------------------------------------------------- /vbnc/cecil/Mono.Cecil/PInvokeInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/cecil/Mono.Cecil/PInvokeInfo.cs -------------------------------------------------------------------------------- /vbnc/cecil/Mono.Cecil/PinnedType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/cecil/Mono.Cecil/PinnedType.cs -------------------------------------------------------------------------------- /vbnc/cecil/Mono.Cecil/PointerType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/cecil/Mono.Cecil/PointerType.cs -------------------------------------------------------------------------------- /vbnc/cecil/Mono.Cecil/Resource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/cecil/Mono.Cecil/Resource.cs -------------------------------------------------------------------------------- /vbnc/cecil/Mono.Cecil/TypeParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/cecil/Mono.Cecil/TypeParser.cs -------------------------------------------------------------------------------- /vbnc/cecil/Mono.Cecil/TypeSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/cecil/Mono.Cecil/TypeSystem.cs -------------------------------------------------------------------------------- /vbnc/cecil/Mono.Cecil/VariantType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/cecil/Mono.Cecil/VariantType.cs -------------------------------------------------------------------------------- /vbnc/cecil/Mono/Actions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/cecil/Mono/Actions.cs -------------------------------------------------------------------------------- /vbnc/cecil/Mono/Empty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/cecil/Mono/Empty.cs -------------------------------------------------------------------------------- /vbnc/cecil/Mono/Funcs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/cecil/Mono/Funcs.cs -------------------------------------------------------------------------------- /vbnc/cecil/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/cecil/README.md -------------------------------------------------------------------------------- /vbnc/cecil/Test/Resources/assemblies/text_file.txt: -------------------------------------------------------------------------------- 1 | Cecil ftw! 2 | -------------------------------------------------------------------------------- /vbnc/cecil/mono.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/cecil/mono.snk -------------------------------------------------------------------------------- /vbnc/cecil/symbols/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/cecil/symbols/Makefile -------------------------------------------------------------------------------- /vbnc/cecil/symbols/mdb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/cecil/symbols/mdb/Makefile -------------------------------------------------------------------------------- /vbnc/cecil/symbols/pdb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/cecil/symbols/pdb/Makefile -------------------------------------------------------------------------------- /vbnc/msg-generator/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/msg-generator/ChangeLog -------------------------------------------------------------------------------- /vbnc/msg-generator/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/msg-generator/Makefile -------------------------------------------------------------------------------- /vbnc/msg-generator/Message.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/msg-generator/Message.vb -------------------------------------------------------------------------------- /vbnc/msg-generator/Messages.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/msg-generator/Messages.vb -------------------------------------------------------------------------------- /vbnc/msg-generator/ResGen.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/msg-generator/ResGen.vb -------------------------------------------------------------------------------- /vbnc/msg-generator/build.bat: -------------------------------------------------------------------------------- 1 | vbnc.exe @rsp.txt 2 | if errorlevel 1 pause -------------------------------------------------------------------------------- /vbnc/msg-generator/msg-generator.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/msg-generator/msg-generator.sln -------------------------------------------------------------------------------- /vbnc/msg-generator/rsp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/msg-generator/rsp.txt -------------------------------------------------------------------------------- /vbnc/rt/.gitignore: -------------------------------------------------------------------------------- 1 | bin 2 | rt.exe.sources 3 | 4 | -------------------------------------------------------------------------------- /vbnc/rt/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/rt/ChangeLog -------------------------------------------------------------------------------- /vbnc/rt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/rt/Makefile -------------------------------------------------------------------------------- /vbnc/rt/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/rt/Readme.txt -------------------------------------------------------------------------------- /vbnc/rt/source/AssemblyInfo.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/rt/source/AssemblyInfo.vb -------------------------------------------------------------------------------- /vbnc/rt/source/CecilCompare.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/rt/source/CecilCompare.vb -------------------------------------------------------------------------------- /vbnc/rt/source/CecilComparer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/rt/source/CecilComparer.vb -------------------------------------------------------------------------------- /vbnc/rt/source/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/rt/source/ChangeLog -------------------------------------------------------------------------------- /vbnc/rt/source/CommandLine.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/rt/source/CommandLine.vb -------------------------------------------------------------------------------- /vbnc/rt/source/ConsoleRunner.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/rt/source/ConsoleRunner.vb -------------------------------------------------------------------------------- /vbnc/rt/source/ErrorInfo.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/rt/source/ErrorInfo.vb -------------------------------------------------------------------------------- /vbnc/rt/source/FileTabPage.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/rt/source/FileTabPage.resx -------------------------------------------------------------------------------- /vbnc/rt/source/FileTabPage.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/rt/source/FileTabPage.vb -------------------------------------------------------------------------------- /vbnc/rt/source/Helper.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/rt/source/Helper.vb -------------------------------------------------------------------------------- /vbnc/rt/source/Main.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/rt/source/Main.vb -------------------------------------------------------------------------------- /vbnc/rt/source/Settings.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/rt/source/Settings.vb -------------------------------------------------------------------------------- /vbnc/rt/source/Test.MyTypes.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/rt/source/Test.MyTypes.vb -------------------------------------------------------------------------------- /vbnc/rt/source/Test.Results.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/rt/source/Test.Results.vb -------------------------------------------------------------------------------- /vbnc/rt/source/Test.Targets.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/rt/source/Test.Targets.vb -------------------------------------------------------------------------------- /vbnc/rt/source/Test.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/rt/source/Test.vb -------------------------------------------------------------------------------- /vbnc/rt/source/TestExecutor.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/rt/source/TestExecutor.vb -------------------------------------------------------------------------------- /vbnc/rt/source/TestView.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/rt/source/TestView.vb -------------------------------------------------------------------------------- /vbnc/rt/source/Tests.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/rt/source/Tests.vb -------------------------------------------------------------------------------- /vbnc/rt/source/VerificationBase.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/rt/source/VerificationBase.vb -------------------------------------------------------------------------------- /vbnc/rt/source/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/rt/source/app.config -------------------------------------------------------------------------------- /vbnc/rt/source/frmFiles.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/rt/source/frmFiles.Designer.vb -------------------------------------------------------------------------------- /vbnc/rt/source/frmFiles.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/rt/source/frmFiles.resx -------------------------------------------------------------------------------- /vbnc/rt/source/frmFiles.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/rt/source/frmFiles.vb -------------------------------------------------------------------------------- /vbnc/rt/source/frmMain.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/rt/source/frmMain.Designer.vb -------------------------------------------------------------------------------- /vbnc/rt/source/frmMain.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/rt/source/frmMain.resx -------------------------------------------------------------------------------- /vbnc/rt/source/frmMain.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/rt/source/frmMain.vb -------------------------------------------------------------------------------- /vbnc/rt/source/frmNewTest.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/rt/source/frmNewTest.resx -------------------------------------------------------------------------------- /vbnc/rt/source/frmNewTest.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/rt/source/frmNewTest.vb -------------------------------------------------------------------------------- /vbnc/rt/source/rt.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/rt/source/rt.sln -------------------------------------------------------------------------------- /vbnc/rt/source/rt.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/rt/source/rt.vbproj -------------------------------------------------------------------------------- /vbnc/vbnc/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/ChangeLog -------------------------------------------------------------------------------- /vbnc/vbnc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/Makefile -------------------------------------------------------------------------------- /vbnc/vbnc/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/Readme.txt -------------------------------------------------------------------------------- /vbnc/vbnc/setversion.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/setversion.sh -------------------------------------------------------------------------------- /vbnc/vbnc/source/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/source/ChangeLog -------------------------------------------------------------------------------- /vbnc/vbnc/source/Code/CodeBlock.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/source/Code/CodeBlock.vb -------------------------------------------------------------------------------- /vbnc/vbnc/source/Emit/EmitInfo.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/source/Emit/EmitInfo.vb -------------------------------------------------------------------------------- /vbnc/vbnc/source/Emit/EmitLog.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/source/Emit/EmitLog.vb -------------------------------------------------------------------------------- /vbnc/vbnc/source/Emit/Emitter.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/source/Emit/Emitter.vb -------------------------------------------------------------------------------- /vbnc/vbnc/source/Enums/Enums.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/source/Enums/Enums.vb -------------------------------------------------------------------------------- /vbnc/vbnc/source/Enums/KS.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/source/Enums/KS.vb -------------------------------------------------------------------------------- /vbnc/vbnc/source/Enums/Operators.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/source/Enums/Operators.vb -------------------------------------------------------------------------------- /vbnc/vbnc/source/Enums/TokenType.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/source/Enums/TokenType.vb -------------------------------------------------------------------------------- /vbnc/vbnc/source/General/CodeFile.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/source/General/CodeFile.vb -------------------------------------------------------------------------------- /vbnc/vbnc/source/General/Compiler.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/source/General/Compiler.vb -------------------------------------------------------------------------------- /vbnc/vbnc/source/General/Define.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/source/General/Define.vb -------------------------------------------------------------------------------- /vbnc/vbnc/source/General/Defines.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/source/General/Defines.vb -------------------------------------------------------------------------------- /vbnc/vbnc/source/General/Helper.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/source/General/Helper.vb -------------------------------------------------------------------------------- /vbnc/vbnc/source/General/Index.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/source/General/Index.vb -------------------------------------------------------------------------------- /vbnc/vbnc/source/General/Main.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/source/General/Main.vb -------------------------------------------------------------------------------- /vbnc/vbnc/source/General/Message.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/source/General/Message.vb -------------------------------------------------------------------------------- /vbnc/vbnc/source/General/Messages.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/source/General/Messages.vb -------------------------------------------------------------------------------- /vbnc/vbnc/source/General/Report.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/source/General/Report.vb -------------------------------------------------------------------------------- /vbnc/vbnc/source/General/Resource.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/source/General/Resource.vb -------------------------------------------------------------------------------- /vbnc/vbnc/source/General/Scanner.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/source/General/Scanner.vb -------------------------------------------------------------------------------- /vbnc/vbnc/source/General/TypeList.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/source/General/TypeList.vb -------------------------------------------------------------------------------- /vbnc/vbnc/source/General/Version.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/source/General/Version.vb -------------------------------------------------------------------------------- /vbnc/vbnc/source/Interfaces/IType.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/source/Interfaces/IType.vb -------------------------------------------------------------------------------- /vbnc/vbnc/source/Members/BaseList.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/source/Members/BaseList.vb -------------------------------------------------------------------------------- /vbnc/vbnc/source/Members/Operand.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/source/Members/Operand.vb -------------------------------------------------------------------------------- /vbnc/vbnc/source/Names/Identifier.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/source/Names/Identifier.vb -------------------------------------------------------------------------------- /vbnc/vbnc/source/Notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/source/Notes.txt -------------------------------------------------------------------------------- /vbnc/vbnc/source/Parser/Parser.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/source/Parser/Parser.vb -------------------------------------------------------------------------------- /vbnc/vbnc/source/Tokens/Span.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/source/Tokens/Span.vb -------------------------------------------------------------------------------- /vbnc/vbnc/source/Tokens/Token.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/source/Tokens/Token.vb -------------------------------------------------------------------------------- /vbnc/vbnc/source/Types/Constraint.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/source/Types/Constraint.vb -------------------------------------------------------------------------------- /vbnc/vbnc/source/Types/Nameables.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/source/Types/Nameables.vb -------------------------------------------------------------------------------- /vbnc/vbnc/source/Types/TypeName.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/source/Types/TypeName.vb -------------------------------------------------------------------------------- /vbnc/vbnc/source/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/source/app.config -------------------------------------------------------------------------------- /vbnc/vbnc/source/vbnc.rsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/source/vbnc.rsp -------------------------------------------------------------------------------- /vbnc/vbnc/source/vbnc.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/source/vbnc.sln -------------------------------------------------------------------------------- /vbnc/vbnc/source/vbnc.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/source/vbnc.vbproj -------------------------------------------------------------------------------- /vbnc/vbnc/tests/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/.gitignore -------------------------------------------------------------------------------- /vbnc/vbnc/tests/1Declarations/ArrayType1.vb: -------------------------------------------------------------------------------- 1 | class ArrayType1 2 | public i as integer() 3 | end class -------------------------------------------------------------------------------- /vbnc/vbnc/tests/1Declarations/ArrayType2.vb: -------------------------------------------------------------------------------- 1 | class ArrayType2 2 | Public i As Integer(,) 3 | end class -------------------------------------------------------------------------------- /vbnc/vbnc/tests/1Declarations/ArrayType3.vb: -------------------------------------------------------------------------------- 1 | class ArrayType3 2 | Public i(,) As Integer 3 | end class -------------------------------------------------------------------------------- /vbnc/vbnc/tests/1Declarations/DebugReflection.response: -------------------------------------------------------------------------------- 1 | -target:library -------------------------------------------------------------------------------- /vbnc/vbnc/tests/1Declarations/Partial8.vb: -------------------------------------------------------------------------------- 1 | Class Partial8 2 | End Class 3 | -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Bin/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Bin/Makefile -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Bin/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Bin/README -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Bugs/30145-bug-328101.response: -------------------------------------------------------------------------------- 1 | -linkresource:foo.res 2 | -target:library 3 | -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Bugs/30145-bug-328101.vb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Bugs/30420-bug-74955-2.response: -------------------------------------------------------------------------------- 1 | /target:winexe 2 | -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Bugs/30420-bug-74955.response: -------------------------------------------------------------------------------- 1 | /target:winexe /r:System.Windows.Forms.dll 2 | -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Bugs/31027-bug-328101.response: -------------------------------------------------------------------------------- 1 | -resource:foo.res 2 | -target:library 3 | 4 | -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Bugs/31027-bug-328101.vb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Bugs/aspnet1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Bugs/aspnet1.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Bugs/aspnet2.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Bugs/aspnet2.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Bugs/aspnet3.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Bugs/aspnet3.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Bugs/bug-12861.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Bugs/bug-12861.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Bugs/bug-15863.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Bugs/bug-15863.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Bugs/bug-2087.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Bugs/bug-2087.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Bugs/bug-320964.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Bugs/bug-320964.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Bugs/bug-325331.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Bugs/bug-325331.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Bugs/bug-325332.response: -------------------------------------------------------------------------------- 1 | -target:library 2 | -doc:foo.xml 3 | -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Bugs/bug-325332.vb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Bugs/bug-325339.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Bugs/bug-325339.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Bugs/bug-325346.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Bugs/bug-325346.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Bugs/bug-325976-2.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Bugs/bug-325976-2.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Bugs/bug-325976.vb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Bugs/bug-327596.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Bugs/bug-327596.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Bugs/bug-332868.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Bugs/bug-332868.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Bugs/bug-333403.rsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Bugs/bug-333403.rsp -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Bugs/bug-333403.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Bugs/bug-333403.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Bugs/bug-333962.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Bugs/bug-333962.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Bugs/bug-359234-ProtectedDefaultBaseCtor.response: -------------------------------------------------------------------------------- 1 | -target:library 2 | -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Bugs/bug-3769.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Bugs/bug-3769.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Bugs/bug-392456.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Bugs/bug-392456.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Bugs/bug-428340-2.rsp: -------------------------------------------------------------------------------- 1 | /rootnamespace:A 2 | bug-428340.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Bugs/bug-428340-2.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Bugs/bug-428340-2.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Bugs/bug-428340.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Bugs/bug-428340.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Bugs/bug-433952.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Bugs/bug-433952.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Bugs/bug-434288.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Bugs/bug-434288.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Bugs/bug-438656.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Bugs/bug-438656.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Bugs/bug-438669.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Bugs/bug-438669.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Bugs/bug-438672.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Bugs/bug-438672.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Bugs/bug-438683.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Bugs/bug-438683.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Bugs/bug-444120.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Bugs/bug-444120.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Bugs/bug-444811.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Bugs/bug-444811.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Bugs/bug-444993.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Bugs/bug-444993.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Bugs/bug-445479.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Bugs/bug-445479.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Bugs/bug-504791.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Bugs/bug-504791.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Bugs/bug-504822.response: -------------------------------------------------------------------------------- 1 | /target:library 2 | -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Bugs/bug-504822.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Bugs/bug-504822.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Bugs/bug-547165.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Bugs/bug-547165.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Bugs/bug-5630.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Bugs/bug-5630.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Bugs/bug-629103.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Bugs/bug-629103.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Bugs/bug-629369.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Bugs/bug-629369.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Bugs/bug-629370.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Bugs/bug-629370.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Bugs/bug-629373.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Bugs/bug-629373.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Bugs/bug-652241.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Bugs/bug-652241.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Bugs/bug-656602.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Bugs/bug-656602.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Bugs/bug-674365.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Bugs/bug-674365.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Bugs/bug-680380.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Bugs/bug-680380.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Bugs/bug-74955.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Bugs/bug-74955.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Bugs/bug-7616.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Bugs/bug-7616.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Bugs/bug-7646.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Bugs/bug-7646.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Bugs/bug-80750.response: -------------------------------------------------------------------------------- 1 | /target:library -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Bugs/bug-80750.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Bugs/bug-80750.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Bugs/bug-80752.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Bugs/bug-80752.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Bugs/bug-80833.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Bugs/bug-80833.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Bugs/bug-80967.rsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Bugs/bug-80967.rsp -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Bugs/bug-80967.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Bugs/bug-80967.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Bugs/bug-80967/bug-80967.rsp: -------------------------------------------------------------------------------- 1 | bug-80967.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Bugs/bug-80968.response: -------------------------------------------------------------------------------- 1 | -target:library 2 | -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Bugs/bug-80968.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Bugs/bug-80968.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Bugs/bug-80989.response: -------------------------------------------------------------------------------- 1 | -target:library 2 | -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Bugs/bug-80989.vb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Bugs/bug-80990.response: -------------------------------------------------------------------------------- 1 | -target:library 2 | -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Bugs/bug-80990.vb: -------------------------------------------------------------------------------- 1 | Imports Foo -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Bugs/bug-80995.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Bugs/bug-80995.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Bugs/bug-81009.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Bugs/bug-81009.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Bugs/bug-81016.response: -------------------------------------------------------------------------------- 1 | -target:winexe 2 | -main:Form1 -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Bugs/bug-81016.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Bugs/bug-81016.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Bugs/bug-81055.response: -------------------------------------------------------------------------------- 1 | -target:library 2 | -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Bugs/bug-81055.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Bugs/bug-81055.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Bugs/bug-81059.response: -------------------------------------------------------------------------------- 1 | -target:library 2 | -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Bugs/bug-81059.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Bugs/bug-81059.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Bugs/bug-81119.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Bugs/bug-81119.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Bugs/bug-81162.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Bugs/bug-81162.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Bugs/bug-81243.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Bugs/bug-81243.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Bugs/bug-82382.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Bugs/bug-82382.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Bugs/ia64-1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Bugs/ia64-1.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Cecil/LazyBug1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Cecil/LazyBug1.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/ChangeLog -------------------------------------------------------------------------------- /vbnc/vbnc/tests/CompileTime/Array1.vb: -------------------------------------------------------------------------------- 1 | Class Array1 2 | Public arr() As Integer 3 | End Class -------------------------------------------------------------------------------- /vbnc/vbnc/tests/CompileTime/Array2.vb: -------------------------------------------------------------------------------- 1 | Class Array2 2 | Public arr(,,,)(,) As Integer 3 | End Class -------------------------------------------------------------------------------- /vbnc/vbnc/tests/CompileTime/Array3.vb: -------------------------------------------------------------------------------- 1 | Class Array3 2 | Public arr(1, 2, 3) As Integer 3 | End Class -------------------------------------------------------------------------------- /vbnc/vbnc/tests/CompileTime/Call1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/CompileTime/Call1.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/CompileTime/Do1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/CompileTime/Do1.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/CompileTime/Exit1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/CompileTime/Exit1.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/CompileTime/Exit2.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/CompileTime/Exit2.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/CompileTime/For1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/CompileTime/For1.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/CompileTime/For2.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/CompileTime/For2.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/CompileTime/Goto1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/CompileTime/Goto1.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/CompileTime/Goto2.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/CompileTime/Goto2.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/CompileTime/If1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/CompileTime/If1.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/CompileTime/If2.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/CompileTime/If2.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/CompileTime/If3.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/CompileTime/If3.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/CompileTime/If4.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/CompileTime/If4.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/CompileTime/If5.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/CompileTime/If5.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/CompileTime/If6.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/CompileTime/If6.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/CompileTime/Imports3.response: -------------------------------------------------------------------------------- 1 | /imports:vb=microsoft.visualbasic -------------------------------------------------------------------------------- /vbnc/vbnc/tests/CompileTime/Imports4.response: -------------------------------------------------------------------------------- 1 | /imports:System -------------------------------------------------------------------------------- /vbnc/vbnc/tests/CompileTime/Imports5.vb: -------------------------------------------------------------------------------- 1 | Class Imports5 2 | End Class -------------------------------------------------------------------------------- /vbnc/vbnc/tests/CompileTime/Is1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/CompileTime/Is1.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/CompileTime/JaggedArray1.vb: -------------------------------------------------------------------------------- 1 | Class JaggedArray1 2 | Public arr As Integer()() 3 | End Class -------------------------------------------------------------------------------- /vbnc/vbnc/tests/CompileTime/Like1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/CompileTime/Like1.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/CompileTime/MultiFileTest.1.vb: -------------------------------------------------------------------------------- 1 | class MultiFileTest 2 | end class -------------------------------------------------------------------------------- /vbnc/vbnc/tests/CompileTime/MultiVar3.vb: -------------------------------------------------------------------------------- 1 | Class MultiVar3 2 | Dim i, j As Integer 3 | End Class -------------------------------------------------------------------------------- /vbnc/vbnc/tests/CompileTime/SingleLineStatement1.response: -------------------------------------------------------------------------------- 1 | /target:exe /imports:vb=microsoft.visualbasic -------------------------------------------------------------------------------- /vbnc/vbnc/tests/CompileTime/Stop1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/CompileTime/Stop1.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/CompileTime/Throw3.response: -------------------------------------------------------------------------------- 1 | /target:exe -------------------------------------------------------------------------------- /vbnc/vbnc/tests/CompileTime/VariableInitializer1.vb: -------------------------------------------------------------------------------- 1 | Class VariableInitializer1 2 | Public i As Integer = 3 3 | End Class -------------------------------------------------------------------------------- /vbnc/vbnc/tests/CompileTime/With1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/CompileTime/With1.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/CompileTime2/Box1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/CompileTime2/Box1.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/CompileTime2/Enum.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/CompileTime2/Enum.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/CompileTime2/For1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/CompileTime2/For1.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/CompileTime2/For2.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/CompileTime2/For2.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/CompileTime2/For3.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/CompileTime2/For3.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/CompileTime2/For4.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/CompileTime2/For4.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/CompileTime2/For5.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/CompileTime2/For5.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/CompileTime2/For6.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/CompileTime2/For6.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/CompileTime2/For7.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/CompileTime2/For7.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/CompileTime2/From.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/CompileTime2/From.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/CompileTime2/If1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/CompileTime2/If1.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/CompileTime2/If2.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/CompileTime2/If2.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/CompileTime2/NoOutDir1.rsp: -------------------------------------------------------------------------------- 1 | /out:test.exe 2 | NoOutDir1.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/CompileTime2/PEFileKind-Winexe.response: -------------------------------------------------------------------------------- 1 | -target:winexe -------------------------------------------------------------------------------- /vbnc/vbnc/tests/CompileTime2/ParamArrayResolution1.response: -------------------------------------------------------------------------------- 1 | -r:System.Windows.Forms.dll 2 | -------------------------------------------------------------------------------- /vbnc/vbnc/tests/CompileTime2/TypeConversionIntrinsic.vb: -------------------------------------------------------------------------------- 1 | Class TypeConversionIntrinsic 2 | End Class 3 | -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/2003.response: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/2003.vb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/2012.vb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/2017-aspnet1.vb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30002-1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30002-1.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30002-2.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30002-2.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30002-3.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30002-3.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30002.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30002.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30022.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30022.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30023.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30023.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30035.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30035.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30038-1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30038-1.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30038.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30038.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30039-1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30039-1.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30039-2.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30039-2.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30039-3.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30039-3.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30039.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30039.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30057-1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30057-1.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30057-2.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30057-2.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30057.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30057.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30059.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30059.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30060-1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30060-1.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30060-10.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30060-10.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30060-11.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30060-11.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30060-12.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30060-12.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30060-13.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30060-13.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30060-14.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30060-14.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30060-15.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30060-15.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30060-16.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30060-16.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30060-17.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30060-17.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30060-18.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30060-18.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30060-19.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30060-19.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30060-2.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30060-2.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30060-20.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30060-20.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30060-21.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30060-21.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30060-22.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30060-22.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30060-23.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30060-23.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30060-24.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30060-24.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30060-25.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30060-25.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30060-3.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30060-3.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30060-4.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30060-4.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30060-5.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30060-5.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30060-6.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30060-6.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30060-7.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30060-7.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30060-8.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30060-8.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30060-9.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30060-9.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30060.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30060.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30064.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30064.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30068.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30068.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30070-1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30070-1.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30070-2.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30070-2.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30070-3.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30070-3.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30070.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30070.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30074-1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30074-1.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30074-2.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30074-2.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30074.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30074.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30099.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30099.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30105.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30105.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30106.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30106.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30108-1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30108-1.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30108-2.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30108-2.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30108.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30108.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30112.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30112.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30124-1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30124-1.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30124.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30124.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30125.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30125.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30126.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30126.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30127.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30127.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30129.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30129.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30132-1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30132-1.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30132.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30132.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30179-2.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30179-2.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30179-3.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30179-3.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30179.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30179.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30182.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30182.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30183.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30183.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30198.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30198.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30199.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30199.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30201-1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30201-1.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30201.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30201.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30203-1.vb: -------------------------------------------------------------------------------- 1 | public 2 | -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30203-2.vb: -------------------------------------------------------------------------------- 1 | #Const 2 | -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30203.vb: -------------------------------------------------------------------------------- 1 | _ -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30206.vb: -------------------------------------------------------------------------------- 1 | Option Wrong -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30207.vb: -------------------------------------------------------------------------------- 1 | Option Compare Wrong -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30209.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30209.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30210.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30210.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30217.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30217.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30225-1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30225-1.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30225-2.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30225-2.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30225.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30225.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30248.vb: -------------------------------------------------------------------------------- 1 | #Foo 2 | -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30249.vb: -------------------------------------------------------------------------------- 1 | #Const Foo 2 | -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30251-1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30251-1.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30251.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30251.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30311-1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30311-1.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30311-10.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30311-10.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30311-11.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30311-11.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30311-12.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30311-12.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30311-13.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30311-13.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30311-14.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30311-14.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30311-15.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30311-15.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30311-16.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30311-16.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30311-17.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30311-17.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30311-18.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30311-18.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30311-19.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30311-19.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30311-2.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30311-2.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30311-20.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30311-20.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30311-21.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30311-21.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30311-22.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30311-22.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30311-23.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30311-23.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30311-24.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30311-24.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30311-25.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30311-25.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30311-26.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30311-26.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30311-27.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30311-27.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30311-28.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30311-28.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30311-29.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30311-29.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30311-3.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30311-3.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30311-30.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30311-30.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30311-31.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30311-31.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30311-32.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30311-32.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30311-33.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30311-33.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30311-34.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30311-34.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30311-35.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30311-35.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30311-36.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30311-36.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30311-37.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30311-37.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30311-38.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30311-38.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30311-39.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30311-39.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30311-4.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30311-4.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30311-40.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30311-40.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30311-41.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30311-41.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30311-42.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30311-42.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30311-43.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30311-43.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30311-44.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30311-44.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30311-45.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30311-45.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30311-46.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30311-46.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30311-47.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30311-47.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30311-48.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30311-48.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30311-49.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30311-49.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30311-5.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30311-5.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30311-50.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30311-50.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30311-51.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30311-51.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30311-52.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30311-52.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30311-53.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30311-53.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30311-54.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30311-54.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30311-55.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30311-55.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30311-56.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30311-56.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30311-57.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30311-57.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30311-58.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30311-58.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30311-59.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30311-59.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30311-6.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30311-6.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30311-60.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30311-60.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30311-61.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30311-61.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30311-62.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30311-62.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30311-63.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30311-63.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30311-64.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30311-64.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30311-65.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30311-65.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30311-66.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30311-66.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30311-67.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30311-67.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30311-68.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30311-68.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30311-7.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30311-7.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30311-8.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30311-8.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30311-9.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30311-9.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30311.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30311.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30332-1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30332-1.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30332-2.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30332-2.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30332-3.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30332-3.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30332-4.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30332-4.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30332-5.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30332-5.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30332-6.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30332-6.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30332-7.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30332-7.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30332.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30332.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30333-1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30333-1.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30333.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30333.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30337-1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30337-1.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30337-2.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30337-2.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30337-3.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30337-3.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30337-4.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30337-4.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30337.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30337.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30367.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30367.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30369-1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30369-1.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30369-10.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30369-10.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30369-11.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30369-11.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30369-12.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30369-12.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30369-13.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30369-13.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30369-2.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30369-2.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30369-3.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30369-3.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30369-4.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30369-4.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30369-5.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30369-5.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30369-6.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30369-6.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30369-7.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30369-7.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30369-8.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30369-8.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30369-9.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30369-9.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30369.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30369.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30375.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30375.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30387.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30387.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30390.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30390.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30414.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30414.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30439-1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30439-1.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30439-2.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30439-2.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30439.response: -------------------------------------------------------------------------------- 1 | -target:library -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30439.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30439.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30443.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30443.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30444.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30444.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30451-1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30451-1.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30451-2.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30451-2.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30451-3.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30451-3.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30451.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30451.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30452.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30452.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30455-1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30455-1.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30455-2.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30455-2.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30455-3.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30455-3.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30455.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30455.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30456-1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30456-1.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30456-2.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30456-2.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30456-3.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30456-3.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30456.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30456.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30469-1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30469-1.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30469-2.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30469-2.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30469-3.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30469-3.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30469-4.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30469-4.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30469-5.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30469-5.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30469-6.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30469-6.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30469.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30469.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30471.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30471.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30480-1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30480-1.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30480-2.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30480-2.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30480-3.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30480-3.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30480-4.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30480-4.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30480.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30480.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30491-1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30491-1.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30491.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30491.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30506-1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30506-1.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30506-2.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30506-2.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30506-3.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30506-3.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30506-4.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30506-4.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30506-5.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30506-5.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30506-6.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30506-6.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30512-1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30512-1.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30512-10.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30512-10.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30512-100.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30512-100.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30512-101.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30512-101.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30512-102.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30512-102.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30512-103.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30512-103.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30512-104.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30512-104.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30512-105.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30512-105.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30512-106.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30512-106.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30512-2.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30512-2.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30512-3.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30512-3.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30512-4.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30512-4.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30512-5.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30512-5.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30512-6.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30512-6.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30512-7.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30512-7.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30512-8.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30512-8.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30512-9.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30512-9.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30512.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30512.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30516-1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30516-1.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30516.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30516.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30517.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30517.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30518.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30518.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30519-1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30519-1.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30519.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30519.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30524.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30524.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30530-1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30530-1.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30530-2.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30530-2.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30530-3.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30530-3.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30530-4.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30530-4.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30530-5.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30530-5.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30530.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30530.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30532.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30532.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30533.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30533.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30562-1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30562-1.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30562.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30562.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30574.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30574.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30581.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30581.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30587.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30587.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30588.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30588.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30590.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30590.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30620.vb: -------------------------------------------------------------------------------- 1 | Option Strict Wrong -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30623.vb: -------------------------------------------------------------------------------- 1 | End Namespace -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30636.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30636.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30640.vb: -------------------------------------------------------------------------------- 1 | Option Explicit Wrong -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30648.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30648.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30650.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30650.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30657.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30657.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30691-1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30691-1.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30691.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30691.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30737-1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30737-1.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30737.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30737.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30983-1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30983-1.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30983-2.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30983-2.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30983-3.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30983-3.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/30983.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/30983.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/31019.vb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/31087.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/31087.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/31094.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/31094.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/31509.resources: -------------------------------------------------------------------------------- 1 | asgasdv 2 | -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/31509.vb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/32006-1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/32006-1.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/32006-2.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/32006-2.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/32006-3.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/32006-3.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/32006-4.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/32006-4.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/32006-5.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/32006-5.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/32006-6.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/32006-6.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/32006-7.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/32006-7.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/32006.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/32006.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/32007-1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/32007-1.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/32007-2.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/32007-2.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/32007-3.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/32007-3.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/32007-4.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/32007-4.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/32007-5.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/32007-5.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/32007-6.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/32007-6.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/32007.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/32007.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/32008-2.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/32008-2.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/32008.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/32008.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/32021.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/32021.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/32022.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/32022.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/32035-1.vb: -------------------------------------------------------------------------------- 1 | _ -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/32035.vb: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/32042.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/32042.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/32044-1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/32044-1.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/32044.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/32044.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/32046.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/32046.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/32050-1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/32050-1.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/32050.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/32050.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/32083-1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/32083-1.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/32083-2.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/32083-2.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/32083-3.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/32083-3.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/32083-4.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/32083-4.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/32083-5.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/32083-5.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/32083-6.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/32083-6.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/32083-7.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/32083-7.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/32083-8.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/32083-8.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/32083.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/32083.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/32084.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/32084.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/32085.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/32085.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/32101.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/32101.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/32102.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/32102.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/32103.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/32103.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/32104.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/32104.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/32105-1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/32105-1.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/32105-2.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/32105-2.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/32105.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/32105.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/32106-1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/32106-1.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/32106-2.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/32106-2.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/32106-3.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/32106-3.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/32106-4.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/32106-4.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/32106.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/32106.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/33101-1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/33101-1.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/33101-2.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/33101-2.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/33101.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/33101.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/33104-1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/33104-1.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/33104-2.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/33104-2.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/33104.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/33104.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/33106.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/33106.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/33107-1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/33107-1.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/33107.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/33107.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/33110-1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/33110-1.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/33110.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/33110.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/36651.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/36651.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/36657-1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/36657-1.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/36657.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/36657.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/36758.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/36758.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/42020.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/42020.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/42021.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/42021.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/42024-1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/42024-1.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/42024.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/42024.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/Empty.vb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/Sub.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/Sub.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Errors/error.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Errors/error.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/External/PrivateScope1.response: -------------------------------------------------------------------------------- 1 | /r:PrivateScope1_Ext.dll /define:_MYTYPE=\"Empty\" -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Generated/Constants.rsp: -------------------------------------------------------------------------------- 1 | /target:library 2 | Constants.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/LateBinding/LateBinding.response: -------------------------------------------------------------------------------- 1 | -target:exe -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Makefile -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Mono/ArrayA.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Mono/ArrayA.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Mono/ArrayB.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Mono/ArrayB.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Mono/ArrayC.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Mono/ArrayC.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Mono/ArrayD.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Mono/ArrayD.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Mono/ArrayE.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Mono/ArrayE.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Mono/ArrayF.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Mono/ArrayF.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Mono/ArrayG.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Mono/ArrayG.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Mono/ArrayH.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Mono/ArrayH.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Mono/ClassTest.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Mono/ClassTest.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Mono/ConstantA.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Mono/ConstantA.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Mono/ConstantB.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Mono/ConstantB.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Mono/ConstantC.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Mono/ConstantC.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Mono/DelegateA.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Mono/DelegateA.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Mono/DelegateD.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Mono/DelegateD.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Mono/DelegateE.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Mono/DelegateE.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Mono/DelegateF.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Mono/DelegateF.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Mono/DelegateG.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Mono/DelegateG.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Mono/Delegate_dll.response: -------------------------------------------------------------------------------- 1 | -target:library 2 | -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Mono/Delegate_exe.response: -------------------------------------------------------------------------------- 1 | -r:testoutput\Delegate_dll.dll 2 | -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Mono/EnumA.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Mono/EnumA.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Mono/EnumB.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Mono/EnumB.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Mono/EnumC1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Mono/EnumC1.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Mono/EnumD.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Mono/EnumD.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Mono/Error.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Mono/Error.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Mono/EventA.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Mono/EventA.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Mono/EventB.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Mono/EventB.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Mono/EventC.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Mono/EventC.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Mono/EventD.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Mono/EventD.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Mono/EventE.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Mono/EventE.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Mono/EventF.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Mono/EventF.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Mono/EventG.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Mono/EventG.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Mono/EventJ.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Mono/EventJ.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Mono/EventK.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Mono/EventK.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Mono/EventL.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Mono/EventL.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Mono/EventM.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Mono/EventM.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Mono/EventN.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Mono/EventN.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Mono/Event_dll.response: -------------------------------------------------------------------------------- 1 | -target:library 2 | -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Mono/Event_dll.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Mono/Event_dll.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Mono/Event_exe.response: -------------------------------------------------------------------------------- 1 | -r:testoutput\Event_dll.dll 2 | -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Mono/Event_exe.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Mono/Event_exe.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Mono/ForA.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Mono/ForA.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Mono/ForB.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Mono/ForB.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Mono/ForC.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Mono/ForC.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Mono/ForD.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Mono/ForD.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Mono/ForE.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Mono/ForE.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Mono/ForEachA.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Mono/ForEachA.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Mono/ForEachB.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Mono/ForEachB.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Mono/ForEachC.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Mono/ForEachC.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Mono/ForF.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Mono/ForF.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Mono/ForG.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Mono/ForG.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Mono/ForH.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Mono/ForH.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Mono/ForI.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Mono/ForI.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Mono/ForJ.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Mono/ForJ.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Mono/GetType.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Mono/GetType.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Mono/Interface.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Mono/Interface.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Mono/LabelA.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Mono/LabelA.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Mono/LabelB.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Mono/LabelB.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Mono/LabelC.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Mono/LabelC.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Mono/LabelD.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Mono/LabelD.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Mono/ModuleB.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Mono/ModuleB.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Mono/NameSpace.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Mono/NameSpace.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Mono/OptionalA.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Mono/OptionalA.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Mono/OverrideA.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Mono/OverrideA.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Mono/OverrideB.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Mono/OverrideB.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Mono/OverrideC.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Mono/OverrideC.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Mono/OverrideD.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Mono/OverrideD.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Mono/OverrideE.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Mono/OverrideE.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Mono/OverrideF.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Mono/OverrideF.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Mono/OverrideG.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Mono/OverrideG.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Mono/Override_dll.response: -------------------------------------------------------------------------------- 1 | -target:library 2 | -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Mono/Override_exe.response: -------------------------------------------------------------------------------- 1 | -r:testoutput\Override_dll.dll 2 | -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Mono/PropertyA.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Mono/PropertyA.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Mono/PropertyB.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Mono/PropertyB.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Mono/PropertyC.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Mono/PropertyC.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Mono/PropertyD.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Mono/PropertyD.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Mono/PropertyE.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Mono/PropertyE.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Mono/PropertyF.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Mono/PropertyF.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Mono/PropertyG.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Mono/PropertyG.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Mono/PropertyH.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Mono/PropertyH.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Mono/PropertyI.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Mono/PropertyI.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Mono/PropertyJ.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Mono/PropertyJ.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Mono/PropertyK.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Mono/PropertyK.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Mono/PropertyL.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Mono/PropertyL.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Mono/Scope.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Mono/Scope.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Mono/ScopeA.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Mono/ScopeA.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Mono/ScopeB.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Mono/ScopeB.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Mono/ScopeC.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Mono/ScopeC.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Mono/ShadowsA.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Mono/ShadowsA.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Mono/ShadowsC.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Mono/ShadowsC.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Mono/ShadowsC4.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Mono/ShadowsC4.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Mono/ShadowsD.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Mono/ShadowsD.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Mono/ShadowsE.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Mono/ShadowsE.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Mono/ShadowsF.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Mono/ShadowsF.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Mono/SyncLockB.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Mono/SyncLockB.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Mono/TypeOf.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Mono/TypeOf.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Mono/Variables.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Mono/Variables.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Mono/misc2.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Mono/misc2.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/My/Console.response: -------------------------------------------------------------------------------- 1 | -define:_MYTYPE=\"Console\" -------------------------------------------------------------------------------- /vbnc/vbnc/tests/My/Console.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/My/Console.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/My/Custom.response: -------------------------------------------------------------------------------- 1 | -define:_MYTYPE=\"Custom\" -------------------------------------------------------------------------------- /vbnc/vbnc/tests/My/Custom.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/My/Custom.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/My/DefinedSymbols.response: -------------------------------------------------------------------------------- 1 | -define:_MYTYPE=\"Web\" 2 | -target:exe -------------------------------------------------------------------------------- /vbnc/vbnc/tests/My/Empty.response: -------------------------------------------------------------------------------- 1 | -define:_MYTYPE=\"Empty\" -------------------------------------------------------------------------------- /vbnc/vbnc/tests/My/Empty.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/My/Empty.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/My/EmptyString.response: -------------------------------------------------------------------------------- 1 | -define:_MYTYPE=\"\" -------------------------------------------------------------------------------- /vbnc/vbnc/tests/My/EmptyString.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/My/EmptyString.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/My/My.Forms1.response: -------------------------------------------------------------------------------- 1 | -define:_MYTYPE=\"WindowsForms\" 2 | -target:winexe -------------------------------------------------------------------------------- /vbnc/vbnc/tests/My/My.Forms1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/My/My.Forms1.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/My/NoConfigWithMy.vb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vbnc/vbnc/tests/My/None.response: -------------------------------------------------------------------------------- 1 | #-define:_MYTYPE=\"\" -------------------------------------------------------------------------------- /vbnc/vbnc/tests/My/None.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/My/None.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/My/Web.response: -------------------------------------------------------------------------------- 1 | -define:_MYTYPE=\"Web\" -------------------------------------------------------------------------------- /vbnc/vbnc/tests/My/Web.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/My/Web.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/My/WebControl.response: -------------------------------------------------------------------------------- 1 | -define:_MYTYPE=\"WebControl\" -------------------------------------------------------------------------------- /vbnc/vbnc/tests/My/WebControl.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/My/WebControl.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/My/Windows.response: -------------------------------------------------------------------------------- 1 | -define:_MYTYPE=\"Windows\" -------------------------------------------------------------------------------- /vbnc/vbnc/tests/My/Windows.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/My/Windows.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/My/WindowsForms.response: -------------------------------------------------------------------------------- 1 | -define:_MYTYPE=\"WindowsForms\" -------------------------------------------------------------------------------- /vbnc/vbnc/tests/My/WindowsFormsWithCustomSubMain.response: -------------------------------------------------------------------------------- 1 | -define:_MYTYPE=\"WindowsFormsWithSubMain\" -------------------------------------------------------------------------------- /vbnc/vbnc/tests/My/WindowsForms_exe.response: -------------------------------------------------------------------------------- 1 | -define:_MYTYPE=\"WindowsForms\" 2 | -target:exe -------------------------------------------------------------------------------- /vbnc/vbnc/tests/My/WindowsForms_library.response: -------------------------------------------------------------------------------- 1 | -define:_MYTYPE=\"WindowsForms\" 2 | -target:library -------------------------------------------------------------------------------- /vbnc/vbnc/tests/My/WindowsForms_library.vb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vbnc/vbnc/tests/My/WindowsForms_module.response: -------------------------------------------------------------------------------- 1 | -define:_MYTYPE=\"WindowsForms\" 2 | -target:module -------------------------------------------------------------------------------- /vbnc/vbnc/tests/My/WindowsForms_module.vb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vbnc/vbnc/tests/My/WindowsForms_winexe.response: -------------------------------------------------------------------------------- 1 | -define:_MYTYPE=\"WindowsForms\" 2 | -target:winexe -------------------------------------------------------------------------------- /vbnc/vbnc/tests/My/WindowsForms_winexe.vb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vbnc/vbnc/tests/My/abcd.response: -------------------------------------------------------------------------------- 1 | -define:_MYTYPE=\"abcd\" -------------------------------------------------------------------------------- /vbnc/vbnc/tests/My/abcd.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/My/abcd.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/My/bug-333403.rsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/My/bug-333403.rsp -------------------------------------------------------------------------------- /vbnc/vbnc/tests/My/bug-333403.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/My/bug-333403.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/Readme.txt -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Resources/InvalidResources.resources: -------------------------------------------------------------------------------- 1 | asgasdv 2 | -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Resources/Resources1.vb: -------------------------------------------------------------------------------- 1 | Class Resources1 2 | 3 | End Class -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Resources/Resources2.response: -------------------------------------------------------------------------------- 1 | /res:Resources2.resx 2 | /target:library -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Resources/Resources2.vb: -------------------------------------------------------------------------------- 1 | Class Resources2 2 | 3 | End Class -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Resources/Resources3.binary: -------------------------------------------------------------------------------- 1 | some binary resources here -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Resources/Resources3.response: -------------------------------------------------------------------------------- 1 | /res:Resources3.binary 2 | /target:library -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Resources/Resources3.vb: -------------------------------------------------------------------------------- 1 | Class Resources3 2 | 3 | End Class -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Resources/Resources4.vb: -------------------------------------------------------------------------------- 1 | Class Resources4 2 | 3 | End Class -------------------------------------------------------------------------------- /vbnc/vbnc/tests/RunTime/Array1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/RunTime/Array1.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/RunTime/CType1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/RunTime/CType1.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/RunTime/CType2.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/RunTime/CType2.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/RunTime/CType3.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/RunTime/CType3.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/RunTime/CType4.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/RunTime/CType4.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/RunTime/CType5.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/RunTime/CType5.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/RunTime/CType6.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/RunTime/CType6.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/RunTime/End1.response: -------------------------------------------------------------------------------- 1 | -target:exe 2 | -------------------------------------------------------------------------------- /vbnc/vbnc/tests/RunTime/End1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/RunTime/End1.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/RunTime/End2.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/RunTime/End2.vb -------------------------------------------------------------------------------- /vbnc/vbnc/tests/SelfTest/.gitignore: -------------------------------------------------------------------------------- 1 | vbnc.rsp 2 | 3 | -------------------------------------------------------------------------------- /vbnc/vbnc/tests/SelfTest/boot.bat: -------------------------------------------------------------------------------- 1 | ..\..\bin\vbnc.exe @SelfCompileWindows.response -------------------------------------------------------------------------------- /vbnc/vbnc/tests/SelfTest/boot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/SelfTest/boot.sh -------------------------------------------------------------------------------- /vbnc/vbnc/tests/SelfTest/rerun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/SelfTest/rerun.sh -------------------------------------------------------------------------------- /vbnc/vbnc/tests/Unfixable/NestedInterfaceInheritance1.response: -------------------------------------------------------------------------------- 1 | -target:library -------------------------------------------------------------------------------- /vbnc/vbnc/tests/clean.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/clean.bat -------------------------------------------------------------------------------- /vbnc/vbnc/tests/testoutput/31019.dll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vbnc/vbnc/tests/tests.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/tests/tests.xml -------------------------------------------------------------------------------- /vbnc/vbnc/vbnc.Errors.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/vbnc.Errors.resources -------------------------------------------------------------------------------- /vbnc/vbnc/vbnc.exe.rsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/vbnc.exe.rsp -------------------------------------------------------------------------------- /vbnc/vbnc/vbnc.exe.sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/vbnc.exe.sources -------------------------------------------------------------------------------- /vbnc/vbnc/vbnc.vbnc.rsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbnc/vbnc/vbnc.vbnc.rsp -------------------------------------------------------------------------------- /vbruntime/2005VB.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbruntime/2005VB.sln -------------------------------------------------------------------------------- /vbruntime/2005VB_test.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbruntime/2005VB_test.sln -------------------------------------------------------------------------------- /vbruntime/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbruntime/ChangeLog -------------------------------------------------------------------------------- /vbruntime/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbruntime/Makefile -------------------------------------------------------------------------------- /vbruntime/TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbruntime/TODO.txt -------------------------------------------------------------------------------- /vbruntime/Test/2010VB_MS.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbruntime/Test/2010VB_MS.sln -------------------------------------------------------------------------------- /vbruntime/Test/2010VB_Mono.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbruntime/Test/2010VB_Mono.sln -------------------------------------------------------------------------------- /vbruntime/Test/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbruntime/Test/ChangeLog -------------------------------------------------------------------------------- /vbruntime/Test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbruntime/Test/Makefile -------------------------------------------------------------------------------- /vbruntime/Test/OldTests/mbas/Test/dlls/.cvsignore: -------------------------------------------------------------------------------- 1 | *.results 2 | *.log 3 | -------------------------------------------------------------------------------- /vbruntime/Test/OldTests/mbas/Test/errors/.cvsignore: -------------------------------------------------------------------------------- 1 | *.results 2 | *.log 3 | -------------------------------------------------------------------------------- /vbruntime/Test/OldTests/mbas/Test/rerrors/.cvsignore: -------------------------------------------------------------------------------- 1 | *.results 2 | *.log 3 | -------------------------------------------------------------------------------- /vbruntime/Test/OldTests/mbas/Test/rerrors/rerrors.dll.sources: -------------------------------------------------------------------------------- 1 | dummy.cs 2 | -------------------------------------------------------------------------------- /vbruntime/Test/OldTests/mbas/Test/tests/.cvsignore: -------------------------------------------------------------------------------- 1 | *.results 2 | *.log 3 | -------------------------------------------------------------------------------- /vbruntime/Test/OldTests/standalone/5200.txt: -------------------------------------------------------------------------------- 1 | "Just a test" 2 | -------------------------------------------------------------------------------- /vbruntime/Test/OldTests/standalone/5203.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vbruntime/Test/OldTests/standalone/5205.txt: -------------------------------------------------------------------------------- 1 | 24.5 2 | -------------------------------------------------------------------------------- /vbruntime/Test/OldTests/standalone/5206.txt: -------------------------------------------------------------------------------- 1 | #True# 2 | -------------------------------------------------------------------------------- /vbruntime/Test/OldTests/standalone/5207.txt: -------------------------------------------------------------------------------- 1 | "Hello" 2 | 100.25 3 | -------------------------------------------------------------------------------- /vbruntime/Test/OldTests/standalone/5208.txt: -------------------------------------------------------------------------------- 1 | "Just a test", -------------------------------------------------------------------------------- /vbruntime/Test/OldTests/standalone/5210.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vbruntime/Test/OldTests/standalone/5212.txt: -------------------------------------------------------------------------------- 1 | 24.5, -------------------------------------------------------------------------------- /vbruntime/Test/OldTests/standalone/5213.txt: -------------------------------------------------------------------------------- 1 | #True#, -------------------------------------------------------------------------------- /vbruntime/Test/OldTests/standalone/5214.txt: -------------------------------------------------------------------------------- 1 | "Hello",100.25, -------------------------------------------------------------------------------- /vbruntime/Test/OldTests/standalone/5217.txt: -------------------------------------------------------------------------------- 1 | "Hello","World" 2 | -------------------------------------------------------------------------------- /vbruntime/Test/OldTests/standalone/5223.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vbruntime/Test/OldTests/standalone/5224.txt: -------------------------------------------------------------------------------- 1 | World -------------------------------------------------------------------------------- /vbruntime/Test/OldTests/standalone/5226.txt: -------------------------------------------------------------------------------- 1 | "Hello World" 2 | -------------------------------------------------------------------------------- /vbruntime/Test/OldTests/standalone/5227.txt: -------------------------------------------------------------------------------- 1 | "H" 2 | lo World" 3 | -------------------------------------------------------------------------------- /vbruntime/Test/OldTests/standalone/5228.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vbruntime/Test/OldTests/standalone/5229.txt: -------------------------------------------------------------------------------- 1 | HelWorld -------------------------------------------------------------------------------- /vbruntime/Test/OldTests/standalone/5230.txt: -------------------------------------------------------------------------------- 1 | "H" 2 | lo World" 3 | -------------------------------------------------------------------------------- /vbruntime/Test/OldTests/standalone/5234.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vbruntime/Test/OldTests/standalone/5235.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vbruntime/Test/OldTests/standalone/5236.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vbruntime/Test/OldTests/standalone/5237.txt: -------------------------------------------------------------------------------- 1 | 6/29/2004 12:57:42 PM 2 | -------------------------------------------------------------------------------- /vbruntime/Test/OldTests/standalone/5238.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vbruntime/Test/OldTests/standalone/5239.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vbruntime/Test/OldTests/standalone/5240.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vbruntime/Test/OldTests/standalone/5241.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vbruntime/Test/OldTests/standalone/5242.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vbruntime/Test/OldTests/standalone/5243.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vbruntime/Test/OldTests/standalone/5244.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vbruntime/Test/OldTests/standalone/5245.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vbruntime/Test/OldTests/standalone/5246.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vbruntime/Test/OldTests/standalone/5247.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vbruntime/Test/OldTests/standalone/5251.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vbruntime/Test/OldTests/standalone/5253.txt: -------------------------------------------------------------------------------- 1 | World -------------------------------------------------------------------------------- /vbruntime/Test/OldTests/standalone/5254.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vbruntime/Test/OldTests/standalone/5256.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vbruntime/Test/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbruntime/Test/README.txt -------------------------------------------------------------------------------- /vbruntime/Test/Tester.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbruntime/Test/Tester.vb -------------------------------------------------------------------------------- /vbruntime/VB.J2EE.build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbruntime/VB.J2EE.build.bat -------------------------------------------------------------------------------- /vbruntime/VB.build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbruntime/VB.build.bat -------------------------------------------------------------------------------- /vbruntime/VB.replace.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbruntime/VB.replace.bat -------------------------------------------------------------------------------- /vbruntime/VB.restore.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbruntime/VB.restore.bat -------------------------------------------------------------------------------- /vbruntime/VB_TESTS.J2EE.build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbruntime/VB_TESTS.J2EE.build.bat -------------------------------------------------------------------------------- /vbruntime/makefile.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbruntime/makefile.build -------------------------------------------------------------------------------- /vbruntime/msfinal.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbruntime/msfinal.pub -------------------------------------------------------------------------------- /vbruntime/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbruntime/readme.txt -------------------------------------------------------------------------------- /vbruntime/run-tests.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbruntime/run-tests.bat -------------------------------------------------------------------------------- /vbruntime/run-tests.cs.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbruntime/run-tests.cs.bat -------------------------------------------------------------------------------- /vbruntime/run-tests.vb.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbruntime/run-tests.vb.bat -------------------------------------------------------------------------------- /vbruntime/vbnc.tests.build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbruntime/vbnc.tests.build.bat -------------------------------------------------------------------------------- /vbruntime/vbnc.tests.run.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-basic/HEAD/vbruntime/vbnc.tests.run.bat --------------------------------------------------------------------------------