You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
914 B
38 lines
914 B
/*
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
#include "AttrParameterVectorStream.h"
|
|
|
|
#include <llvm/Support/raw_ostream.h>
|
|
|
|
namespace ASTLib {
|
|
|
|
AttrParameterVectorStream &AttrParameterVectorStream::operator<<(
|
|
const std::string &str) {
|
|
// hack to get rid of spurious leading " "s
|
|
if (str != " ") {
|
|
Content.push_back(str);
|
|
}
|
|
return *this;
|
|
}
|
|
|
|
AttrParameterVectorStream &AttrParameterVectorStream::operator<<(
|
|
const unsigned int x) {
|
|
return operator<<(std::to_string(x));
|
|
}
|
|
|
|
AttrParameterVectorStream &AttrParameterVectorStream::operator<<(
|
|
const llvm::VersionTuple &verTup) {
|
|
return operator<<(verTup.getAsString());
|
|
}
|
|
|
|
const std::vector<std::string> &AttrParameterVectorStream::getContent() {
|
|
return Content;
|
|
}
|
|
|
|
} // end of namespace ASTLib
|