1 | // Copyright (c) 2010-2013 AlphaSierraPapa for the SharpDevelop Team |
---|
2 | // |
---|
3 | // Permission is hereby granted, free of charge, to any person obtaining a copy of this |
---|
4 | // software and associated documentation files (the "Software"), to deal in the Software |
---|
5 | // without restriction, including without limitation the rights to use, copy, modify, merge, |
---|
6 | // publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons |
---|
7 | // to whom the Software is furnished to do so, subject to the following conditions: |
---|
8 | // |
---|
9 | // The above copyright notice and this permission notice shall be included in all copies or |
---|
10 | // substantial portions of the Software. |
---|
11 | // |
---|
12 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, |
---|
13 | // INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR |
---|
14 | // PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE |
---|
15 | // FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR |
---|
16 | // OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
---|
17 | // DEALINGS IN THE SOFTWARE. |
---|
18 | |
---|
19 | using System; |
---|
20 | using ICSharpCode.NRefactory.Semantics; |
---|
21 | using ICSharpCode.NRefactory.TypeSystem; |
---|
22 | |
---|
23 | namespace ICSharpCode.NRefactory.CSharp.Resolver |
---|
24 | { |
---|
25 | /// <summary> |
---|
26 | /// Represents an explicitly applied conversion (CastExpression or AsExpression) |
---|
27 | /// (a result belonging to an AST node; not implicitly inserted 'between' nodes). |
---|
28 | /// </summary> |
---|
29 | class CastResolveResult : ConversionResolveResult |
---|
30 | { |
---|
31 | // The reason this class exists is that for code like this: |
---|
32 | // int i = ...; |
---|
33 | // long n = 0; |
---|
34 | // n = n + (long)i; |
---|
35 | // The resolver will produce (and process) an CastResolveResult for the cast, |
---|
36 | // (with Conversion = implicit numeric conversion) |
---|
37 | // and then pass it into CSharpResolver.ResolveBinaryOperator(). |
---|
38 | // That method normally wraps input arguments into another conversion |
---|
39 | // (the implicit conversion applied by the operator). |
---|
40 | // However, identity conversions do not cause the creation of ConversionResolveResult instances, |
---|
41 | // so the OperatorResolveResult's argument will be the CastResolveResult |
---|
42 | // of the cast. |
---|
43 | // Without this class (and instead using ConversionResolveResult for both purposes), |
---|
44 | // it would be hard for the conversion-processing code |
---|
45 | // in the ResolveVisitor to distinguish the existing conversion from the CastExpression |
---|
46 | // from an implicit conversion introduced by the binary operator. |
---|
47 | // This would cause the conversion to be processed yet again. |
---|
48 | // The following unit tests would fail without this class: |
---|
49 | // * CastTests.ExplicitConversion_In_Assignment |
---|
50 | // * FindReferencesTest.FindReferencesForOpImplicitInAssignment_ExplicitCast |
---|
51 | // * CS0029InvalidConversionIssueTests.ExplicitConversionFromUnknownType |
---|
52 | |
---|
53 | public CastResolveResult(ConversionResolveResult rr) |
---|
54 | : base(rr.Type, rr.Input, rr.Conversion, rr.CheckForOverflow) |
---|
55 | { |
---|
56 | } |
---|
57 | |
---|
58 | public CastResolveResult(IType targetType, ResolveResult input, Conversion conversion, bool checkForOverflow) |
---|
59 | : base(targetType, input, conversion, checkForOverflow) |
---|
60 | { |
---|
61 | } |
---|
62 | } |
---|
63 | } |
---|