Exemplo n.º 1
0
        private static void AssertType(string expectedType, Scope scope, string key)
        {
            DataType value;

            if (scope.TryGet(key, out value))
            {
                expectedType.ShouldEqual(value.ToString());
            }
            else
            {
                throw new Exception("Failed to look up the type of '" + key + "' in the Scope");
            }
        }
Exemplo n.º 2
0
        private static void AssertType(string expectedType, Scope scope, string key)
        {
            DataType value;

            if (scope.TryGet(key, out value))
                expectedType.ShouldEqual(value.ToString());
            else
                throw new Exception("Failed to look up the type of '" + key + "' in the Scope");
        }
Exemplo n.º 3
0
Arquivo: Scope.cs Projeto: plioi/rook
 public override bool TryGet(string identifier, out DataType type)
 {
     return(members.TryGet(identifier, out type) || parent.TryGet(identifier, out type));
 }