-
Notifications
You must be signed in to change notification settings - Fork 333
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Massive rename of public surface area to cleanup and move to "Microsoft.PowerFx" namespace.
- Loading branch information
Showing
390 changed files
with
852 additions
and
1,059 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
src/libraries/Microsoft.PowerFx.Core/Binding/BindInfo/NameInfo.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
62 changes: 62 additions & 0 deletions
62
src/libraries/Microsoft.PowerFx.Core/Errors/ErrorSeverity.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
// Copyright (c) Microsoft Corporation. | ||
// Licensed under the MIT license. | ||
|
||
namespace Microsoft.PowerFx | ||
{ | ||
/// <summary> | ||
/// Severity of errors provided. | ||
/// </summary> | ||
public enum ErrorSeverity | ||
{ | ||
// These values are a mirror of Microsoft.PowerFx.Core.Errors.DocumentErrorSeverity, | ||
// which is an internal type with [TransportType] attribute. | ||
|
||
#pragma warning disable SA1300 // Element should begin with upper-case letter | ||
_Min = Verbose, | ||
#pragma warning restore SA1300 // Element should begin with upper-case letter | ||
|
||
/// <summary> | ||
/// A suggestion about possible high-level improvements or refactoring that may help the user | ||
/// get a better app experience. | ||
/// Examples: performance changes | ||
/// </summary> | ||
Verbose = 0, | ||
|
||
/// <summary> | ||
/// A suggestion about possible improvements or refactoring that may help the user | ||
/// get a better app experience. | ||
/// Examples: refactoring suggestions. | ||
/// </summary> | ||
Suggestion, | ||
|
||
/// <summary> | ||
/// A warning about a potential problem. These will typically not prevent normal rule execution. | ||
/// Examples: certain type errors/warnings. | ||
/// </summary> | ||
Warning, | ||
|
||
/// <summary> | ||
/// A moderate error that may prevent rules from executing properly. | ||
/// Examples: Service unavailable, service schema changed. | ||
/// </summary> | ||
Moderate, | ||
|
||
/// <summary> | ||
/// A severe error that will likely prevent rules from executing properly. | ||
/// This type of errors prevents generation of code and publishing. | ||
/// Examples: invocation of unknown functions, invalid names, certain type errors. | ||
/// </summary> | ||
Severe, | ||
|
||
/// <summary> | ||
/// A critical error, e.g. an error that prevents rules from executing properly. | ||
/// This type of errors prevent generation of code and publishing. | ||
/// Example: syntax errors. | ||
/// </summary> | ||
Critical, | ||
|
||
#pragma warning disable SA1300 // Element should begin with upper-case letter | ||
_Lim = Critical, | ||
#pragma warning restore SA1300 // Element should begin with upper-case letter | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.