objective-lol 0.0.1__cp39-cp39-win_amd64.whl → 0.0.2__cp39-cp39-win_amd64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
objective_lol/api.c CHANGED
@@ -3247,549 +3247,540 @@ PyObject * _wrap__api_Map_string_api_GoValue_keys(PyObject * PYBINDGEN_UNUSED(du
3247
3247
 
3248
3248
 
3249
3249
  PyObject *
3250
- _wrap__api_api_VMConfig_CTor(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs))
3250
+ _wrap__api_api_GoValue_CTor(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs))
3251
3251
  {
3252
3252
  PyObject *py_retval;
3253
3253
  int64_t retval;
3254
3254
 
3255
- retval = api_VMConfig_CTor();
3255
+ retval = api_GoValue_CTor();
3256
3256
  py_retval = Py_BuildValue((char *) "L", retval);
3257
3257
  return py_retval;
3258
3258
  }
3259
- PyObject * _wrap__api_api_VMConfig_CTor(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs));
3259
+ PyObject * _wrap__api_api_GoValue_CTor(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs));
3260
3260
 
3261
3261
 
3262
3262
  PyObject *
3263
- _wrap__api_api_VMConfig_Stdout_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
3263
+ _wrap__api_api_GoValue_ID(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
3264
3264
  {
3265
3265
  PyObject *py_retval;
3266
- int64_t retval;
3267
- int64_t handle;
3268
- const char *keywords[] = {"handle", NULL};
3266
+ char *retval;
3267
+ int64_t _handle;
3268
+ const char *keywords[] = {"_handle", NULL};
3269
3269
 
3270
- if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
3270
+ if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &_handle)) {
3271
3271
  return NULL;
3272
3272
  }
3273
- retval = api_VMConfig_Stdout_Get(handle);
3274
- py_retval = Py_BuildValue((char *) "L", retval);
3275
- return py_retval;
3276
- }
3277
- PyObject * _wrap__api_api_VMConfig_Stdout_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
3278
-
3279
-
3280
- PyObject *
3281
- _wrap__api_api_VMConfig_Stdout_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
3282
- {
3283
- PyObject *py_retval;
3284
- int64_t handle;
3285
- int64_t val;
3286
- const char *keywords[] = {"handle", "val", NULL};
3287
-
3288
- if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LL", (char **) keywords, &handle, &val)) {
3273
+ retval = api_GoValue_ID(_handle);
3274
+ if (PyErr_Occurred()) {
3275
+ if (retval != NULL) free(retval);
3289
3276
  return NULL;
3290
3277
  }
3291
- api_VMConfig_Stdout_Set(handle, val);
3292
- Py_INCREF(Py_None);
3293
- py_retval = Py_None;
3278
+ py_retval = Py_BuildValue((char *) "s", retval);
3279
+ free(retval);
3294
3280
  return py_retval;
3295
3281
  }
3296
- PyObject * _wrap__api_api_VMConfig_Stdout_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
3282
+ PyObject * _wrap__api_api_GoValue_ID(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
3297
3283
 
3298
3284
 
3299
3285
  PyObject *
3300
- _wrap__api_api_VMConfig_Stdin_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
3286
+ _wrap__api_api_GoValue_MarshalJSON(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
3301
3287
  {
3302
3288
  PyObject *py_retval;
3303
3289
  int64_t retval;
3304
- int64_t handle;
3305
- const char *keywords[] = {"handle", NULL};
3290
+ int64_t _handle;
3291
+ const char *keywords[] = {"_handle", NULL};
3306
3292
 
3307
- if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
3293
+ if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &_handle)) {
3294
+ return NULL;
3295
+ }
3296
+ retval = api_GoValue_MarshalJSON(_handle);
3297
+ if (PyErr_Occurred()) {
3308
3298
  return NULL;
3309
3299
  }
3310
- retval = api_VMConfig_Stdin_Get(handle);
3311
3300
  py_retval = Py_BuildValue((char *) "L", retval);
3312
3301
  return py_retval;
3313
3302
  }
3314
- PyObject * _wrap__api_api_VMConfig_Stdin_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
3303
+ PyObject * _wrap__api_api_GoValue_MarshalJSON(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
3315
3304
 
3316
3305
 
3317
3306
  PyObject *
3318
- _wrap__api_api_VMConfig_Stdin_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
3307
+ _wrap__api_api_GoValue_Type(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
3319
3308
  {
3320
3309
  PyObject *py_retval;
3321
- int64_t handle;
3322
- int64_t val;
3323
- const char *keywords[] = {"handle", "val", NULL};
3310
+ char *retval;
3311
+ int64_t _handle;
3312
+ const char *keywords[] = {"_handle", NULL};
3324
3313
 
3325
- if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LL", (char **) keywords, &handle, &val)) {
3314
+ if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &_handle)) {
3326
3315
  return NULL;
3327
3316
  }
3328
- api_VMConfig_Stdin_Set(handle, val);
3329
- Py_INCREF(Py_None);
3330
- py_retval = Py_None;
3317
+ retval = api_GoValue_Type(_handle);
3318
+ if (PyErr_Occurred()) {
3319
+ if (retval != NULL) free(retval);
3320
+ return NULL;
3321
+ }
3322
+ py_retval = Py_BuildValue((char *) "s", retval);
3323
+ free(retval);
3331
3324
  return py_retval;
3332
3325
  }
3333
- PyObject * _wrap__api_api_VMConfig_Stdin_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
3326
+ PyObject * _wrap__api_api_GoValue_Type(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
3334
3327
 
3335
3328
 
3336
3329
  PyObject *
3337
- _wrap__api_api_VMConfig_Timeout_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
3330
+ _wrap__api_api_GoValue_Int(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
3338
3331
  {
3339
3332
  PyObject *py_retval;
3340
3333
  int64_t retval;
3341
- int64_t handle;
3342
- const char *keywords[] = {"handle", NULL};
3334
+ int64_t _handle;
3335
+ const char *keywords[] = {"_handle", NULL};
3343
3336
 
3344
- if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
3337
+ if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &_handle)) {
3338
+ return NULL;
3339
+ }
3340
+ retval = api_GoValue_Int(_handle);
3341
+ if (PyErr_Occurred()) {
3345
3342
  return NULL;
3346
3343
  }
3347
- retval = api_VMConfig_Timeout_Get(handle);
3348
3344
  py_retval = Py_BuildValue((char *) "L", retval);
3349
3345
  return py_retval;
3350
3346
  }
3351
- PyObject * _wrap__api_api_VMConfig_Timeout_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
3347
+ PyObject * _wrap__api_api_GoValue_Int(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
3352
3348
 
3353
3349
 
3354
3350
  PyObject *
3355
- _wrap__api_api_VMConfig_Timeout_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
3351
+ _wrap__api_api_GoValue_Float(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
3356
3352
  {
3357
3353
  PyObject *py_retval;
3358
- int64_t handle;
3359
- int64_t val;
3360
- const char *keywords[] = {"handle", "val", NULL};
3354
+ double retval;
3355
+ int64_t _handle;
3356
+ const char *keywords[] = {"_handle", NULL};
3361
3357
 
3362
- if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LL", (char **) keywords, &handle, &val)) {
3358
+ if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &_handle)) {
3363
3359
  return NULL;
3364
3360
  }
3365
- api_VMConfig_Timeout_Set(handle, val);
3366
- Py_INCREF(Py_None);
3367
- py_retval = Py_None;
3361
+ retval = api_GoValue_Float(_handle);
3362
+ if (PyErr_Occurred()) {
3363
+ return NULL;
3364
+ }
3365
+ py_retval = Py_BuildValue((char *) "d", retval);
3368
3366
  return py_retval;
3369
3367
  }
3370
- PyObject * _wrap__api_api_VMConfig_Timeout_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
3368
+ PyObject * _wrap__api_api_GoValue_Float(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
3371
3369
 
3372
3370
 
3373
3371
  PyObject *
3374
- _wrap__api_api_VMConfig_WorkingDirectory_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
3372
+ _wrap__api_api_GoValue_String(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
3375
3373
  {
3376
3374
  PyObject *py_retval;
3377
3375
  char *retval;
3378
- int64_t handle;
3379
- const char *keywords[] = {"handle", NULL};
3376
+ int64_t _handle;
3377
+ const char *keywords[] = {"_handle", NULL};
3380
3378
 
3381
- if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
3379
+ if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &_handle)) {
3380
+ return NULL;
3381
+ }
3382
+ retval = api_GoValue_String(_handle);
3383
+ if (PyErr_Occurred()) {
3384
+ if (retval != NULL) free(retval);
3382
3385
  return NULL;
3383
3386
  }
3384
- retval = api_VMConfig_WorkingDirectory_Get(handle);
3385
3387
  py_retval = Py_BuildValue((char *) "s", retval);
3388
+ free(retval);
3386
3389
  return py_retval;
3387
3390
  }
3388
- PyObject * _wrap__api_api_VMConfig_WorkingDirectory_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
3391
+ PyObject * _wrap__api_api_GoValue_String(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
3389
3392
 
3390
3393
 
3391
3394
  PyObject *
3392
- _wrap__api_api_VMConfig_WorkingDirectory_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
3395
+ _wrap__api_api_GoValue_Bool(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
3393
3396
  {
3394
3397
  PyObject *py_retval;
3395
- int64_t handle;
3396
- char *val;
3397
- const char *keywords[] = {"handle", "val", NULL};
3398
+ bool retval;
3399
+ int64_t _handle;
3400
+ const char *keywords[] = {"_handle", NULL};
3398
3401
 
3399
- if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "Ls", (char **) keywords, &handle, &val)) {
3402
+ if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &_handle)) {
3400
3403
  return NULL;
3401
3404
  }
3402
- api_VMConfig_WorkingDirectory_Set(handle, val);
3403
- Py_INCREF(Py_None);
3404
- py_retval = Py_None;
3405
+ retval = api_GoValue_Bool(_handle);
3406
+ if (PyErr_Occurred()) {
3407
+ return NULL;
3408
+ }
3409
+ py_retval = Py_BuildValue((char *) "N", PyBool_FromLong(retval));
3405
3410
  return py_retval;
3406
3411
  }
3407
- PyObject * _wrap__api_api_VMConfig_WorkingDirectory_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
3412
+ PyObject * _wrap__api_api_GoValue_Bool(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
3408
3413
 
3409
3414
 
3410
3415
  PyObject *
3411
- _wrap__api_api_VMConfig_Validate(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
3416
+ _wrap__api_api_GoValue_Slice(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
3412
3417
  {
3413
3418
  PyObject *py_retval;
3414
- char *retval;
3419
+ int64_t retval;
3415
3420
  int64_t _handle;
3416
3421
  const char *keywords[] = {"_handle", NULL};
3417
3422
 
3418
3423
  if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &_handle)) {
3419
3424
  return NULL;
3420
3425
  }
3421
- retval = api_VMConfig_Validate(_handle);
3426
+ retval = api_GoValue_Slice(_handle);
3422
3427
  if (PyErr_Occurred()) {
3423
3428
  return NULL;
3424
3429
  }
3425
- py_retval = Py_BuildValue((char *) "s", retval);
3430
+ py_retval = Py_BuildValue((char *) "L", retval);
3426
3431
  return py_retval;
3427
3432
  }
3428
- PyObject * _wrap__api_api_VMConfig_Validate(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
3433
+ PyObject * _wrap__api_api_GoValue_Slice(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
3429
3434
 
3430
3435
 
3431
3436
  PyObject *
3432
- _wrap__api_api_VMError_CTor(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs))
3437
+ _wrap__api_api_GoValue_Map(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
3433
3438
  {
3434
3439
  PyObject *py_retval;
3435
3440
  int64_t retval;
3441
+ int64_t _handle;
3442
+ const char *keywords[] = {"_handle", NULL};
3436
3443
 
3437
- retval = api_VMError_CTor();
3444
+ if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &_handle)) {
3445
+ return NULL;
3446
+ }
3447
+ retval = api_GoValue_Map(_handle);
3448
+ if (PyErr_Occurred()) {
3449
+ return NULL;
3450
+ }
3438
3451
  py_retval = Py_BuildValue((char *) "L", retval);
3439
3452
  return py_retval;
3440
3453
  }
3441
- PyObject * _wrap__api_api_VMError_CTor(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs));
3454
+ PyObject * _wrap__api_api_GoValue_Map(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
3442
3455
 
3443
3456
 
3444
3457
  PyObject *
3445
- _wrap__api_api_VMError_Type_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
3458
+ _wrap__api_api_GoValue_Object(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
3446
3459
  {
3447
3460
  PyObject *py_retval;
3448
- char *retval;
3449
- int64_t handle;
3450
- const char *keywords[] = {"handle", NULL};
3461
+ int64_t retval;
3462
+ int64_t _handle;
3463
+ const char *keywords[] = {"_handle", NULL};
3451
3464
 
3452
- if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
3465
+ if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &_handle)) {
3453
3466
  return NULL;
3454
3467
  }
3455
- retval = api_VMError_Type_Get(handle);
3456
- py_retval = Py_BuildValue((char *) "s", retval);
3468
+ retval = api_GoValue_Object(_handle);
3469
+ if (PyErr_Occurred()) {
3470
+ return NULL;
3471
+ }
3472
+ py_retval = Py_BuildValue((char *) "L", retval);
3457
3473
  return py_retval;
3458
3474
  }
3459
- PyObject * _wrap__api_api_VMError_Type_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
3475
+ PyObject * _wrap__api_api_GoValue_Object(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
3460
3476
 
3461
3477
 
3462
3478
  PyObject *
3463
- _wrap__api_api_VMError_Type_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
3479
+ _wrap__api_api_UnknownFunctionHandler_CTor(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs))
3464
3480
  {
3465
3481
  PyObject *py_retval;
3466
- int64_t handle;
3467
- char *val;
3468
- const char *keywords[] = {"handle", "val", NULL};
3482
+ int64_t retval;
3469
3483
 
3470
- if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "Ls", (char **) keywords, &handle, &val)) {
3471
- return NULL;
3472
- }
3473
- api_VMError_Type_Set(handle, val);
3474
- Py_INCREF(Py_None);
3475
- py_retval = Py_None;
3484
+ retval = api_UnknownFunctionHandler_CTor();
3485
+ py_retval = Py_BuildValue((char *) "L", retval);
3476
3486
  return py_retval;
3477
3487
  }
3478
- PyObject * _wrap__api_api_VMError_Type_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
3488
+ PyObject * _wrap__api_api_UnknownFunctionHandler_CTor(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs));
3479
3489
 
3480
3490
 
3481
3491
  PyObject *
3482
- _wrap__api_api_VMError_Message_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
3492
+ _wrap__api_api_VM_CTor(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs))
3483
3493
  {
3484
3494
  PyObject *py_retval;
3485
- char *retval;
3486
- int64_t handle;
3487
- const char *keywords[] = {"handle", NULL};
3495
+ int64_t retval;
3488
3496
 
3489
- if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
3490
- return NULL;
3491
- }
3492
- retval = api_VMError_Message_Get(handle);
3493
- py_retval = Py_BuildValue((char *) "s", retval);
3497
+ retval = api_VM_CTor();
3498
+ py_retval = Py_BuildValue((char *) "L", retval);
3494
3499
  return py_retval;
3495
3500
  }
3496
- PyObject * _wrap__api_api_VMError_Message_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
3501
+ PyObject * _wrap__api_api_VM_CTor(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs));
3497
3502
 
3498
3503
 
3499
3504
  PyObject *
3500
- _wrap__api_api_VMError_Message_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
3505
+ _wrap__api_api_VM_GetCompatibilityShim(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
3501
3506
  {
3502
3507
  PyObject *py_retval;
3503
- int64_t handle;
3504
- char *val;
3505
- const char *keywords[] = {"handle", "val", NULL};
3508
+ int64_t retval;
3509
+ int64_t _handle;
3510
+ const char *keywords[] = {"_handle", NULL};
3506
3511
 
3507
- if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "Ls", (char **) keywords, &handle, &val)) {
3512
+ if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &_handle)) {
3508
3513
  return NULL;
3509
3514
  }
3510
- api_VMError_Message_Set(handle, val);
3511
- Py_INCREF(Py_None);
3512
- py_retval = Py_None;
3515
+ retval = api_VM_GetCompatibilityShim(_handle);
3516
+ if (PyErr_Occurred()) {
3517
+ return NULL;
3518
+ }
3519
+ py_retval = Py_BuildValue((char *) "L", retval);
3513
3520
  return py_retval;
3514
3521
  }
3515
- PyObject * _wrap__api_api_VMError_Message_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
3522
+ PyObject * _wrap__api_api_VM_GetCompatibilityShim(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
3516
3523
 
3517
3524
 
3518
3525
  PyObject *
3519
- _wrap__api_api_VMError_Source_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
3526
+ _wrap__api_api_VM_Execute(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
3520
3527
  {
3521
3528
  PyObject *py_retval;
3522
3529
  int64_t retval;
3523
- int64_t handle;
3524
- const char *keywords[] = {"handle", NULL};
3530
+ int64_t _handle;
3531
+ char *code;
3532
+ const char *keywords[] = {"_handle", "code", NULL};
3525
3533
 
3526
- if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
3534
+ if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "Ls", (char **) keywords, &_handle, &code)) {
3527
3535
  return NULL;
3528
3536
  }
3529
- retval = api_VMError_Source_Get(handle);
3530
- py_retval = Py_BuildValue((char *) "L", retval);
3531
- return py_retval;
3532
- }
3533
- PyObject * _wrap__api_api_VMError_Source_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
3534
-
3535
-
3536
- PyObject *
3537
- _wrap__api_api_VMError_Source_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
3538
- {
3539
- PyObject *py_retval;
3540
- int64_t handle;
3541
- int64_t val;
3542
- const char *keywords[] = {"handle", "val", NULL};
3543
-
3544
- if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LL", (char **) keywords, &handle, &val)) {
3537
+ retval = api_VM_Execute(_handle, code);
3538
+ if (PyErr_Occurred()) {
3545
3539
  return NULL;
3546
3540
  }
3547
- api_VMError_Source_Set(handle, val);
3548
- Py_INCREF(Py_None);
3549
- py_retval = Py_None;
3541
+ py_retval = Py_BuildValue((char *) "L", retval);
3550
3542
  return py_retval;
3551
3543
  }
