File: parse_context.h

package info (click to toggle)
ruby-liquid-c 4.2.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 504 kB
  • sloc: ansic: 3,866; ruby: 1,151; makefile: 7
file content (13 lines) | stat: -rw-r--r-- 304 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef LIQUID_PARSE_CONTEXT_H
#define LIQUID_PARSE_CONTEXT_H

#include <ruby.h>
#include <stdbool.h>
#include "vm_assembler_pool.h"

void liquid_define_parse_context(void);
VALUE parse_context_get_document_body(VALUE self);

vm_assembler_pool_t *parse_context_get_vm_assembler_pool(VALUE self);

#endif