2019-07-10 09:43:32 -07:00
|
|
|
/*
|
2021-12-30 15:06:42 -08:00
|
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
2019-07-10 09:43:32 -07:00
|
|
|
*
|
2019-10-15 12:33:16 -07:00
|
|
|
* This source code is licensed under the MIT license found in the
|
|
|
|
|
* LICENSE file in the root directory of this source tree.
|
2019-07-10 09:43:32 -07:00
|
|
|
*/
|
2019-10-15 12:33:16 -07:00
|
|
|
|
2019-07-10 09:43:32 -07:00
|
|
|
#include "hermes/Support/StringTable.h"
|
2020-07-01 04:33:59 -07:00
|
|
|
#include "llvh/Support/raw_ostream.h"
|
2019-07-10 09:43:32 -07:00
|
|
|
|
|
|
|
|
namespace hermes {
|
|
|
|
|
|
2020-07-01 04:33:59 -07:00
|
|
|
llvh::raw_ostream &operator<<(llvh::raw_ostream &os, Identifier id) {
|
2019-07-10 09:43:32 -07:00
|
|
|
return os << id.str();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} // namespace hermes
|