2016-11-17 05:15:24 +08:00
|
|
|
//===-- argdumper.cpp --------------------------------------------*- C++-*-===//
|
2015-02-10 08:30:07 +08:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "lldb/Core/StreamString.h"
|
|
|
|
#include "lldb/Utility/JSON.h"
|
|
|
|
|
|
|
|
#include <iostream>
|
|
|
|
|
|
|
|
using namespace lldb_private;
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
int main(int argc, char *argv[]) {
|
|
|
|
JSONArray::SP arguments(new JSONArray());
|
|
|
|
for (int i = 1; i < argc; i++) {
|
|
|
|
arguments->AppendObject(JSONString::SP(new JSONString(argv[i])));
|
|
|
|
}
|
|
|
|
|
|
|
|
JSONObject::SP object(new JSONObject());
|
|
|
|
object->SetObject("arguments", arguments);
|
|
|
|
|
|
|
|
StreamString ss;
|
|
|
|
|
|
|
|
object->Write(ss);
|
|
|
|
|
|
|
|
std::cout << ss.GetData() << std::endl;
|
|
|
|
|
|
|
|
return 0;
|
2015-02-10 08:30:07 +08:00
|
|
|
}
|