Method code for $parse_lib.parse_method_access()

[Turn off line numbering]
  1: arg str;
  2: var t;
  3: 
  4: for t in (["pub?lic", "pro?tected", "pri?vate", "r?oot", "dr?iver", "f?rob"]) {
  5:     if (match_template(str, t))
  6:         return tosym(t.strip("?"));
  7: }
  8: return 'public;

// Created 27-Mar-1995 as a part of ColdCore, see: @help Credit

Tlon