PN_STR            574 core/compile.c         if (use == PN_use) potion_send(class, PN_STR("import"), list);
PN_STR            575 core/compile.c         else if (use == PN_no) potion_send(class, PN_STR("unimport"), list);
PN_STR           1071 core/compile.c   PN PN_clone = PN_STR("clone");
PN_STR            141 core/file.c          case PN_TBYTES:  len = potion_send(obj, PN_STR("length")); ptr = PN_STR_PTR(obj); break;
PN_STR             55 core/primitive.c     return potion_send(PN_STR(""), PN_cmp, value);
PN_STR             94 core/primitive.c   potion_send(nil_vt, PN_def, PN_STR("defined"), PN_FALSE);
PN_STR             95 core/primitive.c   potion_send(P->lobby, PN_def, PN_STR("defined"), PN_TRUE);
PN_STR             99 core/primitive.c   potion_send(nil_vt, PN_def, PN_STR("nil?"), PN_TRUE);
PN_STR            100 core/primitive.c   potion_send(P->lobby, PN_def, PN_STR("nil?"), PN_FALSE);
PN_STR            324 core/string.c    potion_bytes_append(P, 0, bytes, obj ? potion_send(obj, PN_string) : PN_STR(NIL_NAME));
PN_STR            391 core/vm.c          PN debug = potion_message(P, self, PN_STR("debug")); // find debug object =>0
PN_STR            393 core/vm.c          PN loopmeth = potion_message(P, debug, PN_STR("loop"));
PN_STR            400 core/vm.c            PN_TUP(PN_AST_(EXPR, PN_PUSH(PN_TUP(PN_AST_(MSG, PN_STR("debug"))),
PN_STR            401 core/vm.c      	PN_AST2_(MSG, PN_STR("loop"),
PN_STR            429 core/vm.c      	  if (str == PN_STR(":c"))         { break; }
PN_STR            430 core/vm.c      	  else if (str == PN_STR(":q"))    { P->flags -= EXEC_DEBUG; break; }
PN_STR            431 core/vm.c      	  else if (str == PN_STR(":exit")) { exit(0); }
PN_STR            432 core/vm.c      	  else if (str == PN_STR(":h"))    {
PN_STR            452 core/vm.c      	else if (str && str != PN_STR("")) {
PN_STR            459 core/vm.c      	  PN code = potion_parse(P, potion_send(str, PN_STR("bytes")), "-d");
PN_STR            464 core/vm.c                PN_TUPLE_AT(sig,0) = PN_STR("r"); //regs
PN_STR            465 core/vm.c                PN_TUPLE_AT(sig,1) = PN_STR("l"); //locals
PN_STR            466 core/vm.c                PN_TUPLE_AT(sig,2) = PN_STR("u"); //upvals
PN_STR            467 core/vm.c                PN_TUPLE_AT(sig,3) = PN_STR("v"); //values
PN_STR            468 core/vm.c                PN_TUPLE_AT(sig,4) = PN_STR("p"); //paths
PN_STR            356 front/p2.c         for (; i < argc; i++) PN_PUSH(args, PN_STR(argv[i]));
PN_STR            357 front/p2.c         potion_define_global(P, PN_STR("@ARGV"), args);
PN_STR            359 front/p2.c           potion_define_global(P, PN_STR("$0"), PN_STR("-e"));
PN_STR            363 front/p2.c           potion_define_global(P, PN_STR("$0"), PN_STR(fn));
PN_STR            368 front/p2.c         potion_define_global(P, PN_STR("$0"), PN_STR("-i"));
PN_STR            377 front/potion.c     if (buf == PN_NIL) { fn = argv[i++]; PN_PUSH(args, PN_STR(fn)); }
PN_STR            378 front/potion.c     else { PN_PUSH(args, PN_STR("-e")); }
PN_STR            379 front/potion.c     for (; i < argc; i++) PN_PUSH(args, PN_STR(argv[i]));
PN_STR            380 front/potion.c     potion_define_global(P, PN_STR("argv"), args);
PN_STR            390 front/potion.c     PN_PUSH(args, PN_STR(""));
PN_STR            391 front/potion.c     potion_define_global(P, PN_STR("argv"), args);
PN_STR            149 lib/aio.c        if (!potion_bind(P, self, PN_STR("Aio_"_XSTR(T)))) return potion_type_error_want(P, self, ""_XSTR(T))
PN_STR            158 lib/aio.c              !potion_bind(P, stream, PN_STR("listen")))           \
PN_STR            163 lib/aio.c        if (!potion_bind(P, self, PN_STR("Aio_"_XSTR(T)))) {                  \
PN_STR            178 lib/aio.c              !potion_bind(P, stream, PN_STR("listen")))           \
PN_STR            634 lib/aio.c        if (!potion_bind(P, data, PN_STR("Aio_connect"))) {
PN_STR            754 lib/aio.c        return PN_STR(uv_version_string());
PN_STR            964 lib/aio.c        potion_obj_set(P, cl, udp, PN_STR("membership"),
PN_STR            975 lib/aio.c        potion_obj_set(P, cl, udp, PN_STR("multicast_loop"),
PN_STR            985 lib/aio.c        potion_obj_set(P, cl, udp, PN_STR("multicast_ttl"), ttl);
PN_STR            994 lib/aio.c        potion_obj_set(P, cl, udp, PN_STR("broadcast"),
PN_STR           1004 lib/aio.c        potion_obj_set(P, cl, udp, PN_STR("ttl"), ttl);
PN_STR           1529 lib/aio.c        v = potion_obj_get(P, cl, options, PN_STR("args"));
PN_STR           1752 lib/aio.c        potion_define_global(P, PN_STR("Aio"), aio_vt);
PN_STR           1756 lib/aio.c        potion_define_global(P, PN_STR("Aio_" _XSTR(T)), aio_##T##_vt); \
PN_STR           1764 lib/aio.c        potion_define_global(P, PN_STR("Aio_" _XSTR(T)), aio_##T##_vt); \
PN_STR           1771 lib/aio.c        potion_define_global(P, PN_STR("AIO_"_XSTR(name)), PN_NUM(UV_##name))
PN_STR           1833 lib/aio.c        t->set[i++] = PN_STR("broadcast");
PN_STR           1834 lib/aio.c        t->set[i++] = PN_STR("membership");
PN_STR           1835 lib/aio.c        t->set[i++] = PN_STR("multicast_loop");
PN_STR           1836 lib/aio.c        t->set[i++] = PN_STR("multicast_ttl");
PN_STR           1837 lib/aio.c        t->set[i++] = PN_STR("ttl");
PN_STR           1840 lib/aio.c        potion_define_global(P, PN_STR("Aio_udp"), aio_udp_vt);
PN_STR           1849 lib/aio.c        t->set[i++] = PN_STR("args");
PN_STR           1850 lib/aio.c        t->set[i++] = PN_STR("cwd");
PN_STR           1851 lib/aio.c        t->set[i++] = PN_STR("env");
PN_STR           1852 lib/aio.c        t->set[i++] = PN_STR("exit_cb");
PN_STR           1853 lib/aio.c        t->set[i++] = PN_STR("flags");
PN_STR           1854 lib/aio.c        t->set[i++] = PN_STR("gid");
PN_STR           1855 lib/aio.c        t->set[i++] = PN_STR("stdio");
PN_STR           1856 lib/aio.c        t->set[i++] = PN_STR("uid");
PN_STR           1859 lib/aio.c        potion_define_global(P, PN_STR("Aio_process_options"), aio_po_vt);
PN_STR           1897 lib/aio.c        potion_define_global(P, PN_STR("Aio_process"), aio_process_vt);
PN_STR            159 lib/buffile.c      size = potion_send(buf, PN_STR("length"));
PN_STR            287 lib/buffile.c    PN ffile_vt = potion_type_new2(P, PN_TUSER, PN_VTABLE(PN_TFILE), PN_STR("BufFile"));
PN_STR            531 syn/syntax-p5.y     # | assign t:arg-type { SRC_TPL2(PN_STR(""),t) }
PN_STR            571 syn/syntax-p5.y   P->fileno = PN_PUT(pn_filenames, PN_STR(filename));
PN_STR            358 syn/syntax.y       # | assign t:arg-type { SRC_TPL2(PN_STR(""),t) }
PN_STR            379 syn/syntax.y     P->fileno = PN_PUT(pn_filenames, PN_STR(filename));
PN_STR             52 test/api/gc-test.c   PN s1 = PN_STR("teststring");