Ruby 3.4.6p54 (2025-09-16 revision dbd83256b1cec76c69756ecb8758b9e1079833de)
extension.h
1#ifndef PRISM_EXT_NODE_H
2#define PRISM_EXT_NODE_H
3
4#define EXPECTED_PRISM_VERSION "1.5.1"
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.
struct pm_parser pm_parser_t
The parser used to parse Ruby source.
Definition parser.h:267
The main header file for the prism parser.
A structure represents an arbitrary-sized integer.
Definition pm_integer.h:20
This struct represents a token in the Ruby source.
Definition ast.h:529
uintptr_t VALUE
Type that represents a Ruby object.
Definition value.h:40