forked from IronLanguages/ironpython3
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPythonNarrowing.cs
More file actions
38 lines (33 loc) · 1.31 KB
/
PythonNarrowing.cs
File metadata and controls
38 lines (33 loc) · 1.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the Apache 2.0 License.
// See the LICENSE file in the project root for more information.
using Microsoft.Scripting.Actions.Calls;
namespace IronPython.Runtime {
/// <summary>
/// Provides human readable names for how Python maps the various DLR NarrowingLevel's.
/// </summary>
internal static class PythonNarrowing {
/// <summary>
/// No narrowing conversions are performed
/// </summary>
public const NarrowingLevel None = NarrowingLevel.None;
/// <summary>
/// Double/Single to Decimal
/// PythonTuple to Array
/// Generic conversions
/// BigInteger to Int64
/// </summary>
public const NarrowingLevel BinaryOperator = NarrowingLevel.Two;
/// <summary>
/// Numeric conversions excluding from floating point values
/// Boolean conversions
/// Delegate conversions
/// Enumeration conversions
/// </summary>
public const NarrowingLevel IndexOperator = NarrowingLevel.Three;
/// <summary>
/// Enables Python protocol conversions (__int__, etc...)
/// </summary>
public const NarrowingLevel All = NarrowingLevel.All;
}
}