3552
- PyObject * _wrap__api_api_VMError_Source_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
3544
+ PyObject * _wrap__api_api_VM_Execute(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
3553
3545
 
3554
3546
 
3555
3547
  PyObject *
3556
- _wrap__api_api_VMError_Duration_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
3548
+ _wrap__api_api_VM_ExecuteWithContext(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
3557
3549
  {
3558
3550
  PyObject *py_retval;
3559
3551
  int64_t retval;
3560
- int64_t handle;
3561
- const char *keywords[] = {"handle", NULL};
3552
+ int64_t _handle;
3553
+ int64_t ctx;
3554
+ char *code;
3555
+ const char *keywords[] = {"_handle", "ctx", "code", NULL};
3562
3556
 
3563
- if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
3557
+ if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LLs", (char **) keywords, &_handle, &ctx, &code)) {
3564
3558
  return NULL;
3565
3559
  }
3566
- retval = api_VMError_Duration_Get(handle);
3567
- py_retval = Py_BuildValue((char *) "L", retval);
3568
- return py_retval;
3569
- }
3570
- PyObject * _wrap__api_api_VMError_Duration_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
3571
-
3572
-
3573
- PyObject *
3574
- _wrap__api_api_VMError_Duration_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
3575
- {
3576
- PyObject *py_retval;
3577
- int64_t handle;
3578
- int64_t val;
3579
- const char *keywords[] = {"handle", "val", NULL};
3580
-
3581
- if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LL", (char **) keywords, &handle, &val)) {
3560
+ retval = api_VM_ExecuteWithContext(_handle, ctx, code);
3561
+ if (PyErr_Occurred()) {
3582
3562
  return NULL;
3583
3563
  }
3584
- api_VMError_Duration_Set(handle, val);
3585
- Py_INCREF(Py_None);
3586
- py_retval = Py_None;
3564
+ py_retval = Py_BuildValue((char *) "L", retval);
3587
3565
  return py_retval;
3588
3566
  }
3589
- PyObject * _wrap__api_api_VMError_Duration_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
3567
+ PyObject * _wrap__api_api_VM_ExecuteWithContext(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
3590
3568
 
3591
3569
 
3592
3570
  PyObject *
3593
- _wrap__api_api_VMError_Error(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
3571
+ _wrap__api_api_VM_NewObjectInstance(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
3594
3572
  {
3595
3573
  PyObject *py_retval;
3596
- char *retval;
3574
+ int64_t retval;
3597
3575
  int64_t _handle;
3598
- const char *keywords[] = {"_handle", NULL};
3576
+ char *className;
3577
+ const char *keywords[] = {"_handle", "className", NULL};
3599
3578
 
3600
- if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &_handle)) {
3579
+ if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "Ls", (char **) keywords, &_handle, &className)) {
3601
3580
  return NULL;
3602
3581
  }
3603
- retval = api_VMError_Error(_handle);
3582
+ retval = api_VM_NewObjectInstance(_handle, className);
3604
3583
  if (PyErr_Occurred()) {
3605
- if (retval != NULL) free(retval);
3606
3584
  return NULL;
3607
3585
  }
3608
- py_retval = Py_BuildValue((char *) "s", retval);
3609
- free(retval);
3586
+ py_retval = Py_BuildValue((char *) "L", retval);
3610
3587
  return py_retval;
3611
3588
  }
3612
- PyObject * _wrap__api_api_VMError_Error(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
3589
+ PyObject * _wrap__api_api_VM_NewObjectInstance(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
3613
3590
 
3614
3591
 
3615
3592
  PyObject *
3616
- _wrap__api_api_VMError_Unwrap(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
3593
+ _wrap__api_api_VM_Call(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
3617
3594
  {
3618
3595
  PyObject *py_retval;
3619
- char *retval;
3596
+ int64_t retval;
3620
3597
  int64_t _handle;
3621
- const char *keywords[] = {"_handle", NULL};
3598
+ char *functionName;
3599
+ int64_t args2;
3600
+ const char *keywords[] = {"_handle", "functionName", "args", NULL};
3622
3601
 
3623
- if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &_handle)) {
3602
+ if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LsL", (char **) keywords, &_handle, &functionName, &args2)) {
3624
3603
  return NULL;
3625
3604
  }
3626
- retval = api_VMError_Unwrap(_handle);
3605
+ retval = api_VM_Call(_handle, functionName, args2);
3627
3606
  if (PyErr_Occurred()) {
3628
3607
  return NULL;
3629
3608
  }
3630
- py_retval = Py_BuildValue((char *) "s", retval);
3609
+ py_retval = Py_BuildValue((char *) "L", retval);
3631
3610
  return py_retval;
3632
3611
  }
3633
- PyObject * _wrap__api_api_VMError_Unwrap(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
3612
+ PyObject * _wrap__api_api_VM_Call(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
3634
3613
 
3635
3614
 
3636
3615
  PyObject *
3637
- _wrap__api_api_VMError_IsCompileError(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
3616
+ _wrap__api_api_VM_CallMethod(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
3638
3617
  {
3639
3618
  PyObject *py_retval;
3640
- bool retval;
3619
+ int64_t retval;
3641
3620
  int64_t _handle;
3642
- const char *keywords[] = {"_handle", NULL};
3621
+ int64_t object;
3622
+ char *methodName;
3623
+ int64_t args2;
3624
+ const char *keywords[] = {"_handle", "object", "methodName", "args", NULL};
3643
3625
 
3644
- if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &_handle)) {
3626
+ if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LLsL", (char **) keywords, &_handle, &object, &methodName, &args2)) {
3645
3627
  return NULL;
3646
3628
  }
3647
- retval = api_VMError_IsCompileError(_handle);
3629
+ retval = api_VM_CallMethod(_handle, object, methodName, args2);
3648
3630
  if (PyErr_Occurred()) {
3649
3631
  return NULL;
3650
3632
  }
3651
- py_retval = Py_BuildValue((char *) "N", PyBool_FromLong(retval));
3633
+ py_retval = Py_BuildValue((char *) "L", retval);
3652
3634
  return py_retval;
3653
3635
  }
3654
- PyObject * _wrap__api_api_VMError_IsCompileError(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
3636
+ PyObject * _wrap__api_api_VM_CallMethod(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
3655
3637
 
3656
3638
 
3657
3639
  PyObject *
3658
- _wrap__api_api_VMError_IsRuntimeError(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
3640
+ _wrap__api_api_VM_DefineVariable(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
3659
3641
  {
3660
3642
  PyObject *py_retval;
3661
- bool retval;
3643
+ char *retval;
3662
3644
  int64_t _handle;
3663
- const char *keywords[] = {"_handle", NULL};
3645
+ char *name;
3646
+ int64_t value;
3647
+ bool constant;
3648
+ PyObject *py_constant;
3649
+ const char *keywords[] = {"_handle", "name", "value", "constant", NULL};
3664
3650
 
3665
- if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &_handle)) {
3651
+ if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LsLO", (char **) keywords, &_handle, &name, &value, &py_constant)) {
3666
3652
  return NULL;
3667
3653
  }
3668
- retval = api_VMError_IsRuntimeError(_handle);
3654
+ constant = (bool) PyObject_IsTrue(py_constant);
3655
+ retval = api_VM_DefineVariable(_handle, name, value, constant);
3669
3656
  if (PyErr_Occurred()) {
3670
3657
  return NULL;
3671
3658
  }
3672
- py_retval = Py_BuildValue((char *) "N", PyBool_FromLong(retval));
3659
+ py_retval = Py_BuildValue((char *) "s", retval);
3673
3660
  return py_retval;
3674
3661
  }
3675
- PyObject * _wrap__api_api_VMError_IsRuntimeError(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
3662
+ PyObject * _wrap__api_api_VM_DefineVariable(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
3676
3663
 
3677
3664
 
3678
3665
  PyObject *
3679
- _wrap__api_api_VMError_IsTimeoutError(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
3666
+ _wrap__api_api_VM_SetVariable(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
3680
3667
  {
3681
3668
  PyObject *py_retval;
3682
- bool retval;
3669
+ char *retval;
3683
3670
  int64_t _handle;
3684
- const char *keywords[] = {"_handle", NULL};
3671
+ char *variableName;
3672
+ int64_t value;
3673
+ const char *keywords[] = {"_handle", "variableName", "value", NULL};
3685
3674
 
3686
- if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &_handle)) {
3675
+ if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LsL", (char **) keywords, &_handle, &variableName, &value)) {
3687
3676
  return NULL;
3688
3677
  }
3689
- retval = api_VMError_IsTimeoutError(_handle);
3678
+ retval = api_VM_SetVariable(_handle, variableName, value);
3690
3679
  if (PyErr_Occurred()) {
3691
3680
  return NULL;
3692
3681
  }
3693
- py_retval = Py_BuildValue((char *) "N", PyBool_FromLong(retval));
3682
+ py_retval = Py_BuildValue((char *) "s", retval);
3694
3683
  return py_retval;
3695
3684
  }
3696
- PyObject * _wrap__api_api_VMError_IsTimeoutError(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
3685
+ PyObject * _wrap__api_api_VM_SetVariable(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
3697
3686
 
3698
3687
 
3699
3688
  PyObject *
3700
- _wrap__api_api_VMError_IsConversionError(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
3689
+ _wrap__api_api_VM_GetVariable(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
3701
3690
  {
3702
3691
  PyObject *py_retval;
3703
- bool retval;
3692
+ int64_t retval;
3704
3693
  int64_t _handle;
3705
- const char *keywords[] = {"_handle", NULL};
3694
+ char *variableName;
3695
+ const char *keywords[] = {"_handle", "variableName", NULL};
3706
3696
 
3707
- if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &_handle)) {
3697
+ if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "Ls", (char **) keywords, &_handle, &variableName)) {
3708
3698
  return NULL;
3709
3699
  }
3710
- retval = api_VMError_IsConversionError(_handle);
3700
+ retval = api_VM_GetVariable(_handle, variableName);
3711
3701
  if (PyErr_Occurred()) {
3712
3702
  return NULL;
3713
3703
  }
3714
- py_retval = Py_BuildValue((char *) "N", PyBool_FromLong(retval));
3704
+ py_retval = Py_BuildValue((char *) "L", retval);
3715
3705
  return py_retval;
3716
3706
  }
3717
- PyObject * _wrap__api_api_VMError_IsConversionError(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
3707
+ PyObject * _wrap__api_api_VM_GetVariable(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
3718
3708
 
3719
3709
 
3720
3710
  PyObject *
3721
- _wrap__api_api_VMError_IsConfigError(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
3711
+ _wrap__api_api_VM_DefineClass(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
3722
3712
  {
3723
3713
  PyObject *py_retval;
3724
- bool retval;
3714
+ char *retval;
3725
3715
  int64_t _handle;
3726
- const char *keywords[] = {"_handle", NULL};
3716
+ int64_t classDef;
3717
+ const char *keywords[] = {"_handle", "classDef", NULL};
3727
3718
 
3728
- if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &_handle)) {
3719
+ if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LL", (char **) keywords, &_handle, &classDef)) {
3729
3720
  return NULL;
3730
3721
  }
3731
- retval = api_VMError_IsConfigError(_handle);
3722
+ retval = api_VM_DefineClass(_handle, classDef);
3732
3723
  if (PyErr_Occurred()) {
3733
3724
  return NULL;
3734
3725
  }
3735
- py_retval = Py_BuildValue((char *) "N", PyBool_FromLong(retval));
3726
+ py_retval = Py_BuildValue((char *) "s", retval);
3736
3727
  return py_retval;
3737
3728
  }
3738
- PyObject * _wrap__api_api_VMError_IsConfigError(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
3729
+ PyObject * _wrap__api_api_VM_DefineClass(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
3739
3730
 
3740
3731
 
3741
3732
  PyObject *
3742
- _wrap__api_api_ClassDefinition_CTor(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs))
3733
+ _wrap__api_api_VMConfig_CTor(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs))
3743
3734
  {
3744
3735
  PyObject *py_retval;
3745
3736
  int64_t retval;
3746
3737
 
3747
- retval = api_ClassDefinition_CTor();
3738
+ retval = api_VMConfig_CTor();
3748
3739
  py_retval = Py_BuildValue((char *) "L", retval);
3749
3740
  return py_retval;
3750
3741
  }
3751
- PyObject * _wrap__api_api_ClassDefinition_CTor(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs));
3742
+ PyObject * _wrap__api_api_VMConfig_CTor(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs));
3752
3743
 
3753
3744
 
3754
3745
  PyObject *
3755
- _wrap__api_api_ClassDefinition_Name_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
3746
+ _wrap__api_api_VMConfig_Stdout_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
3756
3747
  {
3757
3748
  PyObject *py_retval;
3758
- char *retval;
3749
+ int64_t retval;
3759
3750
  int64_t handle;
3760
3751
  const char *keywords[] = {"handle", NULL};
3761
3752
 
3762
3753
  if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
3763
3754
  return NULL;
3764
3755
  }
3765
- retval = api_ClassDefinition_Name_Get(handle);
3766
- py_retval = Py_BuildValue((char *) "s", retval);
3756
+ retval = api_VMConfig_Stdout_Get(handle);
3757
+ py_retval = Py_BuildValue((char *) "L", retval);
3767
3758
  return py_retval;
3768
3759
  }
3769
- PyObject * _wrap__api_api_ClassDefinition_Name_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
3760
+ PyObject * _wrap__api_api_VMConfig_Stdout_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
3770
3761
 
3771
3762
 
3772
3763
  PyObject *
3773
- _wrap__api_api_ClassDefinition_Name_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
3764
+ _wrap__api_api_VMConfig_Stdout_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
3774
3765
  {
3775
3766
  PyObject *py_retval;
3776
3767
  int64_t handle;
3777
- char *val;
3768
+ int64_t val;
3778
3769
  const char *keywords[] = {"handle", "val", NULL};
3779
3770
 
3780
- if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "Ls", (char **) keywords, &handle, &val)) {
3771
+ if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LL", (char **) keywords, &handle, &val)) {
3781
3772
  return NULL;
3782
3773
  }
3783
- api_ClassDefinition_Name_Set(handle, val);
3774
+ api_VMConfig_Stdout_Set(handle, val);
3784
3775
  Py_INCREF(Py_None);
3785
3776
  py_retval = Py_None;
3786
3777
  return py_retval;
3787
3778
  }
3788
- PyObject * _wrap__api_api_ClassDefinition_Name_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
3779
+ PyObject * _wrap__api_api_VMConfig_Stdout_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
3789
3780
 
3790
3781
 
3791
3782
  PyObject *
3792
- _wrap__api_api_ClassDefinition_PublicVariables_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
3783
+ _wrap__api_api_VMConfig_Stdin_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
3793
3784
  {
3794
3785
  PyObject *py_retval;
3795
3786
  int64_t retval;
@@ -3799,15 +3790,15 @@ _wrap__api_api_ClassDefinition_PublicVariables_Get(PyObject * PYBINDGEN_UNUSED(d
3799
3790
  if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
3800
3791
  return NULL;
3801
3792
  }
3802
- retval = api_ClassDefinition_PublicVariables_Get(handle);
3793
+ retval = api_VMConfig_Stdin_Get(handle);
3803
3794
  py_retval = Py_BuildValue((char *) "L", retval);
3804
3795
  return py_retval;
3805
3796
  }
3806
- PyObject * _wrap__api_api_ClassDefinition_PublicVariables_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
3797
+ PyObject * _wrap__api_api_VMConfig_Stdin_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
3807
3798
 
3808
3799
 
3809
3800
  PyObject *
3810
- _wrap__api_api_ClassDefinition_PublicVariables_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
3801
+ _wrap__api_api_VMConfig_Stdin_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
3811
3802
  {
3812
3803
  PyObject *py_retval;
3813
3804
  int64_t handle;
@@ -3817,16 +3808,16 @@ _wrap__api_api_ClassDefinition_PublicVariables_Set(PyObject * PYBINDGEN_UNUSED(d
3817
3808
  if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LL", (char **) keywords, &handle, &val)) {
3818
3809
  return NULL;
3819
3810
  }
3820
- api_ClassDefinition_PublicVariables_Set(handle, val);
3811
+ api_VMConfig_Stdin_Set(handle, val);
3821
3812
  Py_INCREF(Py_None);
3822
3813
  py_retval = Py_None;
3823
3814
  return py_retval;
3824
3815
  }
3825
- PyObject * _wrap__api_api_ClassDefinition_PublicVariables_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
3816
+ PyObject * _wrap__api_api_VMConfig_Stdin_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
3826
3817
 
3827
3818
 
3828
3819
  PyObject *
3829
- _wrap__api_api_ClassDefinition_PrivateVariables_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
3820
+ _wrap__api_api_VMConfig_Timeout_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
3830
3821
  {
3831
3822
  PyObject *py_retval;
3832
3823
  int64_t retval;
@@ -3836,15 +3827,15 @@ _wrap__api_api_ClassDefinition_PrivateVariables_Get(PyObject * PYBINDGEN_UNUSED(
3836
3827
  if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
3837
3828
  return NULL;
3838
3829
  }
3839
- retval = api_ClassDefinition_PrivateVariables_Get(handle);
3830
+ retval = api_VMConfig_Timeout_Get(handle);
3840
3831
  py_retval = Py_BuildValue((char *) "L", retval);
3841
3832
  return py_retval;
3842
3833
  }
3843
- PyObject * _wrap__api_api_ClassDefinition_PrivateVariables_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
3834
+ PyObject * _wrap__api_api_VMConfig_Timeout_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
3844
3835
 
3845
3836
 
3846
3837
  PyObject *
3847
- _wrap__api_api_ClassDefinition_PrivateVariables_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
3838
+ _wrap__api_api_VMConfig_Timeout_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
3848
3839
  {
3849
3840
  PyObject *py_retval;
3850
3841
  int64_t handle;
@@ -3854,90 +3845,124 @@ _wrap__api_api_ClassDefinition_PrivateVariables_Set(PyObject * PYBINDGEN_UNUSED(
3854
3845
  if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LL", (char **) keywords, &handle, &val)) {
3855
3846
  return NULL;
3856
3847
  }
3857
- api_ClassDefinition_PrivateVariables_Set(handle, val);
3848
+ api_VMConfig_Timeout_Set(handle, val);
3858
3849
  Py_INCREF(Py_None);
3859
3850
  py_retval = Py_None;
3860
3851
  return py_retval;
3861
3852
  }
3862
- PyObject * _wrap__api_api_ClassDefinition_PrivateVariables_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
3853
+ PyObject * _wrap__api_api_VMConfig_Timeout_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
3863
3854
 
3864
3855
 
3865
3856
  PyObject *
3866
- _wrap__api_api_ClassDefinition_SharedVariables_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
3857
+ _wrap__api_api_VMConfig_WorkingDirectory_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
3867
3858
  {
3868
3859
  PyObject *py_retval;
3869
- int64_t retval;
3860
+ char *retval;
3870
3861
  int64_t handle;
3871
3862
  const char *keywords[] = {"handle", NULL};
3872
3863
 
3873
3864
  if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
3874
3865
  return NULL;
3875
3866
  }
3876
- retval = api_ClassDefinition_SharedVariables_Get(handle);
3877
- py_retval = Py_BuildValue((char *) "L", retval);
3867
+ retval = api_VMConfig_WorkingDirectory_Get(handle);
3868
+ py_retval = Py_BuildValue((char *) "s", retval);
3878
3869
  return py_retval;
3879
3870
  }
3880
- PyObject * _wrap__api_api_ClassDefinition_SharedVariables_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
3871
+ PyObject * _wrap__api_api_VMConfig_WorkingDirectory_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
3881
3872
 
3882
3873
 
3883
3874
  PyObject *
3884
- _wrap__api_api_ClassDefinition_SharedVariables_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
3875
+ _wrap__api_api_VMConfig_WorkingDirectory_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
3885
3876
  {
3886
3877
  PyObject *py_retval;
3887
3878
  int64_t handle;
3888
- int64_t val;
3879
+ char *val;
3889
3880
  const char *keywords[] = {"handle", "val", NULL};
3890
3881
 
3891
- if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LL", (char **) keywords, &handle, &val)) {
3882
+ if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "Ls", (char **) keywords, &handle, &val)) {
3892
3883
  return NULL;
3893
3884
  }
3894
- api_ClassDefinition_SharedVariables_Set(handle, val);
3885
+ api_VMConfig_WorkingDirectory_Set(handle, val);
3895
3886
  Py_INCREF(Py_None);
3896
3887
  py_retval = Py_None;
3897
3888
  return py_retval;
3898
3889
  }
3899
- PyObject * _wrap__api_api_ClassDefinition_SharedVariables_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
3890
+ PyObject * _wrap__api_api_VMConfig_WorkingDirectory_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
3900
3891
 
3901
3892
 
3902
3893
  PyObject *
3903
- _wrap__api_api_ClassDefinition_PublicMethods_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
3894
+ _wrap__api_api_VMConfig_Validate(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
3904
3895
  {
3905
3896
  PyObject *py_retval;
3906
- int64_t retval;
3907
- int64_t handle;
3908
- const char *keywords[] = {"handle", NULL};
3897
+ char *retval;
3898
+ int64_t _handle;
3899
+ const char *keywords[] = {"_handle", NULL};
3909
3900
 
3910
- if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
3901
+ if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &_handle)) {
3911
3902
  return NULL;
3912
3903
  }
3913
- retval = api_ClassDefinition_PublicMethods_Get(handle);
3914
- py_retval = Py_BuildValue((char *) "L", retval);
3915
- return py_retval;
3916
- }
3917
- PyObject * _wrap__api_api_ClassDefinition_PublicMethods_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
3904
+ retval = api_VMConfig_Validate(_handle);
3905
+ if (PyErr_Occurred()) {
3906
+ return NULL;
3907
+ }
3908
+ py_retval = Py_BuildValue((char *) "s", retval);
3909
+ return py_retval;
3910
+ }
3911
+ PyObject * _wrap__api_api_VMConfig_Validate(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
3918
3912
 
3919
3913
 
3920
3914
  PyObject *
3921
- _wrap__api_api_ClassDefinition_PublicMethods_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
3915
+ _wrap__api_api_ClassDefinition_CTor(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs))
3922
3916
  {
3923
3917
  PyObject *py_retval;
3918
+ int64_t retval;
3919
+
3920
+ retval = api_ClassDefinition_CTor();
3921
+ py_retval = Py_BuildValue((char *) "L", retval);
3922
+ return py_retval;
3923
+ }
3924
+ PyObject * _wrap__api_api_ClassDefinition_CTor(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs));
3925
+
3926
+
3927
+ PyObject *
3928
+ _wrap__api_api_ClassDefinition_Name_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
3929
+ {
3930
+ PyObject *py_retval;
3931
+ char *retval;
3924
3932
  int64_t handle;
3925
- int64_t val;
3933
+ const char *keywords[] = {"handle", NULL};
3934
+
3935
+ if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
3936
+ return NULL;
3937
+ }
3938
+ retval = api_ClassDefinition_Name_Get(handle);
3939
+ py_retval = Py_BuildValue((char *) "s", retval);
3940
+ return py_retval;
3941
+ }
3942
+ PyObject * _wrap__api_api_ClassDefinition_Name_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
3943
+
3944
+
3945
+ PyObject *
3946
+ _wrap__api_api_ClassDefinition_Name_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
3947
+ {
3948
+ PyObject *py_retval;
3949
+ int64_t handle;
3950
+ char *val;
3926
3951
  const char *keywords[] = {"handle", "val", NULL};
3927
3952
 
3928
- if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LL", (char **) keywords, &handle, &val)) {
3953
+ if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "Ls", (char **) keywords, &handle, &val)) {
3929
3954
  return NULL;
3930
3955
  }
3931
- api_ClassDefinition_PublicMethods_Set(handle, val);
3956
+ api_ClassDefinition_Name_Set(handle, val);
3932
3957
  Py_INCREF(Py_None);
3933
3958
  py_retval = Py_None;
3934
3959
  return py_retval;
3935
3960
  }
3936
- PyObject * _wrap__api_api_ClassDefinition_PublicMethods_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
3961
+ PyObject * _wrap__api_api_ClassDefinition_Name_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
3937
3962
 
3938
3963
 
3939
3964
  PyObject *
3940
- _wrap__api_api_ClassDefinition_PrivateMethods_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
3965
+ _wrap__api_api_ClassDefinition_PublicVariables_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
3941
3966
  {
3942
3967
  PyObject *py_retval;
3943
3968
  int64_t retval;
@@ -3947,15 +3972,15 @@ _wrap__api_api_ClassDefinition_PrivateMethods_Get(PyObject * PYBINDGEN_UNUSED(du
3947
3972
  if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
3948
3973
  return NULL;
3949
3974
  }
3950
- retval = api_ClassDefinition_PrivateMethods_Get(handle);
3975
+ retval = api_ClassDefinition_PublicVariables_Get(handle);
3951
3976
  py_retval = Py_BuildValue((char *) "L", retval);
3952
3977
  return py_retval;
3953
3978
  }
3954
- PyObject * _wrap__api_api_ClassDefinition_PrivateMethods_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
3979
+ PyObject * _wrap__api_api_ClassDefinition_PublicVariables_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
3955
3980
 
3956
3981
 
3957
3982
  PyObject *
3958
- _wrap__api_api_ClassDefinition_PrivateMethods_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
3983
+ _wrap__api_api_ClassDefinition_PublicVariables_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
3959
3984
  {
3960
3985
  PyObject *py_retval;
3961
3986
  int64_t handle;
@@ -3965,16 +3990,16 @@ _wrap__api_api_ClassDefinition_PrivateMethods_Set(PyObject * PYBINDGEN_UNUSED(du
3965
3990
  if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LL", (char **) keywords, &handle, &val)) {
3966
3991
  return NULL;
3967
3992
  }
3968
- api_ClassDefinition_PrivateMethods_Set(handle, val);
3993
+ api_ClassDefinition_PublicVariables_Set(handle, val);
3969
3994
  Py_INCREF(Py_None);
3970
3995
  py_retval = Py_None;
3971
3996
  return py_retval;
3972
3997
  }
3973
- PyObject * _wrap__api_api_ClassDefinition_PrivateMethods_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
3998
+ PyObject * _wrap__api_api_ClassDefinition_PublicVariables_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
3974
3999
 
3975
4000
 
3976
4001
  PyObject *
3977
- _wrap__api_api_ClassDefinition_UnknownFunctionHandler_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
4002
+ _wrap__api_api_ClassDefinition_PrivateVariables_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
3978
4003
  {
3979
4004
  PyObject *py_retval;
3980
4005
  int64_t retval;
@@ -3984,15 +4009,15 @@ _wrap__api_api_ClassDefinition_UnknownFunctionHandler_Get(PyObject * PYBINDGEN_U
3984
4009
  if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
3985
4010
  return NULL;
3986
4011
  }
3987
- retval = api_ClassDefinition_UnknownFunctionHandler_Get(handle);
4012
+ retval = api_ClassDefinition_PrivateVariables_Get(handle);
3988
4013
  py_retval = Py_BuildValue((char *) "L", retval);
3989
4014
  return py_retval;
3990
4015
  }
3991
- PyObject * _wrap__api_api_ClassDefinition_UnknownFunctionHandler_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
4016
+ PyObject * _wrap__api_api_ClassDefinition_PrivateVariables_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
3992
4017
 
3993
4018
 
3994
4019
  PyObject *
3995
- _wrap__api_api_ClassDefinition_UnknownFunctionHandler_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
4020
+ _wrap__api_api_ClassDefinition_PrivateVariables_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
3996
4021
  {
3997
4022
  PyObject *py_retval;
3998
4023
  int64_t handle;
@@ -4002,29 +4027,53 @@ _wrap__api_api_ClassDefinition_UnknownFunctionHandler_Set(PyObject * PYBINDGEN_U
4002
4027
  if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LL", (char **) keywords, &handle, &val)) {
4003
4028
  return NULL;
4004
4029
  }
4005
- api_ClassDefinition_UnknownFunctionHandler_Set(handle, val);
4030
+ api_ClassDefinition_PrivateVariables_Set(handle, val);
4006
4031
  Py_INCREF(Py_None);
4007
4032
  py_retval = Py_None;
4008
4033
  return py_retval;
4009
4034
  }
4010
- PyObject * _wrap__api_api_ClassDefinition_UnknownFunctionHandler_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
4035
+ PyObject * _wrap__api_api_ClassDefinition_PrivateVariables_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
4011
4036
 
4012
4037
 
4013
4038
  PyObject *
4014
- _wrap__api_api_ExecutionResult_CTor(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs))
4039
+ _wrap__api_api_ClassDefinition_SharedVariables_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
4015
4040
  {
4016
4041
  PyObject *py_retval;
4017
4042
  int64_t retval;
4043
+ int64_t handle;
4044
+ const char *keywords[] = {"handle", NULL};
4018
4045
 
4019
- retval = api_ExecutionResult_CTor();
4046
+ if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
4047
+ return NULL;
4048
+ }
4049
+ retval = api_ClassDefinition_SharedVariables_Get(handle);
4020
4050
  py_retval = Py_BuildValue((char *) "L", retval);
4021
4051
  return py_retval;
4022
4052
  }
4023
- PyObject * _wrap__api_api_ExecutionResult_CTor(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs));
4053
+ PyObject * _wrap__api_api_ClassDefinition_SharedVariables_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
4024
4054
 
4025
4055
 
4026
4056
  PyObject *
4027
- _wrap__api_api_ExecutionResult_Value_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
4057
+ _wrap__api_api_ClassDefinition_SharedVariables_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
4058
+ {
4059
+ PyObject *py_retval;
4060
+ int64_t handle;
4061
+ int64_t val;
4062
+ const char *keywords[] = {"handle", "val", NULL};
4063
+
4064
+ if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LL", (char **) keywords, &handle, &val)) {
4065
+ return NULL;
4066
+ }
4067
+ api_ClassDefinition_SharedVariables_Set(handle, val);
4068
+ Py_INCREF(Py_None);
4069
+ py_retval = Py_None;
4070
+ return py_retval;
4071
+ }
4072
+ PyObject * _wrap__api_api_ClassDefinition_SharedVariables_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
4073
+
4074
+
4075
+ PyObject *
4076
+ _wrap__api_api_ClassDefinition_PublicMethods_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
4028
4077
  {
4029
4078
  PyObject *py_retval;
4030
4079
  int64_t retval;
@@ -4034,15 +4083,15 @@ _wrap__api_api_ExecutionResult_Value_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyO
4034
4083
  if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
4035
4084
  return NULL;
4036
4085
  }
