blob: ba018edbc3b4afc8f512ecdab438eb638f2586e7 [file] [log] [blame] [edit]
// Copyright 2018 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "garnet/bin/zxdb/symbols/variable.h"
namespace zxdb {
Variable::Variable(int tag) : Value(tag) {}
Variable::~Variable() = default;
const Variable* Variable::AsVariable() const { return this; }
} // namespace zxdb