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

📄 testmixedmodecaps.out

📁 格式化源码的最新板
💻 OUT
字号:
unit TestMixedModeCaps;

{ AFS 9 July 2K test local types

  This code compiles, but is not semantically meaningfull.
  It is test cases for the code-formating utility

  directives .. reserved words in one context, not reserved in another
  They have a standard case when they are reserved, set by user when not

}

interface

type
  TMixedMode = class(TObject)
  private
    fiSafeCall: integer;
  public
    { property directive used as procedure name
      and procedure directive used as property name }
    property SafeCall: integer Read fiSafeCall Write fiSafeCall;

    procedure Read; safecall;
    procedure Write; safecall;

  end;

implementation

{ TMixedMode }

procedure TMixedMode.Read;
begin
  // do nothing
end;

procedure TMixedMode.Write;
begin
  // do nothing
end;

end.

⌨️ 快捷键说明

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