1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright (c) ZeroC, Inc.

use super::super::*;
use crate::slice_file::Span;

#[derive(Clone, Debug)]
pub struct Identifier {
    pub value: String,
    pub span: Span,
}

implement_Element_for!(Identifier, "identifier");
implement_Symbol_for!(Identifier);