4037
- retval = api_ExecutionResult_Value_Get(handle);
4086
+ retval = api_ClassDefinition_PublicMethods_Get(handle);
4038
4087
  py_retval = Py_BuildValue((char *) "L", retval);
4039
4088
  return py_retval;
4040
4089
  }
4041
- PyObject * _wrap__api_api_ExecutionResult_Value_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
4090
+ PyObject * _wrap__api_api_ClassDefinition_PublicMethods_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
4042
4091
 
4043
4092
 
4044
4093
  PyObject *
4045
- _wrap__api_api_ExecutionResult_Value_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
4094
+ _wrap__api_api_ClassDefinition_PublicMethods_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
4046
4095
  {
4047
4096
  PyObject *py_retval;
4048
4097
  int64_t handle;
@@ -4052,16 +4101,16 @@ _wrap__api_api_ExecutionResult_Value_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyO
4052
4101
  if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LL", (char **) keywords, &handle, &val)) {
4053
4102
  return NULL;
4054
4103
  }
4055
- api_ExecutionResult_Value_Set(handle, val);
4104
+ api_ClassDefinition_PublicMethods_Set(handle, val);
4056
4105
  Py_INCREF(Py_None);
4057
4106
  py_retval = Py_None;
4058
4107
  return py_retval;
4059
4108
  }
4060
- PyObject * _wrap__api_api_ExecutionResult_Value_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
4109
+ PyObject * _wrap__api_api_ClassDefinition_PublicMethods_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
4061
4110
 
4062
4111
 
4063
4112
  PyObject *
4064
- _wrap__api_api_ExecutionResult_RawValue_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
4113
+ _wrap__api_api_ClassDefinition_PrivateMethods_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
4065
4114
  {
4066
4115
  PyObject *py_retval;
4067
4116
  int64_t retval;
@@ -4071,15 +4120,15 @@ _wrap__api_api_ExecutionResult_RawValue_Get(PyObject * PYBINDGEN_UNUSED(dummy),
4071
4120
  if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
4072
4121
  return NULL;
4073
4122
  }
4074
- retval = api_ExecutionResult_RawValue_Get(handle);
4123
+ retval = api_ClassDefinition_PrivateMethods_Get(handle);
4075
4124
  py_retval = Py_BuildValue((char *) "L", retval);
4076
4125
  return py_retval;
4077
4126
  }
4078
- PyObject * _wrap__api_api_ExecutionResult_RawValue_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
4127
+ PyObject * _wrap__api_api_ClassDefinition_PrivateMethods_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
4079
4128
 
4080
4129
 
4081
4130
  PyObject *
4082
- _wrap__api_api_ExecutionResult_RawValue_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
4131
+ _wrap__api_api_ClassDefinition_PrivateMethods_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
4083
4132
  {
4084
4133
  PyObject *py_retval;
4085
4134
  int64_t handle;
@@ -4089,815 +4138,713 @@ _wrap__api_api_ExecutionResult_RawValue_Set(PyObject * PYBINDGEN_UNUSED(dummy),
4089
4138
  if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LL", (char **) keywords, &handle, &val)) {
4090
4139
  return NULL;
4091
4140
  }
4092
- api_ExecutionResult_RawValue_Set(handle, val);
4141
+ api_ClassDefinition_PrivateMethods_Set(handle, val);
4093
4142
  Py_INCREF(Py_None);
4094
4143
  py_retval = Py_None;
4095
4144
  return py_retval;
4096
4145
  }
4097
- PyObject * _wrap__api_api_ExecutionResult_RawValue_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
4146
+ PyObject * _wrap__api_api_ClassDefinition_PrivateMethods_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
4098
4147
 
4099
4148
 
4100
4149
  PyObject *
4101
- _wrap__api_api_ExecutionResult_Output_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
4150
+ _wrap__api_api_ClassDefinition_UnknownFunctionHandler_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
4102
4151
  {
4103
4152
  PyObject *py_retval;
4104
- char *retval;
4153
+ int64_t retval;
4105
4154
  int64_t handle;
4106
4155
  const char *keywords[] = {"handle", NULL};
4107
4156
 
4108
4157
  if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
4109
4158
  return NULL;
4110
4159
  }
4111
- retval = api_ExecutionResult_Output_Get(handle);
4112
- py_retval = Py_BuildValue((char *) "s", retval);
4160
+ retval = api_ClassDefinition_UnknownFunctionHandler_Get(handle);
4161
+ py_retval = Py_BuildValue((char *) "L", retval);
4113
4162
  return py_retval;
4114
4163
  }
4115
- PyObject * _wrap__api_api_ExecutionResult_Output_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
4164
+ PyObject * _wrap__api_api_ClassDefinition_UnknownFunctionHandler_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
4116
4165
 
4117
4166
 
4118
4167
  PyObject *
4119
- _wrap__api_api_ExecutionResult_Output_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
4168
+ _wrap__api_api_ClassDefinition_UnknownFunctionHandler_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
4120
4169
  {
4121
4170
  PyObject *py_retval;
4122
4171
  int64_t handle;
4123
- char *val;
4172
+ int64_t val;
4124
4173
  const char *keywords[] = {"handle", "val", NULL};
4125
4174
 
4126
- if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "Ls", (char **) keywords, &handle, &val)) {
4175
+ if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LL", (char **) keywords, &handle, &val)) {
4127
4176
  return NULL;
4128
4177
  }
4129
- api_ExecutionResult_Output_Set(handle, val);
4178
+ api_ClassDefinition_UnknownFunctionHandler_Set(handle, val);
4130
4179
  Py_INCREF(Py_None);
4131
4180
  py_retval = Py_None;
4132
4181
  return py_retval;
4133
4182
  }
4134
- PyObject * _wrap__api_api_ExecutionResult_Output_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
4183
+ PyObject * _wrap__api_api_ClassDefinition_UnknownFunctionHandler_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
4135
4184
 
4136
4185
 
4137
4186
  PyObject *
4138
- _wrap__api_api_GoValue_CTor(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs))
4187
+ _wrap__api_api_ClassMethod_CTor(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs))
4139
4188
  {
4140
4189
  PyObject *py_retval;
4141
4190
  int64_t retval;
4142
4191
 
4143
- retval = api_GoValue_CTor();
4192
+ retval = api_ClassMethod_CTor();
4144
4193
  py_retval = Py_BuildValue((char *) "L", retval);
4145
4194
  return py_retval;
4146
4195
  }
4147
- PyObject * _wrap__api_api_GoValue_CTor(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs));
4196
+ PyObject * _wrap__api_api_ClassMethod_CTor(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs));
4148
4197
 
4149
4198
 
4150
4199
  PyObject *
4151
- _wrap__api_api_GoValue_ID(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
4200
+ _wrap__api_api_ClassMethod_Name_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
4152
4201
  {
4153
4202
  PyObject *py_retval;
4154
4203
  char *retval;
4155
- int64_t _handle;
4156
- const char *keywords[] = {"_handle", NULL};
4204
+ int64_t handle;
4205
+ const char *keywords[] = {"handle", NULL};
4157
4206
 
4158
- if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &_handle)) {
4159
- return NULL;
4160
- }
4161
- retval = api_GoValue_ID(_handle);
4162
- if (PyErr_Occurred()) {
4163
- if (retval != NULL) free(retval);
4207
+ if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
4164
4208
  return NULL;
4165
4209
  }
4210
+ retval = api_ClassMethod_Name_Get(handle);
4166
4211
  py_retval = Py_BuildValue((char *) "s", retval);
4167
- free(retval);
4168
4212
  return py_retval;
4169
4213
  }
4170
- PyObject * _wrap__api_api_GoValue_ID(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
4214
+ PyObject * _wrap__api_api_ClassMethod_Name_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
4171
4215
 
4172
4216
 
4173
4217
  PyObject *
4174
- _wrap__api_api_GoValue_MarshalJSON(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
4218
+ _wrap__api_api_ClassMethod_Name_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
4175
4219
  {
4176
4220
  PyObject *py_retval;
4177
- int64_t retval;
4178
- int64_t _handle;
4179
- const char *keywords[] = {"_handle", NULL};
4221
+ int64_t handle;
4222
+ char *val;
4223
+ const char *keywords[] = {"handle", "val", NULL};
4180
4224
 
4181
- if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &_handle)) {
4182
- return NULL;
4183
- }
4184
- retval = api_GoValue_MarshalJSON(_handle);
4185
- if (PyErr_Occurred()) {
4225
+ if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "Ls", (char **) keywords, &handle, &val)) {
4186
4226
  return NULL;
4187
4227
  }
4188
- py_retval = Py_BuildValue((char *) "L", retval);
4228
+ api_ClassMethod_Name_Set(handle, val);
4229
+ Py_INCREF(Py_None);
4230
+ py_retval = Py_None;
4189
4231
  return py_retval;
4190
4232
  }
4191
- PyObject * _wrap__api_api_GoValue_MarshalJSON(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
4233
+ PyObject * _wrap__api_api_ClassMethod_Name_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
4192
4234
 
4193
4235
 
4194
4236
  PyObject *
4195
- _wrap__api_api_GoValue_Type(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
4237
+ _wrap__api_api_ClassMethod_Argc_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
4196
4238
  {
4197
4239
  PyObject *py_retval;
4198
- char *retval;
4199
- int64_t _handle;
4200
- const char *keywords[] = {"_handle", NULL};
4240
+ int64_t retval;
4241
+ int64_t handle;
4242
+ const char *keywords[] = {"handle", NULL};
4201
4243
 
4202
- if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &_handle)) {
4203
- return NULL;
4204
- }
4205
- retval = api_GoValue_Type(_handle);
4206
- if (PyErr_Occurred()) {
4207
- if (retval != NULL) free(retval);
4244
+ if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
4208
4245
  return NULL;
4209
4246
  }
4210
- py_retval = Py_BuildValue((char *) "s", retval);
4211
- free(retval);
4247
+ retval = api_ClassMethod_Argc_Get(handle);
4248
+ py_retval = Py_BuildValue((char *) "L", retval);
4212
4249
  return py_retval;
4213
4250
  }
4214
- PyObject * _wrap__api_api_GoValue_Type(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
4251
+ PyObject * _wrap__api_api_ClassMethod_Argc_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
4215
4252
 
4216
4253
 
4217
4254
  PyObject *
4218
- _wrap__api_api_GoValue_Int(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
4255
+ _wrap__api_api_ClassMethod_Argc_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
4219
4256
  {
4220
4257
  PyObject *py_retval;
4221
- int64_t retval;
4222
- int64_t _handle;
4223
- const char *keywords[] = {"_handle", NULL};
4258
+ int64_t handle;
4259
+ int64_t val;
4260
+ const char *keywords[] = {"handle", "val", NULL};
4224
4261
 
4225
- if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &_handle)) {
4226
- return NULL;
4227
- }
4228
- retval = api_GoValue_Int(_handle);
4229
- if (PyErr_Occurred()) {
4262
+ if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LL", (char **) keywords, &handle, &val)) {
4230
4263
  return NULL;
4231
4264
  }
4232
- py_retval = Py_BuildValue((char *) "L", retval);
4265
+ api_ClassMethod_Argc_Set(handle, val);
4266
+ Py_INCREF(Py_None);
4267
+ py_retval = Py_None;
4233
4268
  return py_retval;
4234
4269
  }
4235
- PyObject * _wrap__api_api_GoValue_Int(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
4270
+ PyObject * _wrap__api_api_ClassMethod_Argc_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
4236
4271
 
4237
4272
 
4238
4273
  PyObject *
4239
- _wrap__api_api_GoValue_Float(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
4274
+ _wrap__api_api_ClassVariable_CTor(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs))
4240
4275
  {
4241
4276
  PyObject *py_retval;
4242
- double retval;
4243
- int64_t _handle;
4244
- const char *keywords[] = {"_handle", NULL};
4277
+ int64_t retval;
4245
4278
 
4246
- if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &_handle)) {
4247
- return NULL;
4248
- }
4249
- retval = api_GoValue_Float(_handle);
4250
- if (PyErr_Occurred()) {
4251
- return NULL;
4252
- }
4253
- py_retval = Py_BuildValue((char *) "d", retval);
4279
+ retval = api_ClassVariable_CTor();
4280
+ py_retval = Py_BuildValue((char *) "L", retval);
4254
4281
  return py_retval;
4255
4282
  }
4256
- PyObject * _wrap__api_api_GoValue_Float(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
4283
+ PyObject * _wrap__api_api_ClassVariable_CTor(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs));
4257
4284
 
4258
4285
 
4259
4286
  PyObject *
4260
- _wrap__api_api_GoValue_String(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
4287
+ _wrap__api_api_ClassVariable_Name_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
4261
4288
  {
4262
4289
  PyObject *py_retval;
4263
4290
  char *retval;
4264
- int64_t _handle;
4265
- const char *keywords[] = {"_handle", NULL};
4291
+ int64_t handle;
4292
+ const char *keywords[] = {"handle", NULL};
4266
4293
 
4267
- if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &_handle)) {
4268
- return NULL;
4269
- }
4270
- retval = api_GoValue_String(_handle);
4271
- if (PyErr_Occurred()) {
4272
- if (retval != NULL) free(retval);
4294
+ if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
4273
4295
  return NULL;
4274
4296
  }
4297
+ retval = api_ClassVariable_Name_Get(handle);
4275
4298
  py_retval = Py_BuildValue((char *) "s", retval);
4276
- free(retval);
4277
4299
  return py_retval;
4278
4300
  }
4279
- PyObject * _wrap__api_api_GoValue_String(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
4301
+ PyObject * _wrap__api_api_ClassVariable_Name_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
4280
4302
 
4281
4303
 
4282
4304
  PyObject *
4283
- _wrap__api_api_GoValue_Bool(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
4305
+ _wrap__api_api_ClassVariable_Name_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
4284
4306
  {
4285
4307
  PyObject *py_retval;
4286
- bool retval;
4287
- int64_t _handle;
4288
- const char *keywords[] = {"_handle", NULL};
4308
+ int64_t handle;
4309
+ char *val;
4310
+ const char *keywords[] = {"handle", "val", NULL};
4289
4311
 
4290
- if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &_handle)) {
4291
- return NULL;
4292
- }
4293
- retval = api_GoValue_Bool(_handle);
4294
- if (PyErr_Occurred()) {
4312
+ if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "Ls", (char **) keywords, &handle, &val)) {
4295
4313
  return NULL;
4296
4314
  }
4297
- py_retval = Py_BuildValue((char *) "N", PyBool_FromLong(retval));
4315
+ api_ClassVariable_Name_Set(handle, val);
4316
+ Py_INCREF(Py_None);
4317
+ py_retval = Py_None;
4298
4318
  return py_retval;
4299
4319
  }
4300
- PyObject * _wrap__api_api_GoValue_Bool(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
4320
+ PyObject * _wrap__api_api_ClassVariable_Name_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
4301
4321
 
4302
4322
 
4303
4323
  PyObject *
4304
- _wrap__api_api_GoValue_Slice(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
4324
+ _wrap__api_api_ClassVariable_Value_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
4305
4325
  {
4306
4326
  PyObject *py_retval;
4307
4327
  int64_t retval;
4308
- int64_t _handle;
4309
- const char *keywords[] = {"_handle", NULL};
4328
+ int64_t handle;
4329
+ const char *keywords[] = {"handle", NULL};
4310
4330
 
4311
- if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &_handle)) {
4312
- return NULL;
4313
- }
4314
- retval = api_GoValue_Slice(_handle);
4315
- if (PyErr_Occurred()) {
4331
+ if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
4316
4332
  return NULL;
4317
4333
  }
4334
+ retval = api_ClassVariable_Value_Get(handle);
4318
4335
  py_retval = Py_BuildValue((char *) "L", retval);
4319
4336
  return py_retval;
4320
4337
  }
4321
- PyObject * _wrap__api_api_GoValue_Slice(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
4338
+ PyObject * _wrap__api_api_ClassVariable_Value_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
4322
4339
 
4323
4340
 
4324
4341
  PyObject *
4325
- _wrap__api_api_GoValue_Map(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
4342
+ _wrap__api_api_ClassVariable_Value_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
4326
4343
  {
4327
4344
  PyObject *py_retval;
4328
- int64_t retval;
4329
- int64_t _handle;
4330
- const char *keywords[] = {"_handle", NULL};
4345
+ int64_t handle;
4346
+ int64_t val;
4347
+ const char *keywords[] = {"handle", "val", NULL};
4331
4348
 
4332
- if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &_handle)) {
4333
- return NULL;
4334
- }
4335
- retval = api_GoValue_Map(_handle);
4336
- if (PyErr_Occurred()) {
4349
+ if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LL", (char **) keywords, &handle, &val)) {
4337
4350
  return NULL;
4338
4351
  }
4339
- py_retval = Py_BuildValue((char *) "L", retval);
4352
+ api_ClassVariable_Value_Set(handle, val);
4353
+ Py_INCREF(Py_None);
4354
+ py_retval = Py_None;
4340
4355
  return py_retval;
4341
4356
  }
4342
- PyObject * _wrap__api_api_GoValue_Map(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
4357
+ PyObject * _wrap__api_api_ClassVariable_Value_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
4343
4358
 
4344
4359
 
4345
4360
  PyObject *
4346
- _wrap__api_api_GoValue_Object(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
4361
+ _wrap__api_api_ClassVariable_Locked_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
4347
4362
  {
4348
4363
  PyObject *py_retval;
4349
- int64_t retval;
4350
- int64_t _handle;
4351
- const char *keywords[] = {"_handle", NULL};
4364
+ bool retval;
4365
+ int64_t handle;
4366
+ const char *keywords[] = {"handle", NULL};
4352
4367
 
4353
- if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &_handle)) {
4354
- return NULL;
4355
- }
4356
- retval = api_GoValue_Object(_handle);
4357
- if (PyErr_Occurred()) {
4368
+ if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
4358
4369
  return NULL;
4359
4370
  }
4360
- py_retval = Py_BuildValue((char *) "L", retval);
4371
+ retval = api_ClassVariable_Locked_Get(handle);
4372
+ py_retval = Py_BuildValue((char *) "N", PyBool_FromLong(retval));
4361
4373
  return py_retval;
4362
4374
  }
4363
- PyObject * _wrap__api_api_GoValue_Object(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
4375
+ PyObject * _wrap__api_api_ClassVariable_Locked_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
4364
4376
 
4365
4377
 
4366
4378
  PyObject *
4367
- _wrap__api_api_UnknownFunctionHandler_CTor(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs))
4379
+ _wrap__api_api_ClassVariable_Locked_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
4368
4380
  {
4369
4381
  PyObject *py_retval;
4370
- int64_t retval;
4382
+ int64_t handle;
4383
+ bool val;
4384
+ PyObject *py_val;
4385
+ const char *keywords[] = {"handle", "val", NULL};
4371
4386
 
4372
- retval = api_UnknownFunctionHandler_CTor();
4373
- py_retval = Py_BuildValue((char *) "L", retval);
4387
+ if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LO", (char **) keywords, &handle, &py_val)) {
4388
+ return NULL;
4389
+ }
4390
+ val = (bool) PyObject_IsTrue(py_val);
4391
+ api_ClassVariable_Locked_Set(handle, val);
4392
+ Py_INCREF(Py_None);
4393
+ py_retval = Py_None;
4374
4394
  return py_retval;
4375
4395
  }
4376
- PyObject * _wrap__api_api_UnknownFunctionHandler_CTor(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs));
4396
+ PyObject * _wrap__api_api_ClassVariable_Locked_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
4377
4397
 
4378
4398
 
4379
4399
  PyObject *
4380
- _wrap__api_api_VM_CTor(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs))
4400
+ _wrap__api_api_VMError_CTor(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs))
4381
4401
  {
4382
4402
  PyObject *py_retval;
4383
4403
  int64_t retval;
4384
4404
 
4385
- retval = api_VM_CTor();
4405
+ retval = api_VMError_CTor();
4386
4406
  py_retval = Py_BuildValue((char *) "L", retval);
4387
4407
  return py_retval;
4388
4408
  }
4389
- PyObject * _wrap__api_api_VM_CTor(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs));
4409
+ PyObject * _wrap__api_api_VMError_CTor(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs));
4390
4410
 
4391
4411
 
4392
4412
  PyObject *
4393
- _wrap__api_api_VM_GetCompatibilityShim(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
4413
+ _wrap__api_api_VMError_Type_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
4394
4414
  {
4395
4415
  PyObject *py_retval;
4396
- int64_t retval;
4397
- int64_t _handle;
4398
- const char *keywords[] = {"_handle", NULL};
4416
+ char *retval;
4417
+ int64_t handle;
4418
+ const char *keywords[] = {"handle", NULL};
4399
4419
 
4400
- if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &_handle)) {
4401
- return NULL;
4402
- }
4403
- retval = api_VM_GetCompatibilityShim(_handle);
4404
- if (PyErr_Occurred()) {
4420
+ if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
4405
4421
  return NULL;
4406
4422
  }
4407
- py_retval = Py_BuildValue((char *) "L", retval);
4423
+ retval = api_VMError_Type_Get(handle);
4424
+ py_retval = Py_BuildValue((char *) "s", retval);
4408
4425
  return py_retval;
4409
4426
  }
4410
- PyObject * _wrap__api_api_VM_GetCompatibilityShim(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
4427
+ PyObject * _wrap__api_api_VMError_Type_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
4411
4428
 
4412
4429
 
4413
4430
  PyObject *
4414
- _wrap__api_api_VM_Execute(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
4431
+ _wrap__api_api_VMError_Type_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
4415
4432
  {
4416
4433
  PyObject *py_retval;
4417
- int64_t retval;
4418
- int64_t _handle;
4419
- char *code;
4420
- const char *keywords[] = {"_handle", "code", NULL};
4434
+ int64_t handle;
4435
+ char *val;
4436
+ const char *keywords[] = {"handle", "val", NULL};
4421
4437
 
4422
- if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "Ls", (char **) keywords, &_handle, &code)) {
4423
- return NULL;
4424
- }
4425
- retval = api_VM_Execute(_handle, code);
4426
- if (PyErr_Occurred()) {
4438
+ if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "Ls", (char **) keywords, &handle, &val)) {
4427
4439
  return NULL;
4428
4440
  }
4429
- py_retval = Py_BuildValue((char *) "L", retval);
4441
+ api_VMError_Type_Set(handle, val);
4442
+ Py_INCREF(Py_None);
4443
+ py_retval = Py_None;
4430
4444
  return py_retval;
4431
4445
  }
4432
- PyObject * _wrap__api_api_VM_Execute(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
4446
+ PyObject * _wrap__api_api_VMError_Type_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
4433
4447
 
4434
4448
 
4435
4449
  PyObject *
4436
- _wrap__api_api_VM_ExecuteWithContext(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
4450
+ _wrap__api_api_VMError_Message_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
4437
4451
  {
4438
4452
  PyObject *py_retval;
4439
- int64_t retval;
4440
- int64_t _handle;
4441
- int64_t ctx;
4442
- char *code;
4443
- const char *keywords[] = {"_handle", "ctx", "code", NULL};
4453
+ char *retval;
4454
+ int64_t handle;
4455
+ const char *keywords[] = {"handle", NULL};
4456
+
4457
+ if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
4458
+ return NULL;
4459
+ }
4460
+ retval = api_VMError_Message_Get(handle);
4461
+ py_retval = Py_BuildValue((char *) "s", retval);
4462
+ return py_retval;
4463
+ }
4464
+ PyObject * _wrap__api_api_VMError_Message_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
4465
+
4466
+
4467
+ PyObject *
4468
+ _wrap__api_api_VMError_Message_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
4469
+ {
4470
+ PyObject *py_retval;
4471
+ int64_t handle;
4472
+ char *val;
4473
+ const char *keywords[] = {"handle", "val", NULL};
4444
4474
 
4445
- if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LLs", (char **) keywords, &_handle, &ctx, &code)) {
4446
- return NULL;
4447
- }
4448
- retval = api_VM_ExecuteWithContext(_handle, ctx, code);
4449
- if (PyErr_Occurred()) {
4475
+ if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "Ls", (char **) keywords, &handle, &val)) {
4450
4476
  return NULL;
4451
4477
  }
4452
- py_retval = Py_BuildValue((char *) "L", retval);
4478
+ api_VMError_Message_Set(handle, val);
4479
+ Py_INCREF(Py_None);
4480
+ py_retval = Py_None;
4453
4481
  return py_retval;
4454
4482
  }
4455
- PyObject * _wrap__api_api_VM_ExecuteWithContext(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
4483
+ PyObject * _wrap__api_api_VMError_Message_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
4456
4484
 
4457
4485
 
4458
4486
  PyObject *
4459
- _wrap__api_api_VM_NewObjectInstance(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
4487
+ _wrap__api_api_VMError_Source_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
4460
4488
  {
4461
4489
  PyObject *py_retval;
4462
4490
  int64_t retval;
4463
- int64_t _handle;
4464
- char *className;
4465
- const char *keywords[] = {"_handle", "className", NULL};
4491
+ int64_t handle;
4492
+ const char *keywords[] = {"handle", NULL};
4466
4493
 
4467
- if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "Ls", (char **) keywords, &_handle, &className)) {
4468
- return NULL;
4469
- }
4470
- retval = api_VM_NewObjectInstance(_handle, className);
4471
- if (PyErr_Occurred()) {
4494
+ if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
4472
4495
  return NULL;
4473
4496
  }
4497
+ retval = api_VMError_Source_Get(handle);
4474
4498
  py_retval = Py_BuildValue((char *) "L", retval);
4475
4499
  return py_retval;
4476
4500
  }
4477
- PyObject * _wrap__api_api_VM_NewObjectInstance(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
4501
+ PyObject * _wrap__api_api_VMError_Source_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
4478
4502
 
4479
4503
 
4480
4504
  PyObject *
4481
- _wrap__api_api_VM_Call(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
4505
+ _wrap__api_api_VMError_Source_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
4482
4506
  {
4483
4507
  PyObject *py_retval;
4484
- int64_t retval;
4485
- int64_t _handle;
4486
- char *functionName;
4487
- int64_t args2;
4488
- const char *keywords[] = {"_handle", "functionName", "args", NULL};
4508
+ int64_t handle;
4509
+ int64_t val;
4510
+ const char *keywords[] = {"handle", "val", NULL};
4489
4511
 
4490
- if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LsL", (char **) keywords, &_handle, &functionName, &args2)) {
4491
- return NULL;
4492
- }
4493
- retval = api_VM_Call(_handle, functionName, args2);
4494
- if (PyErr_Occurred()) {
4512
+ if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LL", (char **) keywords, &handle, &val)) {
4495
4513
  return NULL;
4496
4514
  }
4497
- py_retval = Py_BuildValue((char *) "L", retval);
4515
+ api_VMError_Source_Set(handle, val);
4516
+ Py_INCREF(Py_None);
4517
+ py_retval = Py_None;
4498
4518
  return py_retval;
4499
4519
  }
4500
- PyObject * _wrap__api_api_VM_Call(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
4520
+ PyObject * _wrap__api_api_VMError_Source_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
4501
4521
 
4502
4522
 
4503
4523
  PyObject *
4504
- _wrap__api_api_VM_CallMethod(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
4524
+ _wrap__api_api_VMError_Duration_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
4505
4525
  {
4506
4526
  PyObject *py_retval;
4507
4527
  int64_t retval;
4508
- int64_t _handle;
4509
- int64_t object;
4510
- char *methodName;
4511
- int64_t args2;
4512
- const char *keywords[] = {"_handle", "object", "methodName", "args", NULL};
4528
+ int64_t handle;
4529
+ const char *keywords[] = {"handle", NULL};
4513
4530
 
4514
- if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LLsL", (char **) keywords, &_handle, &object, &methodName, &args2)) {
4515
- return NULL;
4516
- }
4517
- retval = api_VM_CallMethod(_handle, object, methodName, args2);
4518
- if (PyErr_Occurred()) {
4531
+ if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
4519
4532
  return NULL;
4520
4533
  }
4534
+ retval = api_VMError_Duration_Get(handle);
4521
4535
  py_retval = Py_BuildValue((char *) "L", retval);
4522
4536
  return py_retval;
4523
4537
  }
4524
- PyObject * _wrap__api_api_VM_CallMethod(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
4538
+ PyObject * _wrap__api_api_VMError_Duration_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
4525
4539
 
4526
4540
 
4527
4541
  PyObject *
4528
- _wrap__api_api_VM_DefineVariable(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
4542
+ _wrap__api_api_VMError_Duration_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
4529
4543
  {
4530
4544
  PyObject *py_retval;
4531
- char *retval;
4532
- int64_t _handle;
4533
- char *name;
4534
- int64_t value;
4535
- bool constant;
4536
- PyObject *py_constant;
4537
- const char *keywords[] = {"_handle", "name", "value", "constant", NULL};
4545
+ int64_t handle;
4546
+ int64_t val;
4547
+ const char *keywords[] = {"handle", "val", NULL};
4538
4548
 
4539
- if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LsLO", (char **) keywords, &_handle, &name, &value, &py_constant)) {
4540
- return NULL;
4541
- }
4542
- constant = (bool) PyObject_IsTrue(py_constant);
4543
- retval = api_VM_DefineVariable(_handle, name, value, constant);
4544
- if (PyErr_Occurred()) {
4549
+ if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LL", (char **) keywords, &handle, &val)) {
4545
4550
  return NULL;
4546
4551
  }
4547
- py_retval = Py_BuildValue((char *) "s", retval);
4552
+ api_VMError_Duration_Set(handle, val);
4553
+ Py_INCREF(Py_None);
4554
+ py_retval = Py_None;
4548
4555
  return py_retval;
4549
4556
  }
4550
- PyObject * _wrap__api_api_VM_DefineVariable(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
4557
+ PyObject * _wrap__api_api_VMError_Duration_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
4551
4558
 
4552
4559
 
4553
4560
  PyObject *
4554
- _wrap__api_api_VM_SetVariable(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
4561
+ _wrap__api_api_VMError_Error(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
4555
4562
  {
4556
4563
  PyObject *py_retval;
4557
4564
  char *retval;
4558
4565
  int64_t _handle;
4559
- char *variableName;
4560
- int64_t value;
4561
- const char *keywords[] = {"_handle", "variableName", "value", NULL};
4566
+ const char *keywords[] = {"_handle", NULL};
4562
4567
 
4563
- if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LsL", (char **) keywords, &_handle, &variableName, &value)) {
4568
+ if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &_handle)) {
4564
4569
  return NULL;
4565
4570
  }
4566
- retval = api_VM_SetVariable(_handle, variableName, value);
4571
+ retval = api_VMError_Error(_handle);
4567
4572
  if (PyErr_Occurred()) {
4573
+ if (retval != NULL) free(retval);
4568
4574
  return NULL;
4569
4575
  }
4570
4576
  py_retval = Py_BuildValue((char *) "s", retval);
4577
+ free(retval);
4571
4578
  return py_retval;
4572
4579
  }
4573
- PyObject * _wrap__api_api_VM_SetVariable(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
4580
+ PyObject * _wrap__api_api_VMError_Error(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
4574
4581
 
4575
4582
 
4576
4583
  PyObject *
4577
- _wrap__api_api_VM_GetVariable(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
4584
+ _wrap__api_api_VMError_Unwrap(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
4578
4585
  {
4579
4586
  PyObject *py_retval;
4580
- int64_t retval;
4587
+ char *retval;
4581
4588
  int64_t _handle;
4582
- char *variableName;
4583
- const char *keywords[] = {"_handle", "variableName", NULL};
4589
+ const char *keywords[] = {"_handle", NULL};
4584
4590
 
4585
- if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "Ls", (char **) keywords, &_handle, &variableName)) {
4591
+ if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &_handle)) {
4586
4592
  return NULL;
4587
4593
  }
4588
- retval = api_VM_GetVariable(_handle, variableName);
4594
+ retval = api_VMError_Unwrap(_handle);
4589
4595
  if (PyErr_Occurred()) {
4590
4596
  return NULL;
4591
4597
  }
4592
- py_retval = Py_BuildValue((char *) "L", retval);
4598
+ py_retval = Py_BuildValue((char *) "s", retval);
4593
4599
  return py_retval;
4594
4600
  }
4595
- PyObject * _wrap__api_api_VM_GetVariable(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
4601
+ PyObject * _wrap__api_api_VMError_Unwrap(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
4596
4602
 
4597
4603
 
4598
4604
  PyObject *
4599
- _wrap__api_api_VM_DefineClass(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
4605
+ _wrap__api_api_VMError_IsCompileError(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
4600
4606
  {
4601
4607
  PyObject *py_retval;
4602
- char *retval;
4608
+ bool retval;
4603
4609
  int64_t _handle;
4604
- int64_t classDef;
4605
- const char *keywords[] = {"_handle", "classDef", NULL};
4610
+ const char *keywords[] = {"_handle", NULL};
4606
4611
 
4607
- if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LL", (char **) keywords, &_handle, &classDef)) {
4612
+ if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &_handle)) {
4608
4613
  return NULL;
4609
4614
  }
4610
- retval = api_VM_DefineClass(_handle, classDef);
4615
+ retval = api_VMError_IsCompileError(_handle);
4611
4616
  if (PyErr_Occurred()) {
4612
4617
  return NULL;
4613
4618
  }
4614
- py_retval = Py_BuildValue((char *) "s", retval);
4615
- return py_retval;
4616
- }
4617
- PyObject * _wrap__api_api_VM_DefineClass(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
4618
-
4619
-
4620
- PyObject *
4621
- _wrap__api_api_VMCompatibilityShim_CTor(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs))
4622
- {
4623
- PyObject *py_retval;
4624
- int64_t retval;
4625
-
4626
- retval = api_VMCompatibilityShim_CTor();
4627
- py_retval = Py_BuildValue((char *) "L", retval);
4619
+ py_retval = Py_BuildValue((char *) "N", PyBool_FromLong(retval));
4628
4620
  return py_retval;
4629
4621
  }
4630
- PyObject * _wrap__api_api_VMCompatibilityShim_CTor(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs));
4622
+ PyObject * _wrap__api_api_VMError_IsCompileError(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
4631
4623
 
4632
4624
 
4633
4625
  PyObject *
4634
- _wrap__api_api_VMCompatibilityShim_DefineFunction(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
4626
+ _wrap__api_api_VMError_IsRuntimeError(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
4635
4627
  {
4636
4628
  PyObject *py_retval;
4637
- char *retval;
4629
+ bool retval;
4638
4630
  int64_t _handle;
4639
- char *id;
4640
- char *name;
4641
- int64_t argc;
4642
- PyObject *function;
4643
- const char *keywords[] = {"_handle", "id", "name", "argc", "function", NULL};
4631
+ const char *keywords[] = {"_handle", NULL};
4644
4632
 
4645
- if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LssLO", (char **) keywords, &_handle, &id, &name, &argc, &function)) {
4633
+ if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &_handle)) {
4646
4634
  return NULL;
4647
4635
  }
4648
- retval = api_VMCompatibilityShim_DefineFunction(_handle, id, name, argc, function);
4636
+ retval = api_VMError_IsRuntimeError(_handle);
4649
4637
  if (PyErr_Occurred()) {
4650
4638
  return NULL;
4651
4639
  }
4652
- py_retval = Py_BuildValue((char *) "s", retval);
4640
+ py_retval = Py_BuildValue((char *) "N", PyBool_FromLong(retval));
4653
4641
  return py_retval;
4654
4642
  }
4655
- PyObject * _wrap__api_api_VMCompatibilityShim_DefineFunction(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
4643
+ PyObject * _wrap__api_api_VMError_IsRuntimeError(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
4656
4644
 
4657
4645
 
4658
4646
  PyObject *
4659
- _wrap__api_api_VMCompatibilityShim_BuildNewClassVariableWithGetter(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
4647
+ _wrap__api_api_VMError_IsTimeoutError(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
4660
4648
  {
4661
4649
  PyObject *py_retval;
4662
- int64_t retval;
4650
+ bool retval;
4663
4651
  int64_t _handle;
4664
- int64_t variable;
4665
- char *getterID;
4666
- PyObject *getter;
4667
- const char *keywords[] = {"_handle", "variable", "getterID", "getter", NULL};
4652
+ const char *keywords[] = {"_handle", NULL};
4668
4653
 
4669
- if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LLsO", (char **) keywords, &_handle, &variable, &getterID, &getter)) {
4654
+ if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &_handle)) {
4670
4655
  return NULL;
4671
4656
  }
4672
- retval = api_VMCompatibilityShim_BuildNewClassVariableWithGetter(_handle, variable, getterID, getter);
4657
+ retval = api_VMError_IsTimeoutError(_handle);
4673
4658
  if (PyErr_Occurred()) {
4674
4659
  return NULL;
4675
4660
  }
4676
- py_retval = Py_BuildValue((char *) "L", retval);
4661
+ py_retval = Py_BuildValue((char *) "N", PyBool_FromLong(retval));
4677
4662
  return py_retval;
4678
4663
  }
4679
- PyObject * _wrap__api_api_VMCompatibilityShim_BuildNewClassVariableWithGetter(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
4664
+ PyObject * _wrap__api_api_VMError_IsTimeoutError(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
4680
4665
 
4681
4666
 
4682
4667
  PyObject *
4683
- _wrap__api_api_VMCompatibilityShim_BuildNewClassVariableWithSetter(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
4668
+ _wrap__api_api_VMError_IsConversionError(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
4684
4669
  {
4685
4670
  PyObject *py_retval;
4686
- int64_t retval;
4671
+ bool retval;
4687
4672
  int64_t _handle;
4688
- int64_t variable;
4689
- char *setterID;
4690
- PyObject *setter;
4691
- const char *keywords[] = {"_handle", "variable", "setterID", "setter", NULL};
4673
+ const char *keywords[] = {"_handle", NULL};
4692
4674
 
4693
- if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LLsO", (char **) keywords, &_handle, &variable, &setterID, &setter)) {
4675
+ if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &_handle)) {
4694
4676
  return NULL;
4695
4677
  }
4696
- retval = api_VMCompatibilityShim_BuildNewClassVariableWithSetter(_handle, variable, setterID, setter);
4678
+ retval = api_VMError_IsConversionError(_handle);
4697
4679
  if (PyErr_Occurred()) {
4698
4680
  return NULL;
4699
4681
  }
4700
- py_retval = Py_BuildValue((char *) "L", retval);
4682
+ py_retval = Py_BuildValue((char *) "N", PyBool_FromLong(retval));
4701
4683
  return py_retval;
4702
4684
  }
4703
- PyObject * _wrap__api_api_VMCompatibilityShim_BuildNewClassVariableWithSetter(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
4685
+ PyObject * _wrap__api_api_VMError_IsConversionError(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
4704
4686
 
4705
4687
 
4706
4688
  PyObject *
4707
- _wrap__api_api_VMCompatibilityShim_BuildNewClassMethod(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
4689
+ _wrap__api_api_VMError_IsConfigError(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
4708
4690
  {
4709
4691
  PyObject *py_retval;
4710
- int64_t retval;
4692
+ bool retval;
4711
4693
  int64_t _handle;
4712
- int64_t method;
4713
- char *id;
4714
- PyObject *function;
4715
- const char *keywords[] = {"_handle", "method", "id", "function", NULL};
4694
+ const char *keywords[] = {"_handle", NULL};
4716
4695
 
4717
- if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LLsO", (char **) keywords, &_handle, &method, &id, &function)) {
4696
+ if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &_handle)) {
4718
4697
  return NULL;
4719
4698
  }
4720
- retval = api_VMCompatibilityShim_BuildNewClassMethod(_handle, method, id, function);
4699
+ retval = api_VMError_IsConfigError(_handle);
4721
4700
  if (PyErr_Occurred()) {
4722
4701
  return NULL;
4723
4702
  }
4724
- py_retval = Py_BuildValue((char *) "L", retval);
4703
+ py_retval = Py_BuildValue((char *) "N", PyBool_FromLong(retval));
4725
4704
  return py_retval;
4726
4705
  }
4727
- PyObject * _wrap__api_api_VMCompatibilityShim_BuildNewClassMethod(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
4706
+ PyObject * _wrap__api_api_VMError_IsConfigError(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
4728
4707
 
4729
4708
 
4730
4709
  PyObject *
4731
- _wrap__api_api_VMCompatibilityShim_BuildNewUnknownFunctionHandler(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
4710
+ _wrap__api_api_ExecutionResult_CTor(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs))
4732
4711
  {
4733
4712
  PyObject *py_retval;
4734
4713
  int64_t retval;
4735
- int64_t _handle;
4736
- char *id;
4737
- PyObject *function;
4738
- const char *keywords[] = {"_handle", "id", "function", NULL};
4739
4714
 
4740
- if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LsO", (char **) keywords, &_handle, &id, &function)) {
4741
- return NULL;
4742
- }
4743
- retval = api_VMCompatibilityShim_BuildNewUnknownFunctionHandler(_handle, id, function);
4744
- if (PyErr_Occurred()) {
4745
- return NULL;
4746
- }
4715
+ retval = api_ExecutionResult_CTor();
4747
4716
  py_retval = Py_BuildValue((char *) "L", retval);
4748
4717
  return py_retval;
4749
4718
  }
4750
- PyObject * _wrap__api_api_VMCompatibilityShim_BuildNewUnknownFunctionHandler(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
4719
+ PyObject * _wrap__api_api_ExecutionResult_CTor(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs));
4751
4720
 
4752
4721
 
4753
4722
  PyObject *
4754
- _wrap__api_api_VMCompatibilityShim_IsClassDefined(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
4723
+ _wrap__api_api_ExecutionResult_Value_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
4755
4724
  {
4756
4725
  PyObject *py_retval;
4757
- bool retval;
4758
- int64_t _handle;
4759
- char *name;
4760
- const char *keywords[] = {"_handle", "name", NULL};
4726
+ int64_t retval;
4727
+ int64_t handle;
4728
+ const char *keywords[] = {"handle", NULL};
4761
4729
 
4762
- if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "Ls", (char **) keywords, &_handle, &name)) {
4763
- return NULL;
4764
- }
4765
- retval = api_VMCompatibilityShim_IsClassDefined(_handle, name);
4766
- if (PyErr_Occurred()) {
4730
+ if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
4767
4731
  return NULL;
4768
4732
  }
4769
- py_retval = Py_BuildValue((char *) "N", PyBool_FromLong(retval));
4733
+ retval = api_ExecutionResult_Value_Get(handle);
4734
+ py_retval = Py_BuildValue((char *) "L", retval);
4770
4735
  return py_retval;
4771
4736
  }
4772
- PyObject * _wrap__api_api_VMCompatibilityShim_IsClassDefined(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
4737
+ PyObject * _wrap__api_api_ExecutionResult_Value_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
4773
4738
 
4774
4739
 
4775
4740
  PyObject *
4776
- _wrap__api_api_VMCompatibilityShim_LookupObject(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
4741
+ _wrap__api_api_ExecutionResult_Value_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
4777
4742
  {
4778
4743
  PyObject *py_retval;
4779
- int64_t retval;
4780
- int64_t _handle;
4781
- char *id;
4782
- const char *keywords[] = {"_handle", "id", NULL};
4744
+ int64_t handle;
4745
+ int64_t val;
4746
+ const char *keywords[] = {"handle", "val", NULL};
4783
4747
 
4784
- if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "Ls", (char **) keywords, &_handle, &id)) {
4785
- return NULL;
4786
- }
4787
- retval = api_VMCompatibilityShim_LookupObject(_handle, id);
4788
- if (PyErr_Occurred()) {
4748
+ if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LL", (char **) keywords, &handle, &val)) {
4789
4749
  return NULL;
4790
4750
  }
4791
- py_retval = Py_BuildValue((char *) "L", retval);
4751
+ api_ExecutionResult_Value_Set(handle, val);
4752
+ Py_INCREF(Py_None);
4753
+ py_retval = Py_None;
4792
4754
  return py_retval;
4793
4755
  }
4794
- PyObject * _wrap__api_api_VMCompatibilityShim_LookupObject(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
4756
+ PyObject * _wrap__api_api_ExecutionResult_Value_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
4795
4757
 
4796
4758
 
4797
4759
  PyObject *
4798
- _wrap__api_api_VMCompatibilityShim_GetObjectMRO(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
4760
+ _wrap__api_api_ExecutionResult_RawValue_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
4799
4761
  {
4800
4762
  PyObject *py_retval;
4801
4763
  int64_t retval;
4802
- int64_t _handle;
4803
- char *id;
4804
- const char *keywords[] = {"_handle", "id", NULL};
4764
+ int64_t handle;
4765
+ const char *keywords[] = {"handle", NULL};
4805
4766
 
4806
- if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "Ls", (char **) keywords, &_handle, &id)) {
4807
- return NULL;
4808
- }
4809
- retval = api_VMCompatibilityShim_GetObjectMRO(_handle, id);
4810
- if (PyErr_Occurred()) {
4767
+ if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
4811
4768
  return NULL;
4812
4769
  }
4770
+ retval = api_ExecutionResult_RawValue_Get(handle);
4813
4771
  py_retval = Py_BuildValue((char *) "L", retval);
4814
4772
  return py_retval;
4815
4773
  }
4816
- PyObject * _wrap__api_api_VMCompatibilityShim_GetObjectMRO(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
4774
+ PyObject * _wrap__api_api_ExecutionResult_RawValue_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
4817
4775
 
4818
4776
 
4819
4777
  PyObject *
4820
- _wrap__api_api_VMCompatibilityShim_GetObjectImmediateFunctions(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
4778
+ _wrap__api_api_ExecutionResult_RawValue_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
4821
4779
  {
4822
4780
  PyObject *py_retval;
4823
- int64_t retval;
4824
- int64_t _handle;
4825
- char *id;
4826
- const char *keywords[] = {"_handle", "id", NULL};
4781
+ int64_t handle;
4782
+ int64_t val;
4783
+ const char *keywords[] = {"handle", "val", NULL};
4827
4784
 
4828
- if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "Ls", (char **) keywords, &_handle, &id)) {
4829
- return NULL;
4830
- }
4831
- retval = api_VMCompatibilityShim_GetObjectImmediateFunctions(_handle, id);
4832
- if (PyErr_Occurred()) {
4785
+ if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LL", (char **) keywords, &handle, &val)) {
4833
4786
  return NULL;
4834
4787
  }
4835
- py_retval = Py_BuildValue((char *) "L", retval);
4788
+ api_ExecutionResult_RawValue_Set(handle, val);
4789
+ Py_INCREF(Py_None);
4790
+ py_retval = Py_None;
4836
4791
  return py_retval;
4837
4792
  }
4838
- PyObject * _wrap__api_api_VMCompatibilityShim_GetObjectImmediateFunctions(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
4793
+ PyObject * _wrap__api_api_ExecutionResult_RawValue_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
4839
4794
 
4840
4795
 
4841
4796
  PyObject *
4842
- _wrap__api_api_VMCompatibilityShim_GetObjectImmediateVariables(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
4797
+ _wrap__api_api_ExecutionResult_Output_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
4843
4798
  {
4844
4799
  PyObject *py_retval;
4845
- int64_t retval;
4846
- int64_t _handle;
4847
- char *id;
4848
- const char *keywords[] = {"_handle", "id", NULL};
4800
+ char *retval;
4801
+ int64_t handle;
4802
+ const char *keywords[] = {"handle", NULL};
4849
4803
 
4850
- if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "Ls", (char **) keywords, &_handle, &id)) {
4851
- return NULL;
4852
- }
4853
- retval = api_VMCompatibilityShim_GetObjectImmediateVariables(_handle, id);
4854
- if (PyErr_Occurred()) {
4804
+ if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
4855
4805
  return NULL;
4856
4806
  }
4857
- py_retval = Py_BuildValue((char *) "L", retval);
4807
+ retval = api_ExecutionResult_Output_Get(handle);
4808
+ py_retval = Py_BuildValue((char *) "s", retval);
4858
4809
  return py_retval;
4859
4810
  }
4860
- PyObject * _wrap__api_api_VMCompatibilityShim_GetObjectImmediateVariables(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
4811
+ PyObject * _wrap__api_api_ExecutionResult_Output_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
4861
4812
 
4862
4813
 
4863
4814
  PyObject *
4864
- _wrap__api_api_VMCompatibilityShim_AddVariableToObject(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
4815
+ _wrap__api_api_ExecutionResult_Output_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
4865
4816
  {
4866
4817
  PyObject *py_retval;
4867
- char *retval;
4868
- int64_t _handle;
4869
- char *id;
4870
- int64_t variable;
4871
- const char *keywords[] = {"_handle", "id", "variable", NULL};
4818
+ int64_t handle;
4819
+ char *val;
4820
+ const char *keywords[] = {"handle", "val", NULL};
4872
4821
 
4873
- if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LsL", (char **) keywords, &_handle, &id, &variable)) {
4874
- return NULL;
4875
- }
4876
- retval = api_VMCompatibilityShim_AddVariableToObject(_handle, id, variable);
4877
- if (PyErr_Occurred()) {
4822
+ if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "Ls", (char **) keywords, &handle, &val)) {
4878
4823
  return NULL;
4879
4824
  }
4880
- py_retval = Py_BuildValue((char *) "s", retval);
4825
+ api_ExecutionResult_Output_Set(handle, val);
4826
+ Py_INCREF(Py_None);
4827
+ py_retval = Py_None;
4881
4828
  return py_retval;
4882
4829
  }
4883
- PyObject * _wrap__api_api_VMCompatibilityShim_AddVariableToObject(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
4830
+ PyObject * _wrap__api_api_ExecutionResult_Output_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
4884
4831
 
4885
4832
 
4886
4833
  PyObject *
4887
- _wrap__api_api_ClassMethod_CTor(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs))
4834
+ _wrap__api_api_SourceLocation_CTor(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs))
4888
4835
  {
4889
4836
  PyObject *py_retval;
4890
4837
  int64_t retval;
4891
4838
 
4892
- retval = api_ClassMethod_CTor();
4839
+ retval = api_SourceLocation_CTor();
4893
4840
  py_retval = Py_BuildValue((char *) "L", retval);
4894
4841
  return py_retval;
4895
4842
  }
4896
- PyObject * _wrap__api_api_ClassMethod_CTor(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs));
4843
+ PyObject * _wrap__api_api_SourceLocation_CTor(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs));
4897
4844
 
4898
4845
 
4899
4846
  PyObject *
4900
- _wrap__api_api_ClassMethod_Name_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
4847
+ _wrap__api_api_SourceLocation_Filename_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
4901
4848
  {
4902
4849
  PyObject *py_retval;
4903
4850
  char *retval;
@@ -4907,15 +4854,15 @@ _wrap__api_api_ClassMethod_Name_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject
4907
4854
  if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
4908
4855
  return NULL;
4909
4856
  }
4910
- retval = api_ClassMethod_Name_Get(handle);
4857
+ retval = api_SourceLocation_Filename_Get(handle);
4911
4858
  py_retval = Py_BuildValue((char *) "s", retval);
4912
4859
  return py_retval;
4913
4860
  }
4914
- PyObject * _wrap__api_api_ClassMethod_Name_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
4861
+ PyObject * _wrap__api_api_SourceLocation_Filename_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
4915
4862
 
4916
4863
 
4917
4864
  PyObject *
4918
- _wrap__api_api_ClassMethod_Name_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
4865
+ _wrap__api_api_SourceLocation_Filename_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
4919
4866
  {
4920
4867
  PyObject *py_retval;
4921
4868
  int64_t handle;
@@ -4925,16 +4872,16 @@ _wrap__api_api_ClassMethod_Name_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject
4925
4872
  if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "Ls", (char **) keywords, &handle, &val)) {
4926
4873
  return NULL;
4927
4874
  }
4928
- api_ClassMethod_Name_Set(handle, val);
4875
+ api_SourceLocation_Filename_Set(handle, val);
4929
4876
  Py_INCREF(Py_None);
4930
4877
  py_retval = Py_None;
4931
4878
  return py_retval;
4932
4879
  }
4933
- PyObject * _wrap__api_api_ClassMethod_Name_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
4880
+ PyObject * _wrap__api_api_SourceLocation_Filename_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
4934
4881
 
4935
4882
 
4936
4883
  PyObject *
4937
- _wrap__api_api_ClassMethod_Argc_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
4884
+ _wrap__api_api_SourceLocation_Line_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
4938
4885
  {
4939
4886
  PyObject *py_retval;
4940
4887
  int64_t retval;
@@ -4944,15 +4891,15 @@ _wrap__api_api_ClassMethod_Argc_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject
4944
4891
  if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
4945
4892
  return NULL;
4946
4893
  }
4947
- retval = api_ClassMethod_Argc_Get(handle);
4894
+ retval = api_SourceLocation_Line_Get(handle);
4948
4895
  py_retval = Py_BuildValue((char *) "L", retval);
4949
4896
  return py_retval;
4950
4897
  }
4951
- PyObject * _wrap__api_api_ClassMethod_Argc_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
4898
+ PyObject * _wrap__api_api_SourceLocation_Line_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
4952
4899
 
4953
4900
 
4954
4901
  PyObject *
4955
- _wrap__api_api_ClassMethod_Argc_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
4902
+ _wrap__api_api_SourceLocation_Line_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
4956
4903
  {
4957
4904
  PyObject *py_retval;
4958
4905
  int64_t handle;
@@ -4962,573 +4909,647 @@ _wrap__api_api_ClassMethod_Argc_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject
4962
4909
  if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LL", (char **) keywords, &handle, &val)) {
4963
4910
  return NULL;
4964
4911
  }
4965
- api_ClassMethod_Argc_Set(handle, val);
4912
+ api_SourceLocation_Line_Set(handle, val);
4966
4913
  Py_INCREF(Py_None);
4967
4914
  py_retval = Py_None;
4968
4915
  return py_retval;
4969
4916
  }
4970
- PyObject * _wrap__api_api_ClassMethod_Argc_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
4917
+ PyObject * _wrap__api_api_SourceLocation_Line_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
4971
4918
 
4972
4919
 
4973
4920
  PyObject *
4974
- _wrap__api_api_ClassVariable_CTor(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs))
4921
+ _wrap__api_api_SourceLocation_Column_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
4975
4922
  {
4976
4923
  PyObject *py_retval;
4977
4924
  int64_t retval;
4925
+ int64_t handle;
4926
+ const char *keywords[] = {"handle", NULL};
4978
4927
 
4979
- retval = api_ClassVariable_CTor();
4928
+ if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
4929
+ return NULL;
4930
+ }
4931
+ retval = api_SourceLocation_Column_Get(handle);
4980
4932
  py_retval = Py_BuildValue((char *) "L", retval);
4981
4933
  return py_retval;
4982
4934
  }
4983
- PyObject * _wrap__api_api_ClassVariable_CTor(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs));
4935
+ PyObject * _wrap__api_api_SourceLocation_Column_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
4984
4936
 
4985
4937
 
4986
4938
  PyObject *
4987
- _wrap__api_api_ClassVariable_Name_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
4939
+ _wrap__api_api_SourceLocation_Column_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
4988
4940
  {
4989
4941
  PyObject *py_retval;
4990
- char *retval;
4991
4942
  int64_t handle;
4992
- const char *keywords[] = {"handle", NULL};
4943
+ int64_t val;
4944
+ const char *keywords[] = {"handle", "val", NULL};
4993
4945
 
4994
- if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
4946
+ if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LL", (char **) keywords, &handle, &val)) {
4995
4947
  return NULL;
4996
4948
  }
4997
- retval = api_ClassVariable_Name_Get(handle);
4998
- py_retval = Py_BuildValue((char *) "s", retval);
4949
+ api_SourceLocation_Column_Set(handle, val);
4950
+ Py_INCREF(Py_None);
4951
+ py_retval = Py_None;
4999
4952
  return py_retval;
5000
4953
  }
5001
- PyObject * _wrap__api_api_ClassVariable_Name_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
4954
+ PyObject * _wrap__api_api_SourceLocation_Column_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
5002
4955
 
5003
4956
 
5004
4957
  PyObject *
5005
- _wrap__api_api_ClassVariable_Name_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
4958
+ _wrap__api_api_VMCompatibilityShim_CTor(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs))
5006
4959
  {
5007
4960
  PyObject *py_retval;
5008
- int64_t handle;
5009
- char *val;
5010
- const char *keywords[] = {"handle", "val", NULL};
4961
+ int64_t retval;
5011
4962
 
5012
- if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "Ls", (char **) keywords, &handle, &val)) {
4963
+ retval = api_VMCompatibilityShim_CTor();
4964
+ py_retval = Py_BuildValue((char *) "L", retval);
4965
+ return py_retval;
4966
+ }
4967
+ PyObject * _wrap__api_api_VMCompatibilityShim_CTor(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs));
4968
+
4969
+
4970
+ PyObject *
4971
+ _wrap__api_api_VMCompatibilityShim_DefineFunction(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
4972
+ {
4973
+ PyObject *py_retval;
4974
+ char *retval;
4975
+ int64_t _handle;
4976
+ char *id;
4977
+ char *name;
4978
+ int64_t argc;
4979
+ PyObject *function;
4980
+ const char *keywords[] = {"_handle", "id", "name", "argc", "function", NULL};
4981
+
4982
+ if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LssLO", (char **) keywords, &_handle, &id, &name, &argc, &function)) {
5013
4983
  return NULL;
5014
4984
  }
5015
- api_ClassVariable_Name_Set(handle, val);
5016
- Py_INCREF(Py_None);
5017
- py_retval = Py_None;
4985
+ retval = api_VMCompatibilityShim_DefineFunction(_handle, id, name, argc, function);
4986
+ if (PyErr_Occurred()) {
4987
+ return NULL;
4988
+ }
4989
+ py_retval = Py_BuildValue((char *) "s", retval);
5018
4990
  return py_retval;
5019
4991
  }
