예제 #1
0
파일: TypeCodec.cs 프로젝트: anthrax3/Flame
 private bool AssertDecodePointerKind(
     LNode node,
     DecoderState state,
     out PointerKind kind)
 {
     return(state.AssertDecodeEnum(
                node,
                pointerKindDecoding,
                "pointer kind",
                out kind));
 }