view Implab/Formats/JSON/JSONElementContext.cs @ 180:c32688129f14 ref20160224

refactoring complete, JSONParser rewritten
author cin
date Thu, 24 Mar 2016 02:30:46 +0300
parents d5c5db0335ee
children
line wrap: on
line source

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