Skip to content

Commit

Permalink
trivia
Browse files Browse the repository at this point in the history
  • Loading branch information
AqlaSolutions committed Mar 6, 2016
1 parent 17fe3dc commit c58dfa9
Show file tree
Hide file tree
Showing 5 changed files with 2 additions and 12 deletions.
2 changes: 1 addition & 1 deletion RunSharpShared/Aqla/ContextualAssignment.cs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

namespace TriAxis.RunSharp.Operands
{
public class ContextualAssignment : ContextualOperand, IAssignmentInternal
public class ContextualAssignment : ContextualOperand, IAssignment
{
protected override void ResetLeakedStateRecursively()
{
Expand Down
2 changes: 1 addition & 1 deletion RunSharpShared/Operands/Assignment.cs
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

namespace TriAxis.RunSharp.Operands
{
public class Assignment : Operand, IAssignmentInternal
public class Assignment : Operand, IAssignment
{
protected override bool DetectsLeaking => false;

Expand Down
7 changes: 0 additions & 7 deletions RunSharpShared/Operands/IAssignmentInternal.cs

This file was deleted.

1 change: 0 additions & 1 deletion RunSharpShared/RunSharpShared.projitems
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@
<Compile Include="$(MSBuildThisFileDirectory)Operands\Field.cs" />
<Compile Include="$(MSBuildThisFileDirectory)Operands\FloatLiteral.cs" />
<Compile Include="$(MSBuildThisFileDirectory)Operands\IAssignment.cs" />
<Compile Include="$(MSBuildThisFileDirectory)Operands\IAssignmentInternal.cs" />
<Compile Include="$(MSBuildThisFileDirectory)Operands\InitializedArray.cs" />
<Compile Include="$(MSBuildThisFileDirectory)Operands\IntLiteral.cs" />
<Compile Include="$(MSBuildThisFileDirectory)Operands\Invocation.cs" />
Expand Down
2 changes: 0 additions & 2 deletions RunSharpShared/SignatureGen.cs
Original file line number Diff line number Diff line change
Expand Up @@ -52,14 +52,12 @@ public interface ISignatureGen

public abstract class SignatureGen<T> : MemberGenBase<T>, ISignatureGen where T : SignatureGen<T>
{
public ITypeMapper TypeMapper { get; }
readonly ParameterGenCollection _parameters;
internal readonly T TypedThis;

internal SignatureGen(Type returnType, ITypeMapper typeMapper)
: base(typeMapper)
{
TypeMapper = typeMapper;
_parameters = new ParameterGenCollection(typeMapper);
TypedThis = (T)this;
if (returnType != null)
Expand Down

0 comments on commit c58dfa9

Please sign in to comment.