Skip to content
This repository has been archived by the owner on Nov 1, 2020. It is now read-only.

Commit

Permalink
Unix test fix
Browse files Browse the repository at this point in the history
Add execute permission to Unix build script
Check EETypes can be generated for ExternEETypeSymbols
  • Loading branch information
nattress committed Nov 4, 2016
1 parent 485d974 commit 773496f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,12 @@ public sealed class ExternEETypeSymbolNode : ExternSymbolNode, IEETypeNode
{
private TypeDesc _type;

public ExternEETypeSymbolNode(TypeDesc type)
public ExternEETypeSymbolNode(NodeFactory factory, TypeDesc type)
: base("__EEType_" + NodeFactory.NameMangler.GetMangledTypeName(type))
{
_type = type;

EETypeNode.CheckCanGenerateEEType(factory, type);
}

public TypeDesc Type
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ private void CreateNodeCaches()
}
else
{
return new ExternEETypeSymbolNode(type);
return new ExternEETypeSymbolNode(this, type);
}
});

Expand All @@ -117,7 +117,7 @@ private void CreateNodeCaches()
}
else
{
return new ExternEETypeSymbolNode(type);
return new ExternEETypeSymbolNode(this, type);
}
});

Expand Down
Empty file.

0 comments on commit 773496f

Please sign in to comment.