├── .gitattributes ├── .github └── workflows │ └── codeql.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── SECURITY.md ├── grammar ├── .antlr │ ├── Kql.interp │ ├── KqlBaseListener.java │ ├── KqlLexer.interp │ ├── KqlLexer.java │ ├── KqlListener.java │ ├── KqlParser.java │ ├── KqlTokens.interp │ └── KqlTokens.java ├── Kql.g4 └── KqlTokens.g4 └── src ├── Kusto.Language.Bridge ├── .npmrc ├── Kusto.Language.Bridge.csproj ├── bridge.json ├── package.json ├── publish.cmd └── runtests.cmd ├── Kusto.Language.Generators ├── AriaBridgeCommandInfos.cs ├── ClusterManagerCommandInfos.cs ├── CodeGenerator.cs ├── CommandGenerator.cs ├── CommandInfo.cs ├── DataManagerCommandInfos.cs ├── EngineCommandInfos.cs ├── Grammar.cs ├── Kusto.Language.Generators.csproj ├── SyntaxNodeGenerator.cs └── SyntaxNodeInfos.cs ├── Kusto.Language.sln └── Kusto.Language ├── Aggregates.cs ├── Binder ├── Binder_API.cs ├── Binder_AsContextBuilder.cs ├── Binder_ContextBuilder.cs ├── Binder_FunctionCalls.cs ├── Binder_Misc.cs ├── Binder_Names.cs ├── Binder_NodeBinder.cs ├── Binder_Operators.cs ├── Binder_Projection.cs ├── Binder_SearchPredicateBinder.cs ├── Binder_TablesAndColumns.cs ├── Binder_TreeBinder.cs ├── CallSiteInfo.cs ├── ColumnMap.cs ├── FunctionCallExpansion.cs ├── FunctionCallInfo.cs ├── FunctionCallResult.cs ├── GlobalBindingCache.cs ├── LocalBindingCache.cs ├── LocalScope.cs ├── ParameterMatchKind.cs ├── ProjectionBuilder.cs ├── ScopeKind.cs └── SemanticInfo.cs ├── Diagnostics ├── Diagnostic.cs └── DiagnosticFacts.cs ├── Directory.Build.props ├── Directory.Build.targets ├── Editor ├── AnalyzerInfo.cs ├── BrackettingStyle.cs ├── ClassificationKind.cs ├── ClassificationResult.cs ├── ClassifiedRange.cs ├── ClientDirective.cs ├── ClientDirectiveArgument.cs ├── ClientDirectiveInfo.cs ├── ClientParameter.cs ├── ClusterReference.cs ├── CodeAction.cs ├── CodeBlock.cs ├── CodeKinds.cs ├── CodeScript.cs ├── CodeService.cs ├── CodeServiceFactory.cs ├── CodeServiceFeatures.cs ├── CommonCodeService.cs ├── CompletionDisplay.cs ├── CompletionHint.cs ├── CompletionInfo.cs ├── CompletionItem.cs ├── CompletionKind.cs ├── CompletionOptions.cs ├── CompletionPriority.cs ├── CompletionText.cs ├── DatabaseReference.cs ├── DisabledDiagnostics.cs ├── EditString.cs ├── FindRelatedOptions.cs ├── FormattedText.cs ├── FormattingOptions.cs ├── Kusto │ ├── Actors │ │ ├── ActorUtilities.cs │ │ ├── ConvertToMacroExpandActor.cs │ │ ├── DiagnosticFixActor.cs │ │ ├── ExtractValueToLetStatementActor.cs │ │ ├── InlineDatabaseFunctionActor.cs │ │ └── RenameActor.cs │ ├── Analyzers │ │ ├── AnalyzerUtilities.cs │ │ ├── AvoidJoinWithoutKindAnalyzer.cs │ │ ├── AvoidStrlenWithDynamic.cs │ │ ├── AvoidUsingContainsAnalyzer.cs │ │ ├── AvoidUsingFormatDateTimeInPredicateAnalyzer.cs │ │ ├── AvoidUsingHasWithIPv4Strings.cs │ │ ├── AvoidUsingLegacyPartitionAnalyzer.cs │ │ ├── AvoidUsingNullStringComparisonAnalyzer.cs │ │ ├── AvoidUsingObsoleteFunctions.cs │ │ ├── AvoidUsingToBoolOnNumericsAnalyzer.cs │ │ ├── CalledFunctionHasErrorsAnalyzer.cs │ │ ├── ColumnHasSameNameAsVariableAnalyzer.cs │ │ ├── KustoAnalyzerCodes.cs │ │ ├── NullAggregationAnalyzer.cs │ │ ├── PreferUsingMaterializedViewIntrinsicAnalyzer.cs │ │ ├── PreferUsingOptimizedAlternative.cs │ │ └── StdevTimespanConversionAnalyzer.cs │ ├── AnnotatedParserFinder.cs │ ├── KustoActor.cs │ ├── KustoActors.cs │ ├── KustoAnalyzer.cs │ ├── KustoAnalyzers.cs │ ├── KustoClassifier.cs │ ├── KustoCodeService.cs │ ├── KustoCodeServiceFactory.cs │ ├── KustoCompleter.cs │ ├── KustoFixer.cs │ ├── KustoFixers.cs │ ├── KustoFormatter.cs │ ├── KustoOutliner.cs │ ├── KustoQualifier.cs │ ├── KustoQuickInfoBuilder.cs │ ├── KustoReferenceFinder.cs │ ├── KustoRelatedElementFinder.cs │ ├── KustoServiceHelpers.cs │ └── ParserPath.cs ├── MinimalTextKind.cs ├── OffsetCodeService.cs ├── OutlineInfo.cs ├── OutlineRange.cs ├── OutliningOptions.cs ├── PlacementStyle.cs ├── PositionBias.cs ├── QuickInfo.cs ├── QuickInfoOptions.cs ├── RelatedInfo.cs ├── SyntaxReference.cs ├── TextEdit.cs ├── TextRange.cs └── UnknownCodeService.cs ├── FunctionBodyFacts.cs ├── FunctionHelpers.cs ├── Functions.Convert.cs ├── Functions.cs ├── GlobalState.cs ├── Kusto.Language.csproj ├── KustoCache.cs ├── KustoCode.cs ├── KustoDialect.cs ├── Operators.cs ├── Options.cs ├── Package.props ├── Parser ├── CharScanners.cs ├── CodeGen │ ├── AriaBridgeCommandGrammar.cs │ ├── AriaBridgeCommandGrammar.tt │ ├── AriaBridgeCommands.cs │ ├── AriaBridgeCommands.tt │ ├── ClusterManagerCommandGrammar.cs │ ├── ClusterManagerCommandGrammar.tt │ ├── ClusterManagerCommands.cs │ ├── ClusterManagerCommands.tt │ ├── CommandGenerator.t4 │ ├── DataManagerCommandGrammar.cs │ ├── DataManagerCommandGrammar.tt │ ├── DataManagerCommands.cs │ ├── DataManagerCommands.tt │ ├── EngineCommandGrammar.cs │ ├── EngineCommandGrammar.tt │ ├── EngineCommands.cs │ └── EngineCommands.tt ├── Combinators │ ├── ArraySource.cs │ ├── Describer.cs │ ├── LimitSource.cs │ ├── OffsetValue.cs │ ├── ParseResult.cs │ ├── Parser.cs │ ├── ParserExtensions.cs │ ├── ParserVisitors.cs │ ├── Parsers.cs │ ├── Parsers │ │ ├── ApplyParser.cs │ │ ├── BestParser.cs │ │ ├── ConvertParser.cs │ │ ├── FailsParser.cs │ │ ├── FirstParser.cs │ │ ├── ForwardParser.cs │ │ ├── IfParser.cs │ │ ├── LimitParser.cs │ │ ├── ListPrimaryParser.cs │ │ ├── MapParser.cs │ │ ├── MatchParser.cs │ │ ├── NotParser.cs │ │ ├── OneOrMoreParser.cs │ │ ├── OptionalParser.cs │ │ ├── ProduceParser.cs │ │ ├── RequiredParser.cs │ │ ├── ResultPrimaryParser.cs │ │ ├── RuleParser.cs │ │ ├── SequenceParser.cs │ │ ├── SourceConsumer.cs │ │ ├── SourceProducer.cs │ │ └── ZeroOrMoreParser.cs │ ├── PartialParser.cs │ ├── RightParser.cs │ ├── SafeParse.cs │ ├── SafeScan.cs │ ├── Source.cs │ └── TextSource.cs ├── CommandFacts.cs ├── CommandGrammar.cs ├── CommentFacts.cs ├── KustoFacts.cs ├── KustoFacts_Keywords.cs ├── LexicalToken.cs ├── ParseOptions.cs ├── PredefinedRuleParsers.cs ├── QueryGrammar.cs ├── QueryParser.cs ├── ScannerExtensions.cs ├── ScriptFacts.cs ├── SyntaxParsers.cs ├── TextFacts.cs ├── TokenParser.cs └── TriviaFacts.cs ├── PlugIns.cs ├── Properties.cs ├── Properties └── AssemblyInfo.cs ├── QueryOperatorParameters.cs ├── ServerKinds.cs ├── Symbols ├── ArgumentKind.cs ├── ClusterSymbol.cs ├── ColumnSymbol.cs ├── CombineKind.cs ├── CommandSymbol.cs ├── Conversion.cs ├── CustomAvailabilityContext.cs ├── CustomAvailabilty.cs ├── CustomReturnType.cs ├── CustomReturnTypeContext.cs ├── DatabaseSymbol.cs ├── DebugDisplay.cs ├── DynamicSymbol.cs ├── EmptyScope.cs ├── EntityGroupElementSymbol.cs ├── EntityGroupSymbol.cs ├── ErrorSymbol.cs ├── FunctionSymbol.cs ├── GraphModelSymbol.cs ├── GraphSymbol.cs ├── GroupSymbol.cs ├── OperatorKind.cs ├── OperatorSymbol.cs ├── OptionSymbol.cs ├── Parameter.cs ├── ParameterLayout.cs ├── ParameterLayouts.cs ├── ParameterSymbol.cs ├── ParameterTypeKind.cs ├── PatternSymbol.cs ├── ResultNameKind.cs ├── ReturnTypeKind.cs ├── ScalarSymbol.cs ├── ScalarTypes.cs ├── SchemaDisplay.cs ├── Scope.cs ├── Signature.cs ├── Symbol.cs ├── SymbolKind.cs ├── SymbolMatch.cs ├── TableState.cs ├── TableSymbol.cs ├── Tabularity.cs ├── TupleSymbol.cs ├── TypeFacts.cs ├── TypeSymbol.cs ├── VariableSymbol.cs └── VoidSymbol.cs ├── Syntax ├── CodeGen │ ├── GeneratedSyntaxNodes.cs │ └── GeneratedSyntaxNodes.tt ├── CustomNode.cs ├── FakeExpression.cs ├── SeparatedElement.cs ├── SyntaxCategory.cs ├── SyntaxElement.cs ├── SyntaxExtensions.cs ├── SyntaxFacts.cs ├── SyntaxKind.cs ├── SyntaxList.cs ├── SyntaxNode.cs ├── SyntaxNode_Semantics.cs ├── SyntaxToken.cs ├── SyntaxTree.cs ├── SyntaxVisitor.cs └── ValueInfo.cs ├── TestHelpers.cs ├── Utils ├── ArgumentCheckers.cs ├── Cancellation.cs ├── ConnectionInfo.cs ├── DictionaryExtensions.cs ├── EmptyReadOnlyList.cs ├── Ensure.cs ├── HashSetExtensions.cs ├── Interlocked.cs ├── ListExtensions.cs ├── MostRecentlyUsedCache.cs ├── ObjectPool.cs ├── Optional.cs ├── SafeList.cs ├── StringAndNumberComparer.cs ├── StringExtensions.cs ├── StringTable.cs ├── SubstringMap.cs ├── TextKeyedDictionary.cs ├── ThreadSafeDictionary.cs ├── UniqueNameTable.cs └── ValueComparer.cs ├── bridge.net.help.md ├── build-multiTarget.cmd ├── pack-multiTarget.cmd ├── readme.md └── version.txt /.gitattributes: -------------------------------------------------------------------------------- 1 | *.md text 2 | -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/SECURITY.md -------------------------------------------------------------------------------- /grammar/.antlr/Kql.interp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/grammar/.antlr/Kql.interp -------------------------------------------------------------------------------- /grammar/.antlr/KqlBaseListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/grammar/.antlr/KqlBaseListener.java -------------------------------------------------------------------------------- /grammar/.antlr/KqlLexer.interp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/grammar/.antlr/KqlLexer.interp -------------------------------------------------------------------------------- /grammar/.antlr/KqlLexer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/grammar/.antlr/KqlLexer.java -------------------------------------------------------------------------------- /grammar/.antlr/KqlListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/grammar/.antlr/KqlListener.java -------------------------------------------------------------------------------- /grammar/.antlr/KqlParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/grammar/.antlr/KqlParser.java -------------------------------------------------------------------------------- /grammar/.antlr/KqlTokens.interp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/grammar/.antlr/KqlTokens.interp -------------------------------------------------------------------------------- /grammar/.antlr/KqlTokens.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/grammar/.antlr/KqlTokens.java -------------------------------------------------------------------------------- /grammar/Kql.g4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/grammar/Kql.g4 -------------------------------------------------------------------------------- /grammar/KqlTokens.g4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/grammar/KqlTokens.g4 -------------------------------------------------------------------------------- /src/Kusto.Language.Bridge/.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language.Bridge/.npmrc -------------------------------------------------------------------------------- /src/Kusto.Language.Bridge/Kusto.Language.Bridge.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language.Bridge/Kusto.Language.Bridge.csproj -------------------------------------------------------------------------------- /src/Kusto.Language.Bridge/bridge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language.Bridge/bridge.json -------------------------------------------------------------------------------- /src/Kusto.Language.Bridge/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language.Bridge/package.json -------------------------------------------------------------------------------- /src/Kusto.Language.Bridge/publish.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language.Bridge/publish.cmd -------------------------------------------------------------------------------- /src/Kusto.Language.Bridge/runtests.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language.Bridge/runtests.cmd -------------------------------------------------------------------------------- /src/Kusto.Language.Generators/AriaBridgeCommandInfos.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language.Generators/AriaBridgeCommandInfos.cs -------------------------------------------------------------------------------- /src/Kusto.Language.Generators/ClusterManagerCommandInfos.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language.Generators/ClusterManagerCommandInfos.cs -------------------------------------------------------------------------------- /src/Kusto.Language.Generators/CodeGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language.Generators/CodeGenerator.cs -------------------------------------------------------------------------------- /src/Kusto.Language.Generators/CommandGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language.Generators/CommandGenerator.cs -------------------------------------------------------------------------------- /src/Kusto.Language.Generators/CommandInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language.Generators/CommandInfo.cs -------------------------------------------------------------------------------- /src/Kusto.Language.Generators/DataManagerCommandInfos.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language.Generators/DataManagerCommandInfos.cs -------------------------------------------------------------------------------- /src/Kusto.Language.Generators/EngineCommandInfos.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language.Generators/EngineCommandInfos.cs -------------------------------------------------------------------------------- /src/Kusto.Language.Generators/Grammar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language.Generators/Grammar.cs -------------------------------------------------------------------------------- /src/Kusto.Language.Generators/Kusto.Language.Generators.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language.Generators/Kusto.Language.Generators.csproj -------------------------------------------------------------------------------- /src/Kusto.Language.Generators/SyntaxNodeGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language.Generators/SyntaxNodeGenerator.cs -------------------------------------------------------------------------------- /src/Kusto.Language.Generators/SyntaxNodeInfos.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language.Generators/SyntaxNodeInfos.cs -------------------------------------------------------------------------------- /src/Kusto.Language.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language.sln -------------------------------------------------------------------------------- /src/Kusto.Language/Aggregates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Aggregates.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Binder/Binder_API.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Binder/Binder_API.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Binder/Binder_AsContextBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Binder/Binder_AsContextBuilder.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Binder/Binder_ContextBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Binder/Binder_ContextBuilder.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Binder/Binder_FunctionCalls.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Binder/Binder_FunctionCalls.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Binder/Binder_Misc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Binder/Binder_Misc.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Binder/Binder_Names.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Binder/Binder_Names.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Binder/Binder_NodeBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Binder/Binder_NodeBinder.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Binder/Binder_Operators.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Binder/Binder_Operators.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Binder/Binder_Projection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Binder/Binder_Projection.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Binder/Binder_SearchPredicateBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Binder/Binder_SearchPredicateBinder.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Binder/Binder_TablesAndColumns.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Binder/Binder_TablesAndColumns.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Binder/Binder_TreeBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Binder/Binder_TreeBinder.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Binder/CallSiteInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Binder/CallSiteInfo.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Binder/ColumnMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Binder/ColumnMap.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Binder/FunctionCallExpansion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Binder/FunctionCallExpansion.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Binder/FunctionCallInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Binder/FunctionCallInfo.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Binder/FunctionCallResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Binder/FunctionCallResult.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Binder/GlobalBindingCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Binder/GlobalBindingCache.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Binder/LocalBindingCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Binder/LocalBindingCache.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Binder/LocalScope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Binder/LocalScope.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Binder/ParameterMatchKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Binder/ParameterMatchKind.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Binder/ProjectionBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Binder/ProjectionBuilder.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Binder/ScopeKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Binder/ScopeKind.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Binder/SemanticInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Binder/SemanticInfo.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Diagnostics/Diagnostic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Diagnostics/Diagnostic.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Diagnostics/DiagnosticFacts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Diagnostics/DiagnosticFacts.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Directory.Build.props -------------------------------------------------------------------------------- /src/Kusto.Language/Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Directory.Build.targets -------------------------------------------------------------------------------- /src/Kusto.Language/Editor/AnalyzerInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Editor/AnalyzerInfo.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Editor/BrackettingStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Editor/BrackettingStyle.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Editor/ClassificationKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Editor/ClassificationKind.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Editor/ClassificationResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Editor/ClassificationResult.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Editor/ClassifiedRange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Editor/ClassifiedRange.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Editor/ClientDirective.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Editor/ClientDirective.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Editor/ClientDirectiveArgument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Editor/ClientDirectiveArgument.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Editor/ClientDirectiveInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Editor/ClientDirectiveInfo.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Editor/ClientParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Editor/ClientParameter.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Editor/ClusterReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Editor/ClusterReference.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Editor/CodeAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Editor/CodeAction.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Editor/CodeBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Editor/CodeBlock.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Editor/CodeKinds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Editor/CodeKinds.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Editor/CodeScript.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Editor/CodeScript.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Editor/CodeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Editor/CodeService.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Editor/CodeServiceFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Editor/CodeServiceFactory.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Editor/CodeServiceFeatures.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Editor/CodeServiceFeatures.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Editor/CommonCodeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Editor/CommonCodeService.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Editor/CompletionDisplay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Editor/CompletionDisplay.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Editor/CompletionHint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Editor/CompletionHint.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Editor/CompletionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Editor/CompletionInfo.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Editor/CompletionItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Editor/CompletionItem.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Editor/CompletionKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Editor/CompletionKind.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Editor/CompletionOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Editor/CompletionOptions.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Editor/CompletionPriority.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Editor/CompletionPriority.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Editor/CompletionText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Editor/CompletionText.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Editor/DatabaseReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Editor/DatabaseReference.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Editor/DisabledDiagnostics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Editor/DisabledDiagnostics.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Editor/EditString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Editor/EditString.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Editor/FindRelatedOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Editor/FindRelatedOptions.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Editor/FormattedText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Editor/FormattedText.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Editor/FormattingOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Editor/FormattingOptions.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Editor/Kusto/Actors/ActorUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Editor/Kusto/Actors/ActorUtilities.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Editor/Kusto/Actors/ConvertToMacroExpandActor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Editor/Kusto/Actors/ConvertToMacroExpandActor.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Editor/Kusto/Actors/DiagnosticFixActor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Editor/Kusto/Actors/DiagnosticFixActor.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Editor/Kusto/Actors/ExtractValueToLetStatementActor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Editor/Kusto/Actors/ExtractValueToLetStatementActor.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Editor/Kusto/Actors/InlineDatabaseFunctionActor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Editor/Kusto/Actors/InlineDatabaseFunctionActor.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Editor/Kusto/Actors/RenameActor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Editor/Kusto/Actors/RenameActor.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Editor/Kusto/Analyzers/AnalyzerUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Editor/Kusto/Analyzers/AnalyzerUtilities.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Editor/Kusto/Analyzers/AvoidJoinWithoutKindAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Editor/Kusto/Analyzers/AvoidJoinWithoutKindAnalyzer.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Editor/Kusto/Analyzers/AvoidStrlenWithDynamic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Editor/Kusto/Analyzers/AvoidStrlenWithDynamic.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Editor/Kusto/Analyzers/AvoidUsingContainsAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Editor/Kusto/Analyzers/AvoidUsingContainsAnalyzer.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Editor/Kusto/Analyzers/AvoidUsingFormatDateTimeInPredicateAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Editor/Kusto/Analyzers/AvoidUsingFormatDateTimeInPredicateAnalyzer.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Editor/Kusto/Analyzers/AvoidUsingHasWithIPv4Strings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Editor/Kusto/Analyzers/AvoidUsingHasWithIPv4Strings.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Editor/Kusto/Analyzers/AvoidUsingLegacyPartitionAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Editor/Kusto/Analyzers/AvoidUsingLegacyPartitionAnalyzer.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Editor/Kusto/Analyzers/AvoidUsingNullStringComparisonAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Editor/Kusto/Analyzers/AvoidUsingNullStringComparisonAnalyzer.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Editor/Kusto/Analyzers/AvoidUsingObsoleteFunctions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Editor/Kusto/Analyzers/AvoidUsingObsoleteFunctions.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Editor/Kusto/Analyzers/AvoidUsingToBoolOnNumericsAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Editor/Kusto/Analyzers/AvoidUsingToBoolOnNumericsAnalyzer.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Editor/Kusto/Analyzers/CalledFunctionHasErrorsAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Editor/Kusto/Analyzers/CalledFunctionHasErrorsAnalyzer.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Editor/Kusto/Analyzers/ColumnHasSameNameAsVariableAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Editor/Kusto/Analyzers/ColumnHasSameNameAsVariableAnalyzer.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Editor/Kusto/Analyzers/KustoAnalyzerCodes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Editor/Kusto/Analyzers/KustoAnalyzerCodes.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Editor/Kusto/Analyzers/NullAggregationAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Editor/Kusto/Analyzers/NullAggregationAnalyzer.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Editor/Kusto/Analyzers/PreferUsingMaterializedViewIntrinsicAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Editor/Kusto/Analyzers/PreferUsingMaterializedViewIntrinsicAnalyzer.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Editor/Kusto/Analyzers/PreferUsingOptimizedAlternative.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Editor/Kusto/Analyzers/PreferUsingOptimizedAlternative.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Editor/Kusto/Analyzers/StdevTimespanConversionAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Editor/Kusto/Analyzers/StdevTimespanConversionAnalyzer.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Editor/Kusto/AnnotatedParserFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Editor/Kusto/AnnotatedParserFinder.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Editor/Kusto/KustoActor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Editor/Kusto/KustoActor.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Editor/Kusto/KustoActors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Editor/Kusto/KustoActors.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Editor/Kusto/KustoAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Editor/Kusto/KustoAnalyzer.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Editor/Kusto/KustoAnalyzers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Editor/Kusto/KustoAnalyzers.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Editor/Kusto/KustoClassifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Editor/Kusto/KustoClassifier.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Editor/Kusto/KustoCodeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Editor/Kusto/KustoCodeService.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Editor/Kusto/KustoCodeServiceFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Editor/Kusto/KustoCodeServiceFactory.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Editor/Kusto/KustoCompleter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Editor/Kusto/KustoCompleter.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Editor/Kusto/KustoFixer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Editor/Kusto/KustoFixer.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Editor/Kusto/KustoFixers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Editor/Kusto/KustoFixers.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Editor/Kusto/KustoFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Editor/Kusto/KustoFormatter.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Editor/Kusto/KustoOutliner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Editor/Kusto/KustoOutliner.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Editor/Kusto/KustoQualifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Editor/Kusto/KustoQualifier.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Editor/Kusto/KustoQuickInfoBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Editor/Kusto/KustoQuickInfoBuilder.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Editor/Kusto/KustoReferenceFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Editor/Kusto/KustoReferenceFinder.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Editor/Kusto/KustoRelatedElementFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Editor/Kusto/KustoRelatedElementFinder.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Editor/Kusto/KustoServiceHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Editor/Kusto/KustoServiceHelpers.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Editor/Kusto/ParserPath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Editor/Kusto/ParserPath.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Editor/MinimalTextKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Editor/MinimalTextKind.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Editor/OffsetCodeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Editor/OffsetCodeService.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Editor/OutlineInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Editor/OutlineInfo.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Editor/OutlineRange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Editor/OutlineRange.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Editor/OutliningOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Editor/OutliningOptions.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Editor/PlacementStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Editor/PlacementStyle.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Editor/PositionBias.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Editor/PositionBias.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Editor/QuickInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Editor/QuickInfo.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Editor/QuickInfoOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Editor/QuickInfoOptions.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Editor/RelatedInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Editor/RelatedInfo.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Editor/SyntaxReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Editor/SyntaxReference.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Editor/TextEdit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Editor/TextEdit.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Editor/TextRange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Editor/TextRange.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Editor/UnknownCodeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Editor/UnknownCodeService.cs -------------------------------------------------------------------------------- /src/Kusto.Language/FunctionBodyFacts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/FunctionBodyFacts.cs -------------------------------------------------------------------------------- /src/Kusto.Language/FunctionHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/FunctionHelpers.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Functions.Convert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Functions.Convert.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Functions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Functions.cs -------------------------------------------------------------------------------- /src/Kusto.Language/GlobalState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/GlobalState.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Kusto.Language.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Kusto.Language.csproj -------------------------------------------------------------------------------- /src/Kusto.Language/KustoCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/KustoCache.cs -------------------------------------------------------------------------------- /src/Kusto.Language/KustoCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/KustoCode.cs -------------------------------------------------------------------------------- /src/Kusto.Language/KustoDialect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/KustoDialect.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Operators.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Operators.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Options.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Options.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Package.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Package.props -------------------------------------------------------------------------------- /src/Kusto.Language/Parser/CharScanners.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Parser/CharScanners.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Parser/CodeGen/AriaBridgeCommandGrammar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Parser/CodeGen/AriaBridgeCommandGrammar.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Parser/CodeGen/AriaBridgeCommandGrammar.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Parser/CodeGen/AriaBridgeCommandGrammar.tt -------------------------------------------------------------------------------- /src/Kusto.Language/Parser/CodeGen/AriaBridgeCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Parser/CodeGen/AriaBridgeCommands.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Parser/CodeGen/AriaBridgeCommands.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Parser/CodeGen/AriaBridgeCommands.tt -------------------------------------------------------------------------------- /src/Kusto.Language/Parser/CodeGen/ClusterManagerCommandGrammar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Parser/CodeGen/ClusterManagerCommandGrammar.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Parser/CodeGen/ClusterManagerCommandGrammar.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Parser/CodeGen/ClusterManagerCommandGrammar.tt -------------------------------------------------------------------------------- /src/Kusto.Language/Parser/CodeGen/ClusterManagerCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Parser/CodeGen/ClusterManagerCommands.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Parser/CodeGen/ClusterManagerCommands.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Parser/CodeGen/ClusterManagerCommands.tt -------------------------------------------------------------------------------- /src/Kusto.Language/Parser/CodeGen/CommandGenerator.t4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Parser/CodeGen/CommandGenerator.t4 -------------------------------------------------------------------------------- /src/Kusto.Language/Parser/CodeGen/DataManagerCommandGrammar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Parser/CodeGen/DataManagerCommandGrammar.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Parser/CodeGen/DataManagerCommandGrammar.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Parser/CodeGen/DataManagerCommandGrammar.tt -------------------------------------------------------------------------------- /src/Kusto.Language/Parser/CodeGen/DataManagerCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Parser/CodeGen/DataManagerCommands.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Parser/CodeGen/DataManagerCommands.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Parser/CodeGen/DataManagerCommands.tt -------------------------------------------------------------------------------- /src/Kusto.Language/Parser/CodeGen/EngineCommandGrammar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Parser/CodeGen/EngineCommandGrammar.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Parser/CodeGen/EngineCommandGrammar.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Parser/CodeGen/EngineCommandGrammar.tt -------------------------------------------------------------------------------- /src/Kusto.Language/Parser/CodeGen/EngineCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Parser/CodeGen/EngineCommands.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Parser/CodeGen/EngineCommands.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Parser/CodeGen/EngineCommands.tt -------------------------------------------------------------------------------- /src/Kusto.Language/Parser/Combinators/ArraySource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Parser/Combinators/ArraySource.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Parser/Combinators/Describer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Parser/Combinators/Describer.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Parser/Combinators/LimitSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Parser/Combinators/LimitSource.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Parser/Combinators/OffsetValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Parser/Combinators/OffsetValue.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Parser/Combinators/ParseResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Parser/Combinators/ParseResult.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Parser/Combinators/Parser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Parser/Combinators/Parser.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Parser/Combinators/ParserExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Parser/Combinators/ParserExtensions.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Parser/Combinators/ParserVisitors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Parser/Combinators/ParserVisitors.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Parser/Combinators/Parsers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Parser/Combinators/Parsers.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Parser/Combinators/Parsers/ApplyParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Parser/Combinators/Parsers/ApplyParser.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Parser/Combinators/Parsers/BestParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Parser/Combinators/Parsers/BestParser.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Parser/Combinators/Parsers/ConvertParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Parser/Combinators/Parsers/ConvertParser.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Parser/Combinators/Parsers/FailsParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Parser/Combinators/Parsers/FailsParser.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Parser/Combinators/Parsers/FirstParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Parser/Combinators/Parsers/FirstParser.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Parser/Combinators/Parsers/ForwardParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Parser/Combinators/Parsers/ForwardParser.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Parser/Combinators/Parsers/IfParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Parser/Combinators/Parsers/IfParser.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Parser/Combinators/Parsers/LimitParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Parser/Combinators/Parsers/LimitParser.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Parser/Combinators/Parsers/ListPrimaryParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Parser/Combinators/Parsers/ListPrimaryParser.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Parser/Combinators/Parsers/MapParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Parser/Combinators/Parsers/MapParser.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Parser/Combinators/Parsers/MatchParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Parser/Combinators/Parsers/MatchParser.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Parser/Combinators/Parsers/NotParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Parser/Combinators/Parsers/NotParser.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Parser/Combinators/Parsers/OneOrMoreParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Parser/Combinators/Parsers/OneOrMoreParser.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Parser/Combinators/Parsers/OptionalParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Parser/Combinators/Parsers/OptionalParser.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Parser/Combinators/Parsers/ProduceParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Parser/Combinators/Parsers/ProduceParser.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Parser/Combinators/Parsers/RequiredParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Parser/Combinators/Parsers/RequiredParser.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Parser/Combinators/Parsers/ResultPrimaryParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Parser/Combinators/Parsers/ResultPrimaryParser.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Parser/Combinators/Parsers/RuleParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Parser/Combinators/Parsers/RuleParser.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Parser/Combinators/Parsers/SequenceParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Parser/Combinators/Parsers/SequenceParser.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Parser/Combinators/Parsers/SourceConsumer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Parser/Combinators/Parsers/SourceConsumer.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Parser/Combinators/Parsers/SourceProducer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Parser/Combinators/Parsers/SourceProducer.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Parser/Combinators/Parsers/ZeroOrMoreParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Parser/Combinators/Parsers/ZeroOrMoreParser.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Parser/Combinators/PartialParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Parser/Combinators/PartialParser.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Parser/Combinators/RightParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Parser/Combinators/RightParser.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Parser/Combinators/SafeParse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Parser/Combinators/SafeParse.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Parser/Combinators/SafeScan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Parser/Combinators/SafeScan.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Parser/Combinators/Source.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Parser/Combinators/Source.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Parser/Combinators/TextSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Parser/Combinators/TextSource.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Parser/CommandFacts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Parser/CommandFacts.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Parser/CommandGrammar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Parser/CommandGrammar.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Parser/CommentFacts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Parser/CommentFacts.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Parser/KustoFacts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Parser/KustoFacts.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Parser/KustoFacts_Keywords.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Parser/KustoFacts_Keywords.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Parser/LexicalToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Parser/LexicalToken.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Parser/ParseOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Parser/ParseOptions.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Parser/PredefinedRuleParsers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Parser/PredefinedRuleParsers.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Parser/QueryGrammar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Parser/QueryGrammar.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Parser/QueryParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Parser/QueryParser.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Parser/ScannerExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Parser/ScannerExtensions.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Parser/ScriptFacts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Parser/ScriptFacts.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Parser/SyntaxParsers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Parser/SyntaxParsers.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Parser/TextFacts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Parser/TextFacts.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Parser/TokenParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Parser/TokenParser.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Parser/TriviaFacts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Parser/TriviaFacts.cs -------------------------------------------------------------------------------- /src/Kusto.Language/PlugIns.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/PlugIns.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Properties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Properties.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Kusto.Language/QueryOperatorParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/QueryOperatorParameters.cs -------------------------------------------------------------------------------- /src/Kusto.Language/ServerKinds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/ServerKinds.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Symbols/ArgumentKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Symbols/ArgumentKind.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Symbols/ClusterSymbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Symbols/ClusterSymbol.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Symbols/ColumnSymbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Symbols/ColumnSymbol.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Symbols/CombineKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Symbols/CombineKind.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Symbols/CommandSymbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Symbols/CommandSymbol.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Symbols/Conversion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Symbols/Conversion.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Symbols/CustomAvailabilityContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Symbols/CustomAvailabilityContext.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Symbols/CustomAvailabilty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Symbols/CustomAvailabilty.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Symbols/CustomReturnType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Symbols/CustomReturnType.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Symbols/CustomReturnTypeContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Symbols/CustomReturnTypeContext.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Symbols/DatabaseSymbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Symbols/DatabaseSymbol.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Symbols/DebugDisplay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Symbols/DebugDisplay.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Symbols/DynamicSymbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Symbols/DynamicSymbol.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Symbols/EmptyScope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Symbols/EmptyScope.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Symbols/EntityGroupElementSymbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Symbols/EntityGroupElementSymbol.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Symbols/EntityGroupSymbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Symbols/EntityGroupSymbol.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Symbols/ErrorSymbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Symbols/ErrorSymbol.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Symbols/FunctionSymbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Symbols/FunctionSymbol.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Symbols/GraphModelSymbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Symbols/GraphModelSymbol.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Symbols/GraphSymbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Symbols/GraphSymbol.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Symbols/GroupSymbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Symbols/GroupSymbol.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Symbols/OperatorKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Symbols/OperatorKind.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Symbols/OperatorSymbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Symbols/OperatorSymbol.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Symbols/OptionSymbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Symbols/OptionSymbol.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Symbols/Parameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Symbols/Parameter.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Symbols/ParameterLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Symbols/ParameterLayout.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Symbols/ParameterLayouts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Symbols/ParameterLayouts.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Symbols/ParameterSymbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Symbols/ParameterSymbol.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Symbols/ParameterTypeKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Symbols/ParameterTypeKind.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Symbols/PatternSymbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Symbols/PatternSymbol.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Symbols/ResultNameKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Symbols/ResultNameKind.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Symbols/ReturnTypeKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Symbols/ReturnTypeKind.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Symbols/ScalarSymbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Symbols/ScalarSymbol.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Symbols/ScalarTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Symbols/ScalarTypes.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Symbols/SchemaDisplay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Symbols/SchemaDisplay.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Symbols/Scope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Symbols/Scope.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Symbols/Signature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Symbols/Signature.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Symbols/Symbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Symbols/Symbol.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Symbols/SymbolKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Symbols/SymbolKind.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Symbols/SymbolMatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Symbols/SymbolMatch.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Symbols/TableState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Symbols/TableState.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Symbols/TableSymbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Symbols/TableSymbol.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Symbols/Tabularity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Symbols/Tabularity.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Symbols/TupleSymbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Symbols/TupleSymbol.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Symbols/TypeFacts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Symbols/TypeFacts.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Symbols/TypeSymbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Symbols/TypeSymbol.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Symbols/VariableSymbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Symbols/VariableSymbol.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Symbols/VoidSymbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Symbols/VoidSymbol.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Syntax/CodeGen/GeneratedSyntaxNodes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Syntax/CodeGen/GeneratedSyntaxNodes.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Syntax/CodeGen/GeneratedSyntaxNodes.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Syntax/CodeGen/GeneratedSyntaxNodes.tt -------------------------------------------------------------------------------- /src/Kusto.Language/Syntax/CustomNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Syntax/CustomNode.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Syntax/FakeExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Syntax/FakeExpression.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Syntax/SeparatedElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Syntax/SeparatedElement.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Syntax/SyntaxCategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Syntax/SyntaxCategory.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Syntax/SyntaxElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Syntax/SyntaxElement.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Syntax/SyntaxExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Syntax/SyntaxExtensions.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Syntax/SyntaxFacts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Syntax/SyntaxFacts.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Syntax/SyntaxKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Syntax/SyntaxKind.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Syntax/SyntaxList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Syntax/SyntaxList.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Syntax/SyntaxNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Syntax/SyntaxNode.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Syntax/SyntaxNode_Semantics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Syntax/SyntaxNode_Semantics.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Syntax/SyntaxToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Syntax/SyntaxToken.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Syntax/SyntaxTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Syntax/SyntaxTree.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Syntax/SyntaxVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Syntax/SyntaxVisitor.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Syntax/ValueInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Syntax/ValueInfo.cs -------------------------------------------------------------------------------- /src/Kusto.Language/TestHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/TestHelpers.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Utils/ArgumentCheckers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Utils/ArgumentCheckers.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Utils/Cancellation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Utils/Cancellation.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Utils/ConnectionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Utils/ConnectionInfo.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Utils/DictionaryExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Utils/DictionaryExtensions.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Utils/EmptyReadOnlyList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Utils/EmptyReadOnlyList.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Utils/Ensure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Utils/Ensure.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Utils/HashSetExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Utils/HashSetExtensions.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Utils/Interlocked.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Utils/Interlocked.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Utils/ListExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Utils/ListExtensions.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Utils/MostRecentlyUsedCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Utils/MostRecentlyUsedCache.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Utils/ObjectPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Utils/ObjectPool.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Utils/Optional.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Utils/Optional.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Utils/SafeList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Utils/SafeList.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Utils/StringAndNumberComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Utils/StringAndNumberComparer.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Utils/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Utils/StringExtensions.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Utils/StringTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Utils/StringTable.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Utils/SubstringMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Utils/SubstringMap.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Utils/TextKeyedDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Utils/TextKeyedDictionary.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Utils/ThreadSafeDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Utils/ThreadSafeDictionary.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Utils/UniqueNameTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Utils/UniqueNameTable.cs -------------------------------------------------------------------------------- /src/Kusto.Language/Utils/ValueComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/Utils/ValueComparer.cs -------------------------------------------------------------------------------- /src/Kusto.Language/bridge.net.help.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/bridge.net.help.md -------------------------------------------------------------------------------- /src/Kusto.Language/build-multiTarget.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/build-multiTarget.cmd -------------------------------------------------------------------------------- /src/Kusto.Language/pack-multiTarget.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/pack-multiTarget.cmd -------------------------------------------------------------------------------- /src/Kusto.Language/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Kusto-Query-Language/HEAD/src/Kusto.Language/readme.md -------------------------------------------------------------------------------- /src/Kusto.Language/version.txt: -------------------------------------------------------------------------------- 1 | 12.3.1 --------------------------------------------------------------------------------