view Implab/Formats/JSON/JSONElementContext.cs @ 173:ecfece82ca11 ref20160224

Working on text scanner
author cin
date Tue, 15 Mar 2016 02:11:06 +0300
parents e227e78d72e4
children d5c5db0335ee
line wrap: on
line source

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