this repo has no description
1/* Copyright (c) Facebook, Inc. and its affiliates. (http://www.facebook.com) */
2#pragma once
3
4#include "handles.h"
5#include "objects.h"
6#include "thread.h"
7
8namespace py {
9
10// Computes the complete MRO for the type's ancestors via C3 linearization
11// based on the types bases.
12RawObject computeMro(Thread* thread, const Type& type);
13
14} // namespace py