⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 node.aso

📁 还是一个词法分析程序
💻 ASO
字号:
;-------------------------------------
;-- Define Linked-List Node objects --
;-------------------------------------

GLOBAL PASCAL node_construct:far
GLOBAL PASCAL node_destroy:far
GLOBAL PASCAL node_init:far
GLOBAL PASCAL node_deinit:far
GLOBAL PASCAL node_adv:near
GLOBAL PASCAL node_back:near

;This object is designed to be inherited by any actual data object that is
;placed in the Linked-List, on the Queue or the Stack defined in this module.

;** Define Linked-List Node object **

node STRUC GLOBAL METHOD {
  construct:dword = node_construct		;node constructor routine
  destroy:dword = node_destroy			;node destructor routine
  init:dword = node_init			;node initialization routine
  deinit:dword = node_deinit			;node deinitialization routine
  virtual next:word = node_adv			;next node routine
  virtual prev:word = node_back			;previous node routine
  }
  node_next	dd ?				;next node pointer
  node_prev	dd ?				;prev node pointer
ends

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -