Example #1
0
        /// <summary>
        /// ref_cursor_type_def :
        ///     REF CURSOR(RETURN type_spec)?
        ///     ;
        /// </summary>
        /// <param name="context"></param>
        /// <returns></returns>
        public override object VisitRef_cursor_type_def([NotNull] PlSqlParser.Ref_cursor_type_defContext context)
        {
            var result = new ORefCursorTypeDef()
            {
            };

            var type_spec = context.type_spec();

            if (type_spec != null)
            {
                result.Return = (OTypeReference)VisitType_spec(type_spec);
            }

            Debug.Assert(result != null);
            return(result);
        }
Example #2
0
 public void VisitRefCursorTypeDef(ORefCursorTypeDef oRefCursorTypeDef)
 {
     throw new NotImplementedException();
 }
Example #3
0
 public void VisitRefCursorTypeDef(ORefCursorTypeDef oRefCursorTypeDef)
 {
 }