5020
- PyObject * _wrap__api_api_ClassVariable_Name_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
4992
+ PyObject * _wrap__api_api_VMCompatibilityShim_DefineFunction(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
5021
4993
 
5022
4994
 
5023
4995
  PyObject *
5024
- _wrap__api_api_ClassVariable_Value_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
4996
+ _wrap__api_api_VMCompatibilityShim_BuildNewClassVariableWithGetter(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
5025
4997
  {
5026
4998
  PyObject *py_retval;
5027
4999
  int64_t retval;
5028
- int64_t handle;
5029
- const char *keywords[] = {"handle", NULL};
5000
+ int64_t _handle;
5001
+ int64_t variable;
5002
+ char *getterID;
5003
+ PyObject *getter;
5004
+ const char *keywords[] = {"_handle", "variable", "getterID", "getter", NULL};
5030
5005
 
5031
- if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
5006
+ if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LLsO", (char **) keywords, &_handle, &variable, &getterID, &getter)) {
5007
+ return NULL;
5008
+ }
5009
+ retval = api_VMCompatibilityShim_BuildNewClassVariableWithGetter(_handle, variable, getterID, getter);
5010
+ if (PyErr_Occurred()) {
5032
5011
  return NULL;
5033
5012
  }
5034
- retval = api_ClassVariable_Value_Get(handle);
5035
5013
  py_retval = Py_BuildValue((char *) "L", retval);
5036
5014
  return py_retval;
5037
5015
  }
5038
- PyObject * _wrap__api_api_ClassVariable_Value_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
5016
+ PyObject * _wrap__api_api_VMCompatibilityShim_BuildNewClassVariableWithGetter(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
5039
5017
 
5040
5018
 
5041
5019
  PyObject *
5042
- _wrap__api_api_ClassVariable_Value_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
5020
+ _wrap__api_api_VMCompatibilityShim_BuildNewClassVariableWithSetter(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
5043
5021
  {
5044
5022
  PyObject *py_retval;
5045
- int64_t handle;
5046
- int64_t val;
5047
- const char *keywords[] = {"handle", "val", NULL};
5023
+ int64_t retval;
5024
+ int64_t _handle;
5025
+ int64_t variable;
5026
+ char *setterID;
5027
+ PyObject *setter;
5028
+ const char *keywords[] = {"_handle", "variable", "setterID", "setter", NULL};
5048
5029
 
5049
- if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LL", (char **) keywords, &handle, &val)) {
5030
+ if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LLsO", (char **) keywords, &_handle, &variable, &setterID, &setter)) {
5050
5031
  return NULL;
5051
5032
  }
5052
- api_ClassVariable_Value_Set(handle, val);
5053
- Py_INCREF(Py_None);
5054
- py_retval = Py_None;
5033
+ retval = api_VMCompatibilityShim_BuildNewClassVariableWithSetter(_handle, variable, setterID, setter);
5034
+ if (PyErr_Occurred()) {
5035
+ return NULL;
5036
+ }
5037
+ py_retval = Py_BuildValue((char *) "L", retval);
5055
5038
  return py_retval;
5056
5039
  }
5057
- PyObject * _wrap__api_api_ClassVariable_Value_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
5040
+ PyObject * _wrap__api_api_VMCompatibilityShim_BuildNewClassVariableWithSetter(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
5058
5041
 
5059
5042
 
5060
5043
  PyObject *
5061
- _wrap__api_api_ClassVariable_Locked_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
5044
+ _wrap__api_api_VMCompatibilityShim_BuildNewClassMethod(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
5062
5045
  {
5063
5046
  PyObject *py_retval;
5064
- bool retval;
5065
- int64_t handle;
5066
- const char *keywords[] = {"handle", NULL};
5047
+ int64_t retval;
5048
+ int64_t _handle;
5049
+ int64_t method;
5050
+ char *id;
5051
+ PyObject *function;
5052
+ const char *keywords[] = {"_handle", "method", "id", "function", NULL};
5067
5053
 
5068
- if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
5054
+ if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LLsO", (char **) keywords, &_handle, &method, &id, &function)) {
5055
+ return NULL;
5056
+ }
5057
+ retval = api_VMCompatibilityShim_BuildNewClassMethod(_handle, method, id, function);
5058
+ if (PyErr_Occurred()) {
5069
5059
  return NULL;
5070
5060
  }
5071
- retval = api_ClassVariable_Locked_Get(handle);
5072
- py_retval = Py_BuildValue((char *) "N", PyBool_FromLong(retval));
5061
+ py_retval = Py_BuildValue((char *) "L", retval);
5073
5062
  return py_retval;
5074
5063
  }
5075
- PyObject * _wrap__api_api_ClassVariable_Locked_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
5064
+ PyObject * _wrap__api_api_VMCompatibilityShim_BuildNewClassMethod(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
5076
5065
 
5077
5066
 
5078
5067
  PyObject *
5079
- _wrap__api_api_ClassVariable_Locked_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
5068
+ _wrap__api_api_VMCompatibilityShim_BuildNewUnknownFunctionHandler(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
5080
5069
  {
5081
5070
  PyObject *py_retval;
5082
- int64_t handle;
5083
- bool val;
5084
- PyObject *py_val;
5085
- const char *keywords[] = {"handle", "val", NULL};
5071
+ int64_t retval;
5072
+ int64_t _handle;
5073
+ char *id;
5074
+ PyObject *function;
5075
+ const char *keywords[] = {"_handle", "id", "function", NULL};
5086
5076
 
5087
- if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LO", (char **) keywords, &handle, &py_val)) {
5077
+ if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LsO", (char **) keywords, &_handle, &id, &function)) {
5088
5078
  return NULL;
5089
5079
  }
5090
- val = (bool) PyObject_IsTrue(py_val);
5091
- api_ClassVariable_Locked_Set(handle, val);
5092
- Py_INCREF(Py_None);
5093
- py_retval = Py_None;
5080
+ retval = api_VMCompatibilityShim_BuildNewUnknownFunctionHandler(_handle, id, function);
5081
+ if (PyErr_Occurred()) {
5082
+ return NULL;
5083
+ }
5084
+ py_retval = Py_BuildValue((char *) "L", retval);
5094
5085
  return py_retval;
5095
5086
  }
5096
- PyObject * _wrap__api_api_ClassVariable_Locked_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
5087
+ PyObject * _wrap__api_api_VMCompatibilityShim_BuildNewUnknownFunctionHandler(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
5097
5088
 
5098
5089
 
5099
5090
  PyObject *
5100
- _wrap__api_api_SourceLocation_CTor(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs))
5091
+ _wrap__api_api_VMCompatibilityShim_IsClassDefined(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
5101
5092
  {
5102
5093
  PyObject *py_retval;
5103
- int64_t retval;
5094
+ bool retval;
5095
+ int64_t _handle;
5096
+ char *name;
5097
+ const char *keywords[] = {"_handle", "name", NULL};
5104
5098
 
5105
- retval = api_SourceLocation_CTor();
5106
- py_retval = Py_BuildValue((char *) "L", retval);
5099
+ if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "Ls", (char **) keywords, &_handle, &name)) {
5100
+ return NULL;
5101
+ }
5102
+ retval = api_VMCompatibilityShim_IsClassDefined(_handle, name);
5103
+ if (PyErr_Occurred()) {
5104
+ return NULL;
5105
+ }
5106
+ py_retval = Py_BuildValue((char *) "N", PyBool_FromLong(retval));
5107
5107
  return py_retval;
5108
5108
  }
5109
- PyObject * _wrap__api_api_SourceLocation_CTor(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs));
5109
+ PyObject * _wrap__api_api_VMCompatibilityShim_IsClassDefined(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
5110
5110
 
5111
5111
 
5112
5112
  PyObject *
5113
- _wrap__api_api_SourceLocation_Filename_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
5113
+ _wrap__api_api_VMCompatibilityShim_LookupObject(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
5114
5114
  {
5115
5115
  PyObject *py_retval;
5116
- char *retval;
5117
- int64_t handle;
5118
- const char *keywords[] = {"handle", NULL};
5116
+ int64_t retval;
5117
+ int64_t _handle;
5118
+ char *id;
5119
+ const char *keywords[] = {"_handle", "id", NULL};
5119
5120
 
5120
- if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
5121
+ if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "Ls", (char **) keywords, &_handle, &id)) {
5121
5122
  return NULL;
5122
5123
  }
5123
- retval = api_SourceLocation_Filename_Get(handle);
5124
- py_retval = Py_BuildValue((char *) "s", retval);
5124
+ retval = api_VMCompatibilityShim_LookupObject(_handle, id);
5125
+ if (PyErr_Occurred()) {
5126
+ return NULL;
5127
+ }
5128
+ py_retval = Py_BuildValue((char *) "L", retval);
5125
5129
  return py_retval;
5126
5130
  }
5127
- PyObject * _wrap__api_api_SourceLocation_Filename_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
5131
+ PyObject * _wrap__api_api_VMCompatibilityShim_LookupObject(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
5128
5132
 
5129
5133
 
5130
5134
  PyObject *
5131
- _wrap__api_api_SourceLocation_Filename_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
5135
+ _wrap__api_api_VMCompatibilityShim_GetObjectMRO(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
5132
5136
  {
5133
5137
  PyObject *py_retval;
5134
- int64_t handle;
5135
- char *val;
5136
- const char *keywords[] = {"handle", "val", NULL};
5138
+ int64_t retval;
5139
+ int64_t _handle;
5140
+ char *id;
5141
+ const char *keywords[] = {"_handle", "id", NULL};
5137
5142
 
5138
- if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "Ls", (char **) keywords, &handle, &val)) {
5143
+ if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "Ls", (char **) keywords, &_handle, &id)) {
5139
5144
  return NULL;
5140
5145
  }
5141
- api_SourceLocation_Filename_Set(handle, val);
5142
- Py_INCREF(Py_None);
5143
- py_retval = Py_None;
5146
+ retval = api_VMCompatibilityShim_GetObjectMRO(_handle, id);
5147
+ if (PyErr_Occurred()) {
5148
+ return NULL;
5149
+ }
5150
+ py_retval = Py_BuildValue((char *) "L", retval);
5144
5151
  return py_retval;
5145
5152
  }
5146
- PyObject * _wrap__api_api_SourceLocation_Filename_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
5153
+ PyObject * _wrap__api_api_VMCompatibilityShim_GetObjectMRO(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
5147
5154
 
5148
5155
 
5149
5156
  PyObject *
5150
- _wrap__api_api_SourceLocation_Line_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
5157
+ _wrap__api_api_VMCompatibilityShim_GetObjectImmediateFunctions(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
5151
5158
  {
5152
5159
  PyObject *py_retval;
5153
5160
  int64_t retval;
5154
- int64_t handle;
5155
- const char *keywords[] = {"handle", NULL};
5161
+ int64_t _handle;
5162
+ char *id;
5163
+ const char *keywords[] = {"_handle", "id", NULL};
5156
5164
 
5157
- if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
5165
+ if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "Ls", (char **) keywords, &_handle, &id)) {
5166
+ return NULL;
5167
+ }
5168
+ retval = api_VMCompatibilityShim_GetObjectImmediateFunctions(_handle, id);
5169
+ if (PyErr_Occurred()) {
5158
5170
  return NULL;
5159
5171
  }
5160
- retval = api_SourceLocation_Line_Get(handle);
5161
5172
  py_retval = Py_BuildValue((char *) "L", retval);
5162
5173
  return py_retval;
5163
5174
  }
5164
- PyObject * _wrap__api_api_SourceLocation_Line_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
5175
+ PyObject * _wrap__api_api_VMCompatibilityShim_GetObjectImmediateFunctions(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
5165
5176
 
5166
5177
 
5167
5178
  PyObject *
5168
- _wrap__api_api_SourceLocation_Line_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
5179
+ _wrap__api_api_VMCompatibilityShim_GetObjectImmediateVariables(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
5169
5180
  {
5170
5181
  PyObject *py_retval;
5171
- int64_t handle;
5172
- int64_t val;
5173
- const char *keywords[] = {"handle", "val", NULL};
5182
+ int64_t retval;
5183
+ int64_t _handle;
5184
+ char *id;
5185
+ const char *keywords[] = {"_handle", "id", NULL};
5174
5186
 
5175
- if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LL", (char **) keywords, &handle, &val)) {
5187
+ if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "Ls", (char **) keywords, &_handle, &id)) {
5176
5188
  return NULL;
5177
5189
  }
5178
- api_SourceLocation_Line_Set(handle, val);
5179
- Py_INCREF(Py_None);
5180
- py_retval = Py_None;
5190
+ retval = api_VMCompatibilityShim_GetObjectImmediateVariables(_handle, id);
5191
+ if (PyErr_Occurred()) {
5192
+ return NULL;
5193
+ }
5194
+ py_retval = Py_BuildValue((char *) "L", retval);
5181
5195
  return py_retval;
5182
5196
  }
5183
- PyObject * _wrap__api_api_SourceLocation_Line_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
5197
+ PyObject * _wrap__api_api_VMCompatibilityShim_GetObjectImmediateVariables(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
5184
5198
 
5185
5199
 
5186
5200
  PyObject *
5187
- _wrap__api_api_SourceLocation_Column_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
5201
+ _wrap__api_api_VMCompatibilityShim_AddVariableToObject(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
5188
5202
  {
5189
5203
  PyObject *py_retval;
5190
- int64_t retval;
5191
- int64_t handle;
5192
- const char *keywords[] = {"handle", NULL};
5204
+ char *retval;
5205
+ int64_t _handle;
5206
+ char *id;
5207
+ int64_t variable;
5208
+ const char *keywords[] = {"_handle", "id", "variable", NULL};
5193
5209
 
5194
- if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
5210
+ if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LsL", (char **) keywords, &_handle, &id, &variable)) {
5195
5211
  return NULL;
5196
5212
  }
5197
- retval = api_SourceLocation_Column_Get(handle);
5198
- py_retval = Py_BuildValue((char *) "L", retval);
5213
+ retval = api_VMCompatibilityShim_AddVariableToObject(_handle, id, variable);
5214
+ if (PyErr_Occurred()) {
5215
+ return NULL;
5216
+ }
5217
+ py_retval = Py_BuildValue((char *) "s", retval);
5199
5218
  return py_retval;
5200
5219
  }
5201
- PyObject * _wrap__api_api_SourceLocation_Column_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
5220
+ PyObject * _wrap__api_api_VMCompatibilityShim_AddVariableToObject(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
5202
5221
 
5203
5222
 
5204
5223
  PyObject *
5205
- _wrap__api_api_SourceLocation_Column_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
5224
+ _wrap__api_api_WrapAny(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
5206
5225
  {
5207
5226
  PyObject *py_retval;
5208
- int64_t handle;
5209
- int64_t val;
5210
- const char *keywords[] = {"handle", "val", NULL};
5227
+ int64_t retval;
5228
+ char *value;
5229
+ const char *keywords[] = {"value", NULL};
5211
5230
 
5212
- if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LL", (char **) keywords, &handle, &val)) {
5231
+ if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "s", (char **) keywords, &value)) {
5213
5232
  return NULL;
5214
5233
  }
5215
- api_SourceLocation_Column_Set(handle, val);
5216
- Py_INCREF(Py_None);
5217
- py_retval = Py_None;
5234
+ retval = api_WrapAny(value);
5235
+ if (PyErr_Occurred()) {
5236
+ return NULL;
5237
+ }
5238
+ py_retval = Py_BuildValue((char *) "L", retval);
5218
5239
  return py_retval;
5219
5240
  }
5220
- PyObject * _wrap__api_api_SourceLocation_Column_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
5241
+ PyObject * _wrap__api_api_WrapAny(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
5221
5242
 
5222
5243
 
5223
5244
  PyObject *
5224
- _wrap__api_api_DefaultConfig(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs))
5245
+ _wrap__api_api_WrapInt(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
5225
5246
  {
5226
5247
  PyObject *py_retval;
5227
5248
  int64_t retval;
5249
+ int64_t value;
5250
+ const char *keywords[] = {"value", NULL};
5228
5251
 
5229
- retval = api_DefaultConfig();
5252
+ if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &value)) {
5253
+ return NULL;
5254
+ }
5255
+ retval = api_WrapInt(value);
5230
5256
  if (PyErr_Occurred()) {
5231
5257
  return NULL;
5232
5258
  }
5233
5259
  py_retval = Py_BuildValue((char *) "L", retval);
5234
5260
  return py_retval;
5235
5261
  }
5236
- PyObject * _wrap__api_api_DefaultConfig(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs));
5262
+ PyObject * _wrap__api_api_WrapInt(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
5237
5263
 
5238
5264
 
5239
5265
  PyObject *
5240
- _wrap__api_api_NewCompileError(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
5266
+ _wrap__api_api_WrapObject(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
5241
5267
  {
5242
5268
  PyObject *py_retval;
5243
5269
  int64_t retval;
5244
- char *message;
5245
- int64_t source;
5246
- const char *keywords[] = {"message", "source", NULL};
5270
+ int64_t value;
5271
+ const char *keywords[] = {"value", NULL};
5247
5272
 
5248
- if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "sL", (char **) keywords, &message, &source)) {
5273
+ if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &value)) {
5249
5274
  return NULL;
5250
5275
  }
5251
- retval = api_NewCompileError(message, source);
5276
+ retval = api_WrapObject(value);
5252
5277
  if (PyErr_Occurred()) {
5253
5278
  return NULL;
5254
5279
  }
5255
5280
  py_retval = Py_BuildValue((char *) "L", retval);
5256
5281
  return py_retval;
5257
5282
  }
5258
- PyObject * _wrap__api_api_NewCompileError(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
5283
+ PyObject * _wrap__api_api_WrapObject(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
5259
5284
 
5260
5285
 
5261
5286
  PyObject *
5262
- _wrap__api_api_NewConfigError(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
5287
+ _wrap__api_api_WrapFloat(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
5263
5288
  {
5264
5289
  PyObject *py_retval;
5265
5290
  int64_t retval;
5266
- char *message;
5267
- char *wrapped;
5268
- const char *keywords[] = {"message", "wrapped", NULL};
5291
+ double value;
5292
+ const char *keywords[] = {"value", NULL};
5269
5293
 
5270
- if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "ss", (char **) keywords, &message, &wrapped)) {
5294
+ if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "d", (char **) keywords, &value)) {
5271
5295
  return NULL;
5272
5296
  }
5273
- retval = api_NewConfigError(message, wrapped);
5297
+ retval = api_WrapFloat(value);
5274
5298
  if (PyErr_Occurred()) {
5275
5299
  return NULL;
5276
5300
  }
5277
5301
  py_retval = Py_BuildValue((char *) "L", retval);
5278
5302
  return py_retval;
5279
5303
  }
5280
- PyObject * _wrap__api_api_NewConfigError(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
5304
+ PyObject * _wrap__api_api_WrapFloat(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
5281
5305
 
5282
5306
 
5283
5307
  PyObject *
5284
- _wrap__api_api_NewTimeoutError(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
5308
+ _wrap__api_api_WrapBool(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
5285
5309
  {
5286
5310
  PyObject *py_retval;
5287
5311
  int64_t retval;
5288
- int64_t duration;
5289
- const char *keywords[] = {"duration", NULL};
5312
+ bool value;
5313
+ PyObject *py_value;
5314
+ const char *keywords[] = {"value", NULL};
5290
5315
 
5291
- if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &duration)) {
5316
+ if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "O", (char **) keywords, &py_value)) {
5292
5317
  return NULL;
5293
5318
  }
5294
- retval = api_NewTimeoutError(duration);
5319
+ value = (bool) PyObject_IsTrue(py_value);
5320
+ retval = api_WrapBool(value);
5295
5321
  if (PyErr_Occurred()) {
5296
5322
  return NULL;
5297
5323
  }
5298
5324
  py_retval = Py_BuildValue((char *) "L", retval);
5299
5325
  return py_retval;
5300
5326
  }
5301
- PyObject * _wrap__api_api_NewTimeoutError(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
5327
+ PyObject * _wrap__api_api_WrapBool(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
5302
5328
 
5303
5329
 
5304
5330
  PyObject *
5305
- _wrap__api_api_NewConversionError(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
5331
+ _wrap__api_api_WrapString(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
5306
5332
  {
5307
5333
  PyObject *py_retval;
5308
5334
  int64_t retval;
5309
- char *message;
5310
- char *wrapped;
5311
- const char *keywords[] = {"message", "wrapped", NULL};
5335
+ char *value;
5336
+ const char *keywords[] = {"value", NULL};
5312
5337
 
5313
- if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "ss", (char **) keywords, &message, &wrapped)) {
5338
+ if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "s", (char **) keywords, &value)) {
5314
5339
  return NULL;
5315
5340
  }
5316
- retval = api_NewConversionError(message, wrapped);
5341
+ retval = api_WrapString(value);
5317
5342
  if (PyErr_Occurred()) {
5318
5343
  return NULL;
5319
5344
  }
5320
5345
  py_retval = Py_BuildValue((char *) "L", retval);
5321
5346
  return py_retval;
5322
5347
  }
5323
- PyObject * _wrap__api_api_NewConversionError(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
5348
+ PyObject * _wrap__api_api_WrapString(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
5324
5349
 
5325
5350
 
5326
5351
  PyObject *
5327
- _wrap__api_api_NewRuntimeError(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
5352
+ _wrap__api_api_ToGoValue(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
5328
5353
  {
5329
5354
  PyObject *py_retval;
5330
5355
  int64_t retval;
5331
- char *message;
5332
- int64_t source;
5333
- const char *keywords[] = {"message", "source", NULL};
5356
+ int64_t val;
5357
+ const char *keywords[] = {"val", NULL};
5334
5358
 
5335
- if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "sL", (char **) keywords, &message, &source)) {
5359
+ if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &val)) {
5336
5360
  return NULL;
5337
5361
  }
5338
- retval = api_NewRuntimeError(message, source);
5362
+ retval = api_ToGoValue(val);
5339
5363
  if (PyErr_Occurred()) {
5340
5364
  return NULL;
5341
5365
  }
5342
5366
  py_retval = Py_BuildValue((char *) "L", retval);
5343
5367
  return py_retval;
5344
5368
  }
5345
- PyObject * _wrap__api_api_NewRuntimeError(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
5369
+ PyObject * _wrap__api_api_ToGoValue(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
5346
5370
 
5347
5371
 
5348
5372
  PyObject *
5349
- _wrap__api_api_NewClassDefinition(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs))
5373
+ _wrap__api_api_NewVM(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
5350
5374
  {
5351
5375
  PyObject *py_retval;
5352
5376
  int64_t retval;
5377
+ int64_t config;
5378
+ const char *keywords[] = {"config", NULL};
5353
5379
 
5354
- retval = api_NewClassDefinition();
5380
+ if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &config)) {
5381
+ return NULL;
5382
+ }
5383
+ retval = api_NewVM(config);
5355
5384
  if (PyErr_Occurred()) {
5356
5385
  return NULL;
5357
5386
  }
5358
5387
  py_retval = Py_BuildValue((char *) "L", retval);
5359
5388
  return py_retval;
5360
5389
  }
5361
- PyObject * _wrap__api_api_NewClassDefinition(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs));
5390
+ PyObject * _wrap__api_api_NewVM(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
5362
5391
 
5363
5392
 
5364
5393
  PyObject *
5365
- _wrap__api_api_WrapAny(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
5394
+ _wrap__api_api_DefaultConfig(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs))
5366
5395
  {
5367
5396
  PyObject *py_retval;
5368
5397
  int64_t retval;
5369
- char *value;
5370
- const char *keywords[] = {"value", NULL};
5371
5398
 
5372
- if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "s", (char **) keywords, &value)) {
5373
- return NULL;
5374
- }
5375
- retval = api_WrapAny(value);
5399
+ retval = api_DefaultConfig();
5376
5400
  if (PyErr_Occurred()) {
5377
5401
  return NULL;
5378
5402
  }
5379
5403
  py_retval = Py_BuildValue((char *) "L", retval);
5380
5404
  return py_retval;
5381
5405
  }
5382
- PyObject * _wrap__api_api_WrapAny(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
5406
+ PyObject * _wrap__api_api_DefaultConfig(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs));
5383
5407
 
5384
5408
 
5385
5409
  PyObject *
5386
- _wrap__api_api_ToGoValue(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
5410
+ _wrap__api_api_NewClassDefinition(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs))
5387
5411
  {
5388
5412
  PyObject *py_retval;
5389
5413
  int64_t retval;
5390
- int64_t val;
5391
- const char *keywords[] = {"val", NULL};
5392
5414
 
5393
- if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &val)) {
5394
- return NULL;
5395
- }
5396
- retval = api_ToGoValue(val);
5415
+ retval = api_NewClassDefinition();
5397
5416
  if (PyErr_Occurred()) {
5398
5417
  return NULL;
5399
5418
  }
5400
5419
  py_retval = Py_BuildValue((char *) "L", retval);
5401
5420
  return py_retval;
5402
5421
  }
5403
- PyObject * _wrap__api_api_ToGoValue(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
5422
+ PyObject * _wrap__api_api_NewClassDefinition(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs));
5404
5423
 
5405
5424
 
5406
5425
  PyObject *
5407
- _wrap__api_api_WrapBool(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
5426
+ _wrap__api_api_NewCompileError(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
5408
5427
  {
5409
5428
  PyObject *py_retval;
5410
5429
  int64_t retval;
5411
- bool value;
5412
- PyObject *py_value;
5413
- const char *keywords[] = {"value", NULL};
5430
+ char *message;
5431
+ int64_t source;
5432
+ const char *keywords[] = {"message", "source", NULL};
5414
5433
 
5415
- if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "O", (char **) keywords, &py_value)) {
5434
+ if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "sL", (char **) keywords, &message, &source)) {
5416
5435
  return NULL;
5417
5436
  }
5418
- value = (bool) PyObject_IsTrue(py_value);
5419
- retval = api_WrapBool(value);
5437
+ retval = api_NewCompileError(message, source);
5420
5438
  if (PyErr_Occurred()) {
5421
5439
  return NULL;
5422
5440
  }
5423
5441
  py_retval = Py_BuildValue((char *) "L", retval);
5424
5442
  return py_retval;
5425
5443
  }
