view Implab/Formats/JSON/JSONElementContext.cs @ 195:ea485487a424 v2

minor changes
author cin
date Wed, 04 May 2016 12:28:08 +0300
parents c32688129f14
children
line wrap: on
line source

namespace Implab.Formats.JSON {
    /// <summary>
    /// internal
    /// </summary>
    enum JSONElementContext {
        None,
        Object,
        Array,
        Closed
    }
}