Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add .getObjectType() to the TypeChecker #61517

Open
6 tasks done
mrazauskas opened this issue Apr 1, 2025 · 0 comments
Open
6 tasks done

Add .getObjectType() to the TypeChecker #61517

mrazauskas opened this issue Apr 1, 2025 · 0 comments

Comments

@mrazauskas
Copy link

mrazauskas commented Apr 1, 2025

πŸ” Search Terms

"getNonPrimitiveType", "getObjectType", "TypeChecker"

βœ… Viability Checklist

⭐ Suggestion

I would like to propose adding .getObjectType() method to the TypeChecker. Similar to methods like .getAnyType() or .getUndefinedType(), the returned type of .getObjectType() would be the Type of the object type.

Alternative name: . getNonPrimitiveType(). Same as the variable is named:

var nonPrimitiveType = createIntrinsicType(TypeFlags.NonPrimitive, "object");

πŸ“ƒ Motivating Example

If I see it right object is the only intrinsic / built-in type that does not have a .get method. Might be this is intentional and also might be object isn’t considered intrinsic.

The motivation is to fill in a gap. If there is one.

Somewhat similar to: #59256

πŸ’» Use Cases

  1. What do you want to use this for?

The project I am working on is using TypeScript programatically. The object type is used to validate user input. A user provides a type and the logic checks if that type is assignable to the object type. If not, a friendly message is printed that an object type was expected.

  1. What shortcomings exist with current approaches?

As a workaround, I create a fake type. Obviously this cannot work with TypeScript 7 anymore.

  1. What workarounds are you using in the meantime?
const nonPrimitiveType = { flags: this.#compiler.TypeFlags.NonPrimitive } as ts.Type; // the intrinsic 'object' type

if (!typeChecker.isTypeAssignableTo(sourceType, nonPrimitiveType)) {
  // skipped
};
@mrazauskas mrazauskas changed the title Add . getObjectType() to the TypeChecker Add .getObjectType() to the TypeChecker Apr 1, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant