Ruby 3.5.0dev (2025-04-04 revision 085cc6e43473f2a3c81311a07c1fc8efa46c118b)
extension.h
1#ifndef PRISM_EXT_NODE_H
2#define PRISM_EXT_NODE_H
3
4#define EXPECTED_PRISM_VERSION "1.4.0"
5
6#include <ruby.h>
7#include <ruby/encoding.h>
8#include "prism.h"
9
10VALUE pm_source_new(const pm_parser_t *parser, rb_encoding *encoding, bool freeze);
11VALUE pm_token_new(const pm_parser_t *parser, const pm_token_t *token, rb_encoding *encoding, VALUE source, bool freeze);
12VALUE pm_ast_new(const pm_parser_t *parser, const pm_node_t *node, rb_encoding *encoding, VALUE source, bool freeze);
13VALUE pm_integer_new(const pm_integer_t *integer);
14
15void Init_prism_api_node(void);
16void Init_prism_pack(void);
17RUBY_FUNC_EXPORTED void Init_prism(void);
18
19#endif
Encoding relates APIs.
The main header file for the prism parser.
A structure represents an arbitrary-sized integer.
Definition pm_integer.h:20
This is the base structure that represents a node in the syntax tree.
Definition ast.h:1069
This struct represents the overall parser.
Definition parser.h:640
This struct represents a token in the Ruby source.
Definition ast.h:530
uintptr_t VALUE
Type that represents a Ruby object.
Definition value.h:40