popcode.h 690 B

12345678910111213141516
  1. //-------------------------------------------------------------------------------------------------------
  2. // Copyright (C) Microsoft. All rights reserved.
  3. // Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
  4. //-------------------------------------------------------------------------------------------------------
  5. #pragma once
  6. /***************************************************************************
  7. Node operators (indicates semantics of the parse node)
  8. ***************************************************************************/
  9. enum OpCode : byte
  10. {
  11. #define PTNODE(nop,sn,pc,nk,ok,json) nop,
  12. #include "ptlist.h"
  13. knopLim
  14. };