Home | History | Annotate | Download | only in src

Lines Matching refs:Is

2 // Use of this source code is governed by a BSD-style license that can be
17 if (T::Any()->Is(type)) return HType::Any();
18 if (type->Is(T::None())) return HType::None();
19 if (type->Is(T::SignedSmall())) return HType::Smi();
20 if (type->Is(T::Number())) return HType::TaggedNumber();
21 if (type->Is(T::Null())) return HType::Null();
22 if (type->Is(T::String())) return HType::String();
23 if (type->Is(T::Boolean())) return HType::Boolean();
24 if (type->Is(T::Undefined())) return HType::Undefined();
25 if (type->Is(T::Array())) return HType::JSArray();
26 if (type->Is(T::Object())) return HType::JSObject();