5426
- PyObject * _wrap__api_api_WrapBool(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
5444
+ PyObject * _wrap__api_api_NewCompileError(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
5427
5445
 
5428
5446
 
5429
5447
  PyObject *
5430
- _wrap__api_api_WrapFloat(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
5448
+ _wrap__api_api_NewConfigError(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
5431
5449
  {
5432
5450
  PyObject *py_retval;
5433
5451
  int64_t retval;
5434
- double value;
5435
- const char *keywords[] = {"value", NULL};
5452
+ char *message;
5453
+ char *wrapped;
5454
+ const char *keywords[] = {"message", "wrapped", NULL};
5436
5455
 
5437
- if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "d", (char **) keywords, &value)) {
5456
+ if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "ss", (char **) keywords, &message, &wrapped)) {
5438
5457
  return NULL;
5439
5458
  }
5440
- retval = api_WrapFloat(value);
5459
+ retval = api_NewConfigError(message, wrapped);
5441
5460
  if (PyErr_Occurred()) {
5442
5461
  return NULL;
5443
5462
  }
5444
5463
  py_retval = Py_BuildValue((char *) "L", retval);
5445
5464
  return py_retval;
5446
5465
  }
5447
- PyObject * _wrap__api_api_WrapFloat(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
5466
+ PyObject * _wrap__api_api_NewConfigError(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
5448
5467
 
5449
5468
 
5450
5469
  PyObject *
5451
- _wrap__api_api_WrapString(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
5470
+ _wrap__api_api_NewConversionError(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
5452
5471
  {
5453
5472
  PyObject *py_retval;
5454
5473
  int64_t retval;
5455
- char *value;
5456
- const char *keywords[] = {"value", NULL};
5474
+ char *message;
5475
+ char *wrapped;
5476
+ const char *keywords[] = {"message", "wrapped", NULL};
5457
5477
 
5458
- if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "s", (char **) keywords, &value)) {
5478
+ if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "ss", (char **) keywords, &message, &wrapped)) {
5459
5479
  return NULL;
5460
5480
  }
5461
- retval = api_WrapString(value);
5481
+ retval = api_NewConversionError(message, wrapped);
5462
5482
  if (PyErr_Occurred()) {
5463
5483
  return NULL;
5464
5484
  }
5465
5485
  py_retval = Py_BuildValue((char *) "L", retval);
5466
5486
  return py_retval;
5467
5487
  }
5468
- PyObject * _wrap__api_api_WrapString(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
5488
+ PyObject * _wrap__api_api_NewConversionError(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
5469
5489
 
5470
5490
 
5471
5491
  PyObject *
5472
- _wrap__api_api_WrapInt(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
5492
+ _wrap__api_api_NewRuntimeError(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
5473
5493
  {
5474
5494
  PyObject *py_retval;
5475
5495
  int64_t retval;
5476
- int64_t value;
5477
- const char *keywords[] = {"value", NULL};
5496
+ char *message;
5497
+ int64_t source;
5498
+ const char *keywords[] = {"message", "source", NULL};
5478
5499
 
5479
- if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &value)) {
5500
+ if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "sL", (char **) keywords, &message, &source)) {
5480
5501
  return NULL;
5481
5502
  }
5482
- retval = api_WrapInt(value);
5503
+ retval = api_NewRuntimeError(message, source);
5483
5504
  if (PyErr_Occurred()) {
5484
5505
  return NULL;
5485
5506
  }
5486
5507
  py_retval = Py_BuildValue((char *) "L", retval);
5487
5508
  return py_retval;
5488
5509
  }
5489
- PyObject * _wrap__api_api_WrapInt(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
5510
+ PyObject * _wrap__api_api_NewRuntimeError(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
5490
5511
 
5491
5512
 
5492
5513
  PyObject *
5493
- _wrap__api_api_WrapObject(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
5514
+ _wrap__api_api_NewTimeoutError(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
5494
5515
  {
5495
5516
  PyObject *py_retval;
5496
5517
  int64_t retval;
5497
- int64_t value;
5498
- const char *keywords[] = {"value", NULL};
5518
+ int64_t duration;
5519
+ const char *keywords[] = {"duration", NULL};
5499
5520
 
5500
- if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &value)) {
5521
+ if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &duration)) {
5501
5522
  return NULL;
5502
5523
  }
5503
- retval = api_WrapObject(value);
5524
+ retval = api_NewTimeoutError(duration);
5504
5525
  if (PyErr_Occurred()) {
5505
5526
  return NULL;
5506
5527
  }
5507
5528
  py_retval = Py_BuildValue((char *) "L", retval);
5508
5529
  return py_retval;
5509
5530
  }
5510
- PyObject * _wrap__api_api_WrapObject(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
5531
+ PyObject * _wrap__api_api_NewTimeoutError(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
5511
5532
 
5512
5533
 
5513
5534
  PyObject *
5514
- _wrap__api_api_NewVM(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
5535
+ _wrap__api_api_FromGoValue(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
5515
5536
  {
5516
5537
  PyObject *py_retval;
5517
5538
  int64_t retval;
5518
- int64_t config;
5519
- const char *keywords[] = {"config", NULL};
5539
+ int64_t val;
5540
+ const char *keywords[] = {"val", NULL};
5520
5541
 
5521
- if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &config)) {
5542
+ if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &val)) {
5522
5543
  return NULL;
5523
5544
  }
5524
- retval = api_NewVM(config);
5545
+ retval = api_FromGoValue(val);
5525
5546
  if (PyErr_Occurred()) {
5526
5547
  return NULL;
5527
5548
  }
5528
5549
  py_retval = Py_BuildValue((char *) "L", retval);
5529
5550
  return py_retval;
5530
5551
  }
5531
- PyObject * _wrap__api_api_NewVM(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
5552
+ PyObject * _wrap__api_api_FromGoValue(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
5532
5553
 
5533
5554
 
5534
5555
  PyObject *
@@ -5572,27 +5593,6 @@ _wrap__api_api_ConvertArguments(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *ar
5572
5593
  }
5573
5594
  PyObject * _wrap__api_api_ConvertArguments(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
5574
5595
 
5575
-
5576
- PyObject *
5577
- _wrap__api_api_FromGoValue(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
5578
- {
5579
- PyObject *py_retval;
5580
- int64_t retval;
5581
- int64_t val;
5582
- const char *keywords[] = {"val", NULL};
5583
-
5584
- if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &val)) {
5585
- return NULL;
5586
- }
5587
- retval = api_FromGoValue(val);
5588
- if (PyErr_Occurred()) {
5589
- return NULL;
5590
- }
5591
- py_retval = Py_BuildValue((char *) "L", retval);
5592
- return py_retval;
5593
- }
5594
- PyObject * _wrap__api_api_FromGoValue(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
5595
-
5596
5596
  static PyMethodDef _api_functions[] = {
5597
5597
  {(char *) "GoPyInit", (PyCFunction) _wrap__api_GoPyInit, METH_NOARGS, "GoPyInit()\n\n" },
5598
5598
  {(char *) "DecRef", (PyCFunction) _wrap__api_DecRef, METH_KEYWORDS|METH_VARARGS, "DecRef(handle)\n\ntype: handle: int64_t" },
@@ -5769,6 +5769,29 @@ static PyMethodDef _api_functions[] = {
5769
5769
  {(char *) "Map_string_api_GoValue_set", (PyCFunction) _wrap__api_Map_string_api_GoValue_set, METH_KEYWORDS|METH_VARARGS, "Map_string_api_GoValue_set(handle, key, value)\n\ntype: handle: int64_t\ntype: key: char *\ntype: value: int64_t" },
5770
5770
  {(char *) "Map_string_api_GoValue_delete", (PyCFunction) _wrap__api_Map_string_api_GoValue_delete, METH_KEYWORDS|METH_VARARGS, "Map_string_api_GoValue_delete(handle, _ky)\n\ntype: handle: int64_t\ntype: _ky: char *" },
5771
5771
  {(char *) "Map_string_api_GoValue_keys", (PyCFunction) _wrap__api_Map_string_api_GoValue_keys, METH_KEYWORDS|METH_VARARGS, "Map_string_api_GoValue_keys(handle)\n\ntype: handle: int64_t" },
5772
+ {(char *) "api_GoValue_CTor", (PyCFunction) _wrap__api_api_GoValue_CTor, METH_NOARGS, "api_GoValue_CTor()\n\n" },
5773
+ {(char *) "api_GoValue_ID", (PyCFunction) _wrap__api_api_GoValue_ID, METH_KEYWORDS|METH_VARARGS, "api_GoValue_ID(_handle)\n\ntype: _handle: int64_t" },
5774
+ {(char *) "api_GoValue_MarshalJSON", (PyCFunction) _wrap__api_api_GoValue_MarshalJSON, METH_KEYWORDS|METH_VARARGS, "api_GoValue_MarshalJSON(_handle)\n\ntype: _handle: int64_t" },
5775
+ {(char *) "api_GoValue_Type", (PyCFunction) _wrap__api_api_GoValue_Type, METH_KEYWORDS|METH_VARARGS, "api_GoValue_Type(_handle)\n\ntype: _handle: int64_t" },
5776
+ {(char *) "api_GoValue_Int", (PyCFunction) _wrap__api_api_GoValue_Int, METH_KEYWORDS|METH_VARARGS, "api_GoValue_Int(_handle)\n\ntype: _handle: int64_t" },
5777
+ {(char *) "api_GoValue_Float", (PyCFunction) _wrap__api_api_GoValue_Float, METH_KEYWORDS|METH_VARARGS, "api_GoValue_Float(_handle)\n\ntype: _handle: int64_t" },
5778
+ {(char *) "api_GoValue_String", (PyCFunction) _wrap__api_api_GoValue_String, METH_KEYWORDS|METH_VARARGS, "api_GoValue_String(_handle)\n\ntype: _handle: int64_t" },
5779
+ {(char *) "api_GoValue_Bool", (PyCFunction) _wrap__api_api_GoValue_Bool, METH_KEYWORDS|METH_VARARGS, "api_GoValue_Bool(_handle)\n\ntype: _handle: int64_t" },
5780
+ {(char *) "api_GoValue_Slice", (PyCFunction) _wrap__api_api_GoValue_Slice, METH_KEYWORDS|METH_VARARGS, "api_GoValue_Slice(_handle)\n\ntype: _handle: int64_t" },
5781
+ {(char *) "api_GoValue_Map", (PyCFunction) _wrap__api_api_GoValue_Map, METH_KEYWORDS|METH_VARARGS, "api_GoValue_Map(_handle)\n\ntype: _handle: int64_t" },
5782
+ {(char *) "api_GoValue_Object", (PyCFunction) _wrap__api_api_GoValue_Object, METH_KEYWORDS|METH_VARARGS, "api_GoValue_Object(_handle)\n\ntype: _handle: int64_t" },
5783
+ {(char *) "api_UnknownFunctionHandler_CTor", (PyCFunction) _wrap__api_api_UnknownFunctionHandler_CTor, METH_NOARGS, "api_UnknownFunctionHandler_CTor()\n\n" },
5784
+ {(char *) "api_VM_CTor", (PyCFunction) _wrap__api_api_VM_CTor, METH_NOARGS, "api_VM_CTor()\n\n" },
5785
+ {(char *) "api_VM_GetCompatibilityShim", (PyCFunction) _wrap__api_api_VM_GetCompatibilityShim, METH_KEYWORDS|METH_VARARGS, "api_VM_GetCompatibilityShim(_handle)\n\ntype: _handle: int64_t" },
5786
+ {(char *) "api_VM_Execute", (PyCFunction) _wrap__api_api_VM_Execute, METH_KEYWORDS|METH_VARARGS, "api_VM_Execute(_handle, code)\n\ntype: _handle: int64_t\ntype: code: char *" },
5787
+ {(char *) "api_VM_ExecuteWithContext", (PyCFunction) _wrap__api_api_VM_ExecuteWithContext, METH_KEYWORDS|METH_VARARGS, "api_VM_ExecuteWithContext(_handle, ctx, code)\n\ntype: _handle: int64_t\ntype: ctx: int64_t\ntype: code: char *" },
5788
+ {(char *) "api_VM_NewObjectInstance", (PyCFunction) _wrap__api_api_VM_NewObjectInstance, METH_KEYWORDS|METH_VARARGS, "api_VM_NewObjectInstance(_handle, className)\n\ntype: _handle: int64_t\ntype: className: char *" },
5789
+ {(char *) "api_VM_Call", (PyCFunction) _wrap__api_api_VM_Call, METH_KEYWORDS|METH_VARARGS, "api_VM_Call(_handle, functionName, args)\n\ntype: _handle: int64_t\ntype: functionName: char *\ntype: args: int64_t" },
5790
+ {(char *) "api_VM_CallMethod", (PyCFunction) _wrap__api_api_VM_CallMethod, METH_KEYWORDS|METH_VARARGS, "api_VM_CallMethod(_handle, object, methodName, args)\n\ntype: _handle: int64_t\ntype: object: int64_t\ntype: methodName: char *\ntype: args: int64_t" },
5791
+ {(char *) "api_VM_DefineVariable", (PyCFunction) _wrap__api_api_VM_DefineVariable, METH_KEYWORDS|METH_VARARGS, "api_VM_DefineVariable(_handle, name, value, constant)\n\ntype: _handle: int64_t\ntype: name: char *\ntype: value: int64_t\ntype: constant: bool" },
5792
+ {(char *) "api_VM_SetVariable", (PyCFunction) _wrap__api_api_VM_SetVariable, METH_KEYWORDS|METH_VARARGS, "api_VM_SetVariable(_handle, variableName, value)\n\ntype: _handle: int64_t\ntype: variableName: char *\ntype: value: int64_t" },
5793
+ {(char *) "api_VM_GetVariable", (PyCFunction) _wrap__api_api_VM_GetVariable, METH_KEYWORDS|METH_VARARGS, "api_VM_GetVariable(_handle, variableName)\n\ntype: _handle: int64_t\ntype: variableName: char *" },
5794
+ {(char *) "api_VM_DefineClass", (PyCFunction) _wrap__api_api_VM_DefineClass, METH_KEYWORDS|METH_VARARGS, "api_VM_DefineClass(_handle, classDef)\n\ntype: _handle: int64_t\ntype: classDef: int64_t" },
5772
5795
  {(char *) "api_VMConfig_CTor", (PyCFunction) _wrap__api_api_VMConfig_CTor, METH_NOARGS, "api_VMConfig_CTor()\n\n" },
5773
5796
  {(char *) "api_VMConfig_Stdout_Get", (PyCFunction) _wrap__api_api_VMConfig_Stdout_Get, METH_KEYWORDS|METH_VARARGS, "api_VMConfig_Stdout_Get(handle)\n\ntype: handle: int64_t" },
5774
5797
  {(char *) "api_VMConfig_Stdout_Set", (PyCFunction) _wrap__api_api_VMConfig_Stdout_Set, METH_KEYWORDS|METH_VARARGS, "api_VMConfig_Stdout_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: int64_t" },
@@ -5779,6 +5802,33 @@ static PyMethodDef _api_functions[] = {
5779
5802
  {(char *) "api_VMConfig_WorkingDirectory_Get", (PyCFunction) _wrap__api_api_VMConfig_WorkingDirectory_Get, METH_KEYWORDS|METH_VARARGS, "api_VMConfig_WorkingDirectory_Get(handle)\n\ntype: handle: int64_t" },
5780
5803
  {(char *) "api_VMConfig_WorkingDirectory_Set", (PyCFunction) _wrap__api_api_VMConfig_WorkingDirectory_Set, METH_KEYWORDS|METH_VARARGS, "api_VMConfig_WorkingDirectory_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: char *" },
5781
5804
  {(char *) "api_VMConfig_Validate", (PyCFunction) _wrap__api_api_VMConfig_Validate, METH_KEYWORDS|METH_VARARGS, "api_VMConfig_Validate(_handle)\n\ntype: _handle: int64_t" },
5805
+ {(char *) "api_ClassDefinition_CTor", (PyCFunction) _wrap__api_api_ClassDefinition_CTor, METH_NOARGS, "api_ClassDefinition_CTor()\n\n" },
5806
+ {(char *) "api_ClassDefinition_Name_Get", (PyCFunction) _wrap__api_api_ClassDefinition_Name_Get, METH_KEYWORDS|METH_VARARGS, "api_ClassDefinition_Name_Get(handle)\n\ntype: handle: int64_t" },
5807
+ {(char *) "api_ClassDefinition_Name_Set", (PyCFunction) _wrap__api_api_ClassDefinition_Name_Set, METH_KEYWORDS|METH_VARARGS, "api_ClassDefinition_Name_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: char *" },
5808
+ {(char *) "api_ClassDefinition_PublicVariables_Get", (PyCFunction) _wrap__api_api_ClassDefinition_PublicVariables_Get, METH_KEYWORDS|METH_VARARGS, "api_ClassDefinition_PublicVariables_Get(handle)\n\ntype: handle: int64_t" },
5809
+ {(char *) "api_ClassDefinition_PublicVariables_Set", (PyCFunction) _wrap__api_api_ClassDefinition_PublicVariables_Set, METH_KEYWORDS|METH_VARARGS, "api_ClassDefinition_PublicVariables_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: int64_t" },
5810
+ {(char *) "api_ClassDefinition_PrivateVariables_Get", (PyCFunction) _wrap__api_api_ClassDefinition_PrivateVariables_Get, METH_KEYWORDS|METH_VARARGS, "api_ClassDefinition_PrivateVariables_Get(handle)\n\ntype: handle: int64_t" },
5811
+ {(char *) "api_ClassDefinition_PrivateVariables_Set", (PyCFunction) _wrap__api_api_ClassDefinition_PrivateVariables_Set, METH_KEYWORDS|METH_VARARGS, "api_ClassDefinition_PrivateVariables_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: int64_t" },
5812
+ {(char *) "api_ClassDefinition_SharedVariables_Get", (PyCFunction) _wrap__api_api_ClassDefinition_SharedVariables_Get, METH_KEYWORDS|METH_VARARGS, "api_ClassDefinition_SharedVariables_Get(handle)\n\ntype: handle: int64_t" },
5813
+ {(char *) "api_ClassDefinition_SharedVariables_Set", (PyCFunction) _wrap__api_api_ClassDefinition_SharedVariables_Set, METH_KEYWORDS|METH_VARARGS, "api_ClassDefinition_SharedVariables_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: int64_t" },
5814
+ {(char *) "api_ClassDefinition_PublicMethods_Get", (PyCFunction) _wrap__api_api_ClassDefinition_PublicMethods_Get, METH_KEYWORDS|METH_VARARGS, "api_ClassDefinition_PublicMethods_Get(handle)\n\ntype: handle: int64_t" },
5815
+ {(char *) "api_ClassDefinition_PublicMethods_Set", (PyCFunction) _wrap__api_api_ClassDefinition_PublicMethods_Set, METH_KEYWORDS|METH_VARARGS, "api_ClassDefinition_PublicMethods_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: int64_t" },
5816
+ {(char *) "api_ClassDefinition_PrivateMethods_Get", (PyCFunction) _wrap__api_api_ClassDefinition_PrivateMethods_Get, METH_KEYWORDS|METH_VARARGS, "api_ClassDefinition_PrivateMethods_Get(handle)\n\ntype: handle: int64_t" },
5817
+ {(char *) "api_ClassDefinition_PrivateMethods_Set", (PyCFunction) _wrap__api_api_ClassDefinition_PrivateMethods_Set, METH_KEYWORDS|METH_VARARGS, "api_ClassDefinition_PrivateMethods_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: int64_t" },
5818
+ {(char *) "api_ClassDefinition_UnknownFunctionHandler_Get", (PyCFunction) _wrap__api_api_ClassDefinition_UnknownFunctionHandler_Get, METH_KEYWORDS|METH_VARARGS, "api_ClassDefinition_UnknownFunctionHandler_Get(handle)\n\ntype: handle: int64_t" },
5819
+ {(char *) "api_ClassDefinition_UnknownFunctionHandler_Set", (PyCFunction) _wrap__api_api_ClassDefinition_UnknownFunctionHandler_Set, METH_KEYWORDS|METH_VARARGS, "api_ClassDefinition_UnknownFunctionHandler_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: int64_t" },
5820
+ {(char *) "api_ClassMethod_CTor", (PyCFunction) _wrap__api_api_ClassMethod_CTor, METH_NOARGS, "api_ClassMethod_CTor()\n\n" },
5821
+ {(char *) "api_ClassMethod_Name_Get", (PyCFunction) _wrap__api_api_ClassMethod_Name_Get, METH_KEYWORDS|METH_VARARGS, "api_ClassMethod_Name_Get(handle)\n\ntype: handle: int64_t" },
5822
+ {(char *) "api_ClassMethod_Name_Set", (PyCFunction) _wrap__api_api_ClassMethod_Name_Set, METH_KEYWORDS|METH_VARARGS, "api_ClassMethod_Name_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: char *" },
5823
+ {(char *) "api_ClassMethod_Argc_Get", (PyCFunction) _wrap__api_api_ClassMethod_Argc_Get, METH_KEYWORDS|METH_VARARGS, "api_ClassMethod_Argc_Get(handle)\n\ntype: handle: int64_t" },
5824
+ {(char *) "api_ClassMethod_Argc_Set", (PyCFunction) _wrap__api_api_ClassMethod_Argc_Set, METH_KEYWORDS|METH_VARARGS, "api_ClassMethod_Argc_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: int64_t" },
5825
+ {(char *) "api_ClassVariable_CTor", (PyCFunction) _wrap__api_api_ClassVariable_CTor, METH_NOARGS, "api_ClassVariable_CTor()\n\n" },
5826
+ {(char *) "api_ClassVariable_Name_Get", (PyCFunction) _wrap__api_api_ClassVariable_Name_Get, METH_KEYWORDS|METH_VARARGS, "api_ClassVariable_Name_Get(handle)\n\ntype: handle: int64_t" },
5827
+ {(char *) "api_ClassVariable_Name_Set", (PyCFunction) _wrap__api_api_ClassVariable_Name_Set, METH_KEYWORDS|METH_VARARGS, "api_ClassVariable_Name_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: char *" },
5828
+ {(char *) "api_ClassVariable_Value_Get", (PyCFunction) _wrap__api_api_ClassVariable_Value_Get, METH_KEYWORDS|METH_VARARGS, "api_ClassVariable_Value_Get(handle)\n\ntype: handle: int64_t" },
5829
+ {(char *) "api_ClassVariable_Value_Set", (PyCFunction) _wrap__api_api_ClassVariable_Value_Set, METH_KEYWORDS|METH_VARARGS, "api_ClassVariable_Value_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: int64_t" },
5830
+ {(char *) "api_ClassVariable_Locked_Get", (PyCFunction) _wrap__api_api_ClassVariable_Locked_Get, METH_KEYWORDS|METH_VARARGS, "api_ClassVariable_Locked_Get(handle)\n\ntype: handle: int64_t" },
5831
+ {(char *) "api_ClassVariable_Locked_Set", (PyCFunction) _wrap__api_api_ClassVariable_Locked_Set, METH_KEYWORDS|METH_VARARGS, "api_ClassVariable_Locked_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: bool" },
5782
5832
  {(char *) "api_VMError_CTor", (PyCFunction) _wrap__api_api_VMError_CTor, METH_NOARGS, "api_VMError_CTor()\n\n" },
5783
5833
  {(char *) "api_VMError_Type_Get", (PyCFunction) _wrap__api_api_VMError_Type_Get, METH_KEYWORDS|METH_VARARGS, "api_VMError_Type_Get(handle)\n\ntype: handle: int64_t" },
5784
5834
  {(char *) "api_VMError_Type_Set", (PyCFunction) _wrap__api_api_VMError_Type_Set, METH_KEYWORDS|METH_VARARGS, "api_VMError_Type_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: char *" },
@@ -5795,21 +5845,6 @@ static PyMethodDef _api_functions[] = {
5795
5845
  {(char *) "api_VMError_IsTimeoutError", (PyCFunction) _wrap__api_api_VMError_IsTimeoutError, METH_KEYWORDS|METH_VARARGS, "api_VMError_IsTimeoutError(_handle)\n\ntype: _handle: int64_t" },
5796
5846
  {(char *) "api_VMError_IsConversionError", (PyCFunction) _wrap__api_api_VMError_IsConversionError, METH_KEYWORDS|METH_VARARGS, "api_VMError_IsConversionError(_handle)\n\ntype: _handle: int64_t" },
5797
5847
  {(char *) "api_VMError_IsConfigError", (PyCFunction) _wrap__api_api_VMError_IsConfigError, METH_KEYWORDS|METH_VARARGS, "api_VMError_IsConfigError(_handle)\n\ntype: _handle: int64_t" },
5798
- {(char *) "api_ClassDefinition_CTor", (PyCFunction) _wrap__api_api_ClassDefinition_CTor, METH_NOARGS, "api_ClassDefinition_CTor()\n\n" },
5799
- {(char *) "api_ClassDefinition_Name_Get", (PyCFunction) _wrap__api_api_ClassDefinition_Name_Get, METH_KEYWORDS|METH_VARARGS, "api_ClassDefinition_Name_Get(handle)\n\ntype: handle: int64_t" },
5800
- {(char *) "api_ClassDefinition_Name_Set", (PyCFunction) _wrap__api_api_ClassDefinition_Name_Set, METH_KEYWORDS|METH_VARARGS, "api_ClassDefinition_Name_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: char *" },
5801
- {(char *) "api_ClassDefinition_PublicVariables_Get", (PyCFunction) _wrap__api_api_ClassDefinition_PublicVariables_Get, METH_KEYWORDS|METH_VARARGS, "api_ClassDefinition_PublicVariables_Get(handle)\n\ntype: handle: int64_t" },
5802
- {(char *) "api_ClassDefinition_PublicVariables_Set", (PyCFunction) _wrap__api_api_ClassDefinition_PublicVariables_Set, METH_KEYWORDS|METH_VARARGS, "api_ClassDefinition_PublicVariables_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: int64_t" },
5803
- {(char *) "api_ClassDefinition_PrivateVariables_Get", (PyCFunction) _wrap__api_api_ClassDefinition_PrivateVariables_Get, METH_KEYWORDS|METH_VARARGS, "api_ClassDefinition_PrivateVariables_Get(handle)\n\ntype: handle: int64_t" },
5804
- {(char *) "api_ClassDefinition_PrivateVariables_Set", (PyCFunction) _wrap__api_api_ClassDefinition_PrivateVariables_Set, METH_KEYWORDS|METH_VARARGS, "api_ClassDefinition_PrivateVariables_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: int64_t" },
5805
- {(char *) "api_ClassDefinition_SharedVariables_Get", (PyCFunction) _wrap__api_api_ClassDefinition_SharedVariables_Get, METH_KEYWORDS|METH_VARARGS, "api_ClassDefinition_SharedVariables_Get(handle)\n\ntype: handle: int64_t" },
5806
- {(char *) "api_ClassDefinition_SharedVariables_Set", (PyCFunction) _wrap__api_api_ClassDefinition_SharedVariables_Set, METH_KEYWORDS|METH_VARARGS, "api_ClassDefinition_SharedVariables_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: int64_t" },
5807
- {(char *) "api_ClassDefinition_PublicMethods_Get", (PyCFunction) _wrap__api_api_ClassDefinition_PublicMethods_Get, METH_KEYWORDS|METH_VARARGS, "api_ClassDefinition_PublicMethods_Get(handle)\n\ntype: handle: int64_t" },
5808
- {(char *) "api_ClassDefinition_PublicMethods_Set", (PyCFunction) _wrap__api_api_ClassDefinition_PublicMethods_Set, METH_KEYWORDS|METH_VARARGS, "api_ClassDefinition_PublicMethods_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: int64_t" },
5809
- {(char *) "api_ClassDefinition_PrivateMethods_Get", (PyCFunction) _wrap__api_api_ClassDefinition_PrivateMethods_Get, METH_KEYWORDS|METH_VARARGS, "api_ClassDefinition_PrivateMethods_Get(handle)\n\ntype: handle: int64_t" },
5810
- {(char *) "api_ClassDefinition_PrivateMethods_Set", (PyCFunction) _wrap__api_api_ClassDefinition_PrivateMethods_Set, METH_KEYWORDS|METH_VARARGS, "api_ClassDefinition_PrivateMethods_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: int64_t" },
5811
- {(char *) "api_ClassDefinition_UnknownFunctionHandler_Get", (PyCFunction) _wrap__api_api_ClassDefinition_UnknownFunctionHandler_Get, METH_KEYWORDS|METH_VARARGS, "api_ClassDefinition_UnknownFunctionHandler_Get(handle)\n\ntype: handle: int64_t" },
5812
- {(char *) "api_ClassDefinition_UnknownFunctionHandler_Set", (PyCFunction) _wrap__api_api_ClassDefinition_UnknownFunctionHandler_Set, METH_KEYWORDS|METH_VARARGS, "api_ClassDefinition_UnknownFunctionHandler_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: int64_t" },
5813
5848
  {(char *) "api_ExecutionResult_CTor", (PyCFunction) _wrap__api_api_ExecutionResult_CTor, METH_NOARGS, "api_ExecutionResult_CTor()\n\n" },
5814
5849
  {(char *) "api_ExecutionResult_Value_Get", (PyCFunction) _wrap__api_api_ExecutionResult_Value_Get, METH_KEYWORDS|METH_VARARGS, "api_ExecutionResult_Value_Get(handle)\n\ntype: handle: int64_t" },
5815
5850
  {(char *) "api_ExecutionResult_Value_Set", (PyCFunction) _wrap__api_api_ExecutionResult_Value_Set, METH_KEYWORDS|METH_VARARGS, "api_ExecutionResult_Value_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: int64_t" },
@@ -5817,29 +5852,13 @@ static PyMethodDef _api_functions[] = {
5817
5852
  {(char *) "api_ExecutionResult_RawValue_Set", (PyCFunction) _wrap__api_api_ExecutionResult_RawValue_Set, METH_KEYWORDS|METH_VARARGS, "api_ExecutionResult_RawValue_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: int64_t" },
5818
5853
  {(char *) "api_ExecutionResult_Output_Get", (PyCFunction) _wrap__api_api_ExecutionResult_Output_Get, METH_KEYWORDS|METH_VARARGS, "api_ExecutionResult_Output_Get(handle)\n\ntype: handle: int64_t" },
5819
5854
  {(char *) "api_ExecutionResult_Output_Set", (PyCFunction) _wrap__api_api_ExecutionResult_Output_Set, METH_KEYWORDS|METH_VARARGS, "api_ExecutionResult_Output_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: char *" },
5820
- {(char *) "api_GoValue_CTor", (PyCFunction) _wrap__api_api_GoValue_CTor, METH_NOARGS, "api_GoValue_CTor()\n\n" },
5821
- {(char *) "api_GoValue_ID", (PyCFunction) _wrap__api_api_GoValue_ID, METH_KEYWORDS|METH_VARARGS, "api_GoValue_ID(_handle)\n\ntype: _handle: int64_t" },
5822
- {(char *) "api_GoValue_MarshalJSON", (PyCFunction) _wrap__api_api_GoValue_MarshalJSON, METH_KEYWORDS|METH_VARARGS, "api_GoValue_MarshalJSON(_handle)\n\ntype: _handle: int64_t" },
5823
- {(char *) "api_GoValue_Type", (PyCFunction) _wrap__api_api_GoValue_Type, METH_KEYWORDS|METH_VARARGS, "api_GoValue_Type(_handle)\n\ntype: _handle: int64_t" },
5824
- {(char *) "api_GoValue_Int", (PyCFunction) _wrap__api_api_GoValue_Int, METH_KEYWORDS|METH_VARARGS, "api_GoValue_Int(_handle)\n\ntype: _handle: int64_t" },
5825
- {(char *) "api_GoValue_Float", (PyCFunction) _wrap__api_api_GoValue_Float, METH_KEYWORDS|METH_VARARGS, "api_GoValue_Float(_handle)\n\ntype: _handle: int64_t" },
5826
- {(char *) "api_GoValue_String", (PyCFunction) _wrap__api_api_GoValue_String, METH_KEYWORDS|METH_VARARGS, "api_GoValue_String(_handle)\n\ntype: _handle: int64_t" },
5827
- {(char *) "api_GoValue_Bool", (PyCFunction) _wrap__api_api_GoValue_Bool, METH_KEYWORDS|METH_VARARGS, "api_GoValue_Bool(_handle)\n\ntype: _handle: int64_t" },
5828
- {(char *) "api_GoValue_Slice", (PyCFunction) _wrap__api_api_GoValue_Slice, METH_KEYWORDS|METH_VARARGS, "api_GoValue_Slice(_handle)\n\ntype: _handle: int64_t" },
5829
- {(char *) "api_GoValue_Map", (PyCFunction) _wrap__api_api_GoValue_Map, METH_KEYWORDS|METH_VARARGS, "api_GoValue_Map(_handle)\n\ntype: _handle: int64_t" },
5830
- {(char *) "api_GoValue_Object", (PyCFunction) _wrap__api_api_GoValue_Object, METH_KEYWORDS|METH_VARARGS, "api_GoValue_Object(_handle)\n\ntype: _handle: int64_t" },
5831
- {(char *) "api_UnknownFunctionHandler_CTor", (PyCFunction) _wrap__api_api_UnknownFunctionHandler_CTor, METH_NOARGS, "api_UnknownFunctionHandler_CTor()\n\n" },
5832
- {(char *) "api_VM_CTor", (PyCFunction) _wrap__api_api_VM_CTor, METH_NOARGS, "api_VM_CTor()\n\n" },
5833
- {(char *) "api_VM_GetCompatibilityShim", (PyCFunction) _wrap__api_api_VM_GetCompatibilityShim, METH_KEYWORDS|METH_VARARGS, "api_VM_GetCompatibilityShim(_handle)\n\ntype: _handle: int64_t" },
5834
- {(char *) "api_VM_Execute", (PyCFunction) _wrap__api_api_VM_Execute, METH_KEYWORDS|METH_VARARGS, "api_VM_Execute(_handle, code)\n\ntype: _handle: int64_t\ntype: code: char *" },
5835
- {(char *) "api_VM_ExecuteWithContext", (PyCFunction) _wrap__api_api_VM_ExecuteWithContext, METH_KEYWORDS|METH_VARARGS, "api_VM_ExecuteWithContext(_handle, ctx, code)\n\ntype: _handle: int64_t\ntype: ctx: int64_t\ntype: code: char *" },
5836
- {(char *) "api_VM_NewObjectInstance", (PyCFunction) _wrap__api_api_VM_NewObjectInstance, METH_KEYWORDS|METH_VARARGS, "api_VM_NewObjectInstance(_handle, className)\n\ntype: _handle: int64_t\ntype: className: char *" },
5837
- {(char *) "api_VM_Call", (PyCFunction) _wrap__api_api_VM_Call, METH_KEYWORDS|METH_VARARGS, "api_VM_Call(_handle, functionName, args)\n\ntype: _handle: int64_t\ntype: functionName: char *\ntype: args: int64_t" },
5838
- {(char *) "api_VM_CallMethod", (PyCFunction) _wrap__api_api_VM_CallMethod, METH_KEYWORDS|METH_VARARGS, "api_VM_CallMethod(_handle, object, methodName, args)\n\ntype: _handle: int64_t\ntype: object: int64_t\ntype: methodName: char *\ntype: args: int64_t" },
5839
- {(char *) "api_VM_DefineVariable", (PyCFunction) _wrap__api_api_VM_DefineVariable, METH_KEYWORDS|METH_VARARGS, "api_VM_DefineVariable(_handle, name, value, constant)\n\ntype: _handle: int64_t\ntype: name: char *\ntype: value: int64_t\ntype: constant: bool" },
5840
- {(char *) "api_VM_SetVariable", (PyCFunction) _wrap__api_api_VM_SetVariable, METH_KEYWORDS|METH_VARARGS, "api_VM_SetVariable(_handle, variableName, value)\n\ntype: _handle: int64_t\ntype: variableName: char *\ntype: value: int64_t" },
5841
- {(char *) "api_VM_GetVariable", (PyCFunction) _wrap__api_api_VM_GetVariable, METH_KEYWORDS|METH_VARARGS, "api_VM_GetVariable(_handle, variableName)\n\ntype: _handle: int64_t\ntype: variableName: char *" },
5842
- {(char *) "api_VM_DefineClass", (PyCFunction) _wrap__api_api_VM_DefineClass, METH_KEYWORDS|METH_VARARGS, "api_VM_DefineClass(_handle, classDef)\n\ntype: _handle: int64_t\ntype: classDef: int64_t" },
5855
+ {(char *) "api_SourceLocation_CTor", (PyCFunction) _wrap__api_api_SourceLocation_CTor, METH_NOARGS, "api_SourceLocation_CTor()\n\n" },
5856
+ {(char *) "api_SourceLocation_Filename_Get", (PyCFunction) _wrap__api_api_SourceLocation_Filename_Get, METH_KEYWORDS|METH_VARARGS, "api_SourceLocation_Filename_Get(handle)\n\ntype: handle: int64_t" },
5857
+ {(char *) "api_SourceLocation_Filename_Set", (PyCFunction) _wrap__api_api_SourceLocation_Filename_Set, METH_KEYWORDS|METH_VARARGS, "api_SourceLocation_Filename_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: char *" },
5858
+ {(char *) "api_SourceLocation_Line_Get", (PyCFunction) _wrap__api_api_SourceLocation_Line_Get, METH_KEYWORDS|METH_VARARGS, "api_SourceLocation_Line_Get(handle)\n\ntype: handle: int64_t" },
5859
+ {(char *) "api_SourceLocation_Line_Set", (PyCFunction) _wrap__api_api_SourceLocation_Line_Set, METH_KEYWORDS|METH_VARARGS, "api_SourceLocation_Line_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: int64_t" },
5860
+ {(char *) "api_SourceLocation_Column_Get", (PyCFunction) _wrap__api_api_SourceLocation_Column_Get, METH_KEYWORDS|METH_VARARGS, "api_SourceLocation_Column_Get(handle)\n\ntype: handle: int64_t" },
5861
+ {(char *) "api_SourceLocation_Column_Set", (PyCFunction) _wrap__api_api_SourceLocation_Column_Set, METH_KEYWORDS|METH_VARARGS, "api_SourceLocation_Column_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: int64_t" },
5843
5862
  {(char *) "api_VMCompatibilityShim_CTor", (PyCFunction) _wrap__api_api_VMCompatibilityShim_CTor, METH_NOARGS, "api_VMCompatibilityShim_CTor()\n\n" },
5844
5863
  {(char *) "api_VMCompatibilityShim_DefineFunction", (PyCFunction) _wrap__api_api_VMCompatibilityShim_DefineFunction, METH_KEYWORDS|METH_VARARGS, "api_VMCompatibilityShim_DefineFunction(_handle, id, name, argc, function)\n\ntype: _handle: int64_t\ntype: id: char *\ntype: name: char *\ntype: argc: int64_t\ntype: function: PyObject *" },
5845
5864
  {(char *) "api_VMCompatibilityShim_BuildNewClassVariableWithGetter", (PyCFunction) _wrap__api_api_VMCompatibilityShim_BuildNewClassVariableWithGetter, METH_KEYWORDS|METH_VARARGS, "api_VMCompatibilityShim_BuildNewClassVariableWithGetter(_handle, variable, getterID, getter)\n\ntype: _handle: int64_t\ntype: variable: int64_t\ntype: getterID: char *\ntype: getter: PyObject *" },
@@ -5852,43 +5871,24 @@ static PyMethodDef _api_functions[] = {
5852
5871
  {(char *) "api_VMCompatibilityShim_GetObjectImmediateFunctions", (PyCFunction) _wrap__api_api_VMCompatibilityShim_GetObjectImmediateFunctions, METH_KEYWORDS|METH_VARARGS, "api_VMCompatibilityShim_GetObjectImmediateFunctions(_handle, id)\n\ntype: _handle: int64_t\ntype: id: char *" },
5853
5872
  {(char *) "api_VMCompatibilityShim_GetObjectImmediateVariables", (PyCFunction) _wrap__api_api_VMCompatibilityShim_GetObjectImmediateVariables, METH_KEYWORDS|METH_VARARGS, "api_VMCompatibilityShim_GetObjectImmediateVariables(_handle, id)\n\ntype: _handle: int64_t\ntype: id: char *" },
5854
5873
  {(char *) "api_VMCompatibilityShim_AddVariableToObject", (PyCFunction) _wrap__api_api_VMCompatibilityShim_AddVariableToObject, METH_KEYWORDS|METH_VARARGS, "api_VMCompatibilityShim_AddVariableToObject(_handle, id, variable)\n\ntype: _handle: int64_t\ntype: id: char *\ntype: variable: int64_t" },
5855
- {(char *) "api_ClassMethod_CTor", (PyCFunction) _wrap__api_api_ClassMethod_CTor, METH_NOARGS, "api_ClassMethod_CTor()\n\n" },
5856
- {(char *) "api_ClassMethod_Name_Get", (PyCFunction) _wrap__api_api_ClassMethod_Name_Get, METH_KEYWORDS|METH_VARARGS, "api_ClassMethod_Name_Get(handle)\n\ntype: handle: int64_t" },
5857
- {(char *) "api_ClassMethod_Name_Set", (PyCFunction) _wrap__api_api_ClassMethod_Name_Set, METH_KEYWORDS|METH_VARARGS, "api_ClassMethod_Name_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: char *" },
5858
- {(char *) "api_ClassMethod_Argc_Get", (PyCFunction) _wrap__api_api_ClassMethod_Argc_Get, METH_KEYWORDS|METH_VARARGS, "api_ClassMethod_Argc_Get(handle)\n\ntype: handle: int64_t" },
5859
- {(char *) "api_ClassMethod_Argc_Set", (PyCFunction) _wrap__api_api_ClassMethod_Argc_Set, METH_KEYWORDS|METH_VARARGS, "api_ClassMethod_Argc_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: int64_t" },
5860
- {(char *) "api_ClassVariable_CTor", (PyCFunction) _wrap__api_api_ClassVariable_CTor, METH_NOARGS, "api_ClassVariable_CTor()\n\n" },
5861
- {(char *) "api_ClassVariable_Name_Get", (PyCFunction) _wrap__api_api_ClassVariable_Name_Get, METH_KEYWORDS|METH_VARARGS, "api_ClassVariable_Name_Get(handle)\n\ntype: handle: int64_t" },
5862
- {(char *) "api_ClassVariable_Name_Set", (PyCFunction) _wrap__api_api_ClassVariable_Name_Set, METH_KEYWORDS|METH_VARARGS, "api_ClassVariable_Name_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: char *" },
5863
- {(char *) "api_ClassVariable_Value_Get", (PyCFunction) _wrap__api_api_ClassVariable_Value_Get, METH_KEYWORDS|METH_VARARGS, "api_ClassVariable_Value_Get(handle)\n\ntype: handle: int64_t" },
5864
- {(char *) "api_ClassVariable_Value_Set", (PyCFunction) _wrap__api_api_ClassVariable_Value_Set, METH_KEYWORDS|METH_VARARGS, "api_ClassVariable_Value_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: int64_t" },
5865
- {(char *) "api_ClassVariable_Locked_Get", (PyCFunction) _wrap__api_api_ClassVariable_Locked_Get, METH_KEYWORDS|METH_VARARGS, "api_ClassVariable_Locked_Get(handle)\n\ntype: handle: int64_t" },
5866
- {(char *) "api_ClassVariable_Locked_Set", (PyCFunction) _wrap__api_api_ClassVariable_Locked_Set, METH_KEYWORDS|METH_VARARGS, "api_ClassVariable_Locked_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: bool" },
5867
- {(char *) "api_SourceLocation_CTor", (PyCFunction) _wrap__api_api_SourceLocation_CTor, METH_NOARGS, "api_SourceLocation_CTor()\n\n" },
5868
- {(char *) "api_SourceLocation_Filename_Get", (PyCFunction) _wrap__api_api_SourceLocation_Filename_Get, METH_KEYWORDS|METH_VARARGS, "api_SourceLocation_Filename_Get(handle)\n\ntype: handle: int64_t" },
5869
- {(char *) "api_SourceLocation_Filename_Set", (PyCFunction) _wrap__api_api_SourceLocation_Filename_Set, METH_KEYWORDS|METH_VARARGS, "api_SourceLocation_Filename_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: char *" },
5870
- {(char *) "api_SourceLocation_Line_Get", (PyCFunction) _wrap__api_api_SourceLocation_Line_Get, METH_KEYWORDS|METH_VARARGS, "api_SourceLocation_Line_Get(handle)\n\ntype: handle: int64_t" },
5871
- {(char *) "api_SourceLocation_Line_Set", (PyCFunction) _wrap__api_api_SourceLocation_Line_Set, METH_KEYWORDS|METH_VARARGS, "api_SourceLocation_Line_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: int64_t" },
5872
- {(char *) "api_SourceLocation_Column_Get", (PyCFunction) _wrap__api_api_SourceLocation_Column_Get, METH_KEYWORDS|METH_VARARGS, "api_SourceLocation_Column_Get(handle)\n\ntype: handle: int64_t" },
5873
- {(char *) "api_SourceLocation_Column_Set", (PyCFunction) _wrap__api_api_SourceLocation_Column_Set, METH_KEYWORDS|METH_VARARGS, "api_SourceLocation_Column_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: int64_t" },
5874
+ {(char *) "api_WrapAny", (PyCFunction) _wrap__api_api_WrapAny, METH_KEYWORDS|METH_VARARGS, "api_WrapAny(value)\n\ntype: value: char *" },
5875
+ {(char *) "api_WrapInt", (PyCFunction) _wrap__api_api_WrapInt, METH_KEYWORDS|METH_VARARGS, "api_WrapInt(value)\n\ntype: value: int64_t" },
5876
+ {(char *) "api_WrapObject", (PyCFunction) _wrap__api_api_WrapObject, METH_KEYWORDS|METH_VARARGS, "api_WrapObject(value)\n\ntype: value: int64_t" },
5877
+ {(char *) "api_WrapFloat", (PyCFunction) _wrap__api_api_WrapFloat, METH_KEYWORDS|METH_VARARGS, "api_WrapFloat(value)\n\ntype: value: double" },
5878
+ {(char *) "api_WrapBool", (PyCFunction) _wrap__api_api_WrapBool, METH_KEYWORDS|METH_VARARGS, "api_WrapBool(value)\n\ntype: value: bool" },
5879
+ {(char *) "api_WrapString", (PyCFunction) _wrap__api_api_WrapString, METH_KEYWORDS|METH_VARARGS, "api_WrapString(value)\n\ntype: value: char *" },
5880
+ {(char *) "api_ToGoValue", (PyCFunction) _wrap__api_api_ToGoValue, METH_KEYWORDS|METH_VARARGS, "api_ToGoValue(val)\n\ntype: val: int64_t" },
5881
+ {(char *) "api_NewVM", (PyCFunction) _wrap__api_api_NewVM, METH_KEYWORDS|METH_VARARGS, "api_NewVM(config)\n\ntype: config: int64_t" },
5874
5882
  {(char *) "api_DefaultConfig", (PyCFunction) _wrap__api_api_DefaultConfig, METH_NOARGS, "api_DefaultConfig()\n\n" },
5883
+ {(char *) "api_NewClassDefinition", (PyCFunction) _wrap__api_api_NewClassDefinition, METH_NOARGS, "api_NewClassDefinition()\n\n" },
5875
5884
  {(char *) "api_NewCompileError", (PyCFunction) _wrap__api_api_NewCompileError, METH_KEYWORDS|METH_VARARGS, "api_NewCompileError(message, source)\n\ntype: message: char *\ntype: source: int64_t" },
5876
5885
  {(char *) "api_NewConfigError", (PyCFunction) _wrap__api_api_NewConfigError, METH_KEYWORDS|METH_VARARGS, "api_NewConfigError(message, wrapped)\n\ntype: message: char *\ntype: wrapped: char *" },
5877
- {(char *) "api_NewTimeoutError", (PyCFunction) _wrap__api_api_NewTimeoutError, METH_KEYWORDS|METH_VARARGS, "api_NewTimeoutError(duration)\n\ntype: duration: int64_t" },
5878
5886
  {(char *) "api_NewConversionError", (PyCFunction) _wrap__api_api_NewConversionError, METH_KEYWORDS|METH_VARARGS, "api_NewConversionError(message, wrapped)\n\ntype: message: char *\ntype: wrapped: char *" },
5879
5887
  {(char *) "api_NewRuntimeError", (PyCFunction) _wrap__api_api_NewRuntimeError, METH_KEYWORDS|METH_VARARGS, "api_NewRuntimeError(message, source)\n\ntype: message: char *\ntype: source: int64_t" },
5880
- {(char *) "api_NewClassDefinition", (PyCFunction) _wrap__api_api_NewClassDefinition, METH_NOARGS, "api_NewClassDefinition()\n\n" },
5881
- {(char *) "api_WrapAny", (PyCFunction) _wrap__api_api_WrapAny, METH_KEYWORDS|METH_VARARGS, "api_WrapAny(value)\n\ntype: value: char *" },
5882
- {(char *) "api_ToGoValue", (PyCFunction) _wrap__api_api_ToGoValue, METH_KEYWORDS|METH_VARARGS, "api_ToGoValue(val)\n\ntype: val: int64_t" },
5883
- {(char *) "api_WrapBool", (PyCFunction) _wrap__api_api_WrapBool, METH_KEYWORDS|METH_VARARGS, "api_WrapBool(value)\n\ntype: value: bool" },
5884
- {(char *) "api_WrapFloat", (PyCFunction) _wrap__api_api_WrapFloat, METH_KEYWORDS|METH_VARARGS, "api_WrapFloat(value)\n\ntype: value: double" },
5885
- {(char *) "api_WrapString", (PyCFunction) _wrap__api_api_WrapString, METH_KEYWORDS|METH_VARARGS, "api_WrapString(value)\n\ntype: value: char *" },
5886
- {(char *) "api_WrapInt", (PyCFunction) _wrap__api_api_WrapInt, METH_KEYWORDS|METH_VARARGS, "api_WrapInt(value)\n\ntype: value: int64_t" },
5887
- {(char *) "api_WrapObject", (PyCFunction) _wrap__api_api_WrapObject, METH_KEYWORDS|METH_VARARGS, "api_WrapObject(value)\n\ntype: value: int64_t" },
5888
- {(char *) "api_NewVM", (PyCFunction) _wrap__api_api_NewVM, METH_KEYWORDS|METH_VARARGS, "api_NewVM(config)\n\ntype: config: int64_t" },
5888
+ {(char *) "api_NewTimeoutError", (PyCFunction) _wrap__api_api_NewTimeoutError, METH_KEYWORDS|METH_VARARGS, "api_NewTimeoutError(duration)\n\ntype: duration: int64_t" },
5889
+ {(char *) "api_FromGoValue", (PyCFunction) _wrap__api_api_FromGoValue, METH_KEYWORDS|METH_VARARGS, "api_FromGoValue(val)\n\ntype: val: int64_t" },
5889
5890
  {(char *) "api_LookupObject", (PyCFunction) _wrap__api_api_LookupObject, METH_KEYWORDS|METH_VARARGS, "api_LookupObject(id)\n\ntype: id: char *" },
5890
5891
  {(char *) "api_ConvertArguments", (PyCFunction) _wrap__api_api_ConvertArguments, METH_KEYWORDS|METH_VARARGS, "api_ConvertArguments(args)\n\ntype: args: int64_t" },
5891
- {(char *) "api_FromGoValue", (PyCFunction) _wrap__api_api_FromGoValue, METH_KEYWORDS|METH_VARARGS, "api_FromGoValue(val)\n\ntype: val: int64_t" },
5892
5892
  {NULL, NULL, 0, NULL}
5893
5893
  };
5894
5894
  #if PY_VERSION_HEX >= 0x03000000