Refactor to use 64-bit instructions
This commit is contained in:
parent
e04ead3848
commit
fbaf59abe2
@ -1,13 +1,13 @@
|
||||
use std::{
|
||||
fmt::{self, Display, Formatter},
|
||||
fs::{read_to_string, File, OpenOptions},
|
||||
fs::{File, OpenOptions},
|
||||
io::{stdin, stdout, Read, Write},
|
||||
time::Instant,
|
||||
};
|
||||
|
||||
use clap::{Args, Parser, Subcommand, ValueEnum};
|
||||
use colored::Colorize;
|
||||
use dust_lang::{compile, display_token_list, format, lex, run_source, vm::run_chunk, Chunk};
|
||||
use dust_lang::{compile, display_token_list, format, lex, vm::run_chunk};
|
||||
use env_logger::Target;
|
||||
use log::{Level, LevelFilter};
|
||||
|
||||
|
@ -4,7 +4,7 @@
|
||||
//! list of locals that can be executed by the Dust virtual machine. Chunks have a name when they
|
||||
//! belong to a named function.
|
||||
|
||||
use std::fmt::{self, Debug, Display, Formatter};
|
||||
use std::fmt::{self, Debug, Display, Formatter, Write};
|
||||
use std::hash::{Hash, Hasher};
|
||||
|
||||
use serde::{Deserialize, Serialize};
|
||||
@ -193,7 +193,7 @@ impl Debug for Chunk {
|
||||
let disassembly = self.disassembler().style(false).disassemble();
|
||||
|
||||
if cfg!(debug_assertions) {
|
||||
write!(f, "\n",)?;
|
||||
f.write_char('\n')?;
|
||||
}
|
||||
|
||||
write!(f, "{}", disassembly)
|
||||
|
@ -4,7 +4,6 @@
|
||||
//! - [`compile`], which compiles the entire input and returns a chunk
|
||||
//! - [`Compiler`], which compiles the input a token at a time while assembling a chunk
|
||||
use std::{
|
||||
collections::HashMap,
|
||||
fmt::{self, Display, Formatter},
|
||||
mem::replace,
|
||||
num::{ParseFloatError, ParseIntError},
|
||||
@ -49,7 +48,7 @@ pub fn compile(source: &str) -> Result<Chunk, DustError> {
|
||||
pub struct Compiler<'src> {
|
||||
chunk: Chunk,
|
||||
lexer: Lexer<'src>,
|
||||
local_declarations: HashMap<u8, u8>,
|
||||
local_declarations: Vec<u8>,
|
||||
|
||||
current_token: Token<'src>,
|
||||
current_position: Span,
|
||||
@ -79,7 +78,7 @@ impl<'src> Compiler<'src> {
|
||||
Ok(Compiler {
|
||||
chunk,
|
||||
lexer,
|
||||
local_declarations: HashMap::new(),
|
||||
local_declarations: Vec::new(),
|
||||
current_token,
|
||||
current_position,
|
||||
previous_token: Token::Eof,
|
||||
@ -119,9 +118,7 @@ impl<'src> Compiler<'src> {
|
||||
.iter()
|
||||
.filter_map(|(instruction, _)| {
|
||||
if instruction.yields_value() {
|
||||
let to_register = instruction.a();
|
||||
|
||||
Some(to_register + 1)
|
||||
Some(instruction.a() + 1)
|
||||
} else {
|
||||
None
|
||||
}
|
||||
@ -199,20 +196,21 @@ impl<'src> Compiler<'src> {
|
||||
|
||||
let identifier = ConcreteValue::string(identifier);
|
||||
let identifier_index = self.chunk.push_or_get_constant(identifier);
|
||||
let local_index = self.chunk.locals().len() as u8;
|
||||
let local_index = self.chunk.locals().len();
|
||||
|
||||
self.chunk
|
||||
.locals_mut()
|
||||
.push(Local::new(identifier_index, r#type, is_mutable, scope));
|
||||
self.local_declarations.insert(local_index, register_index);
|
||||
|
||||
(local_index, identifier_index)
|
||||
(local_index as u8, identifier_index)
|
||||
}
|
||||
|
||||
fn redeclare_local(&mut self, local_index: u8, register_index: u8) -> Result<(), CompileError> {
|
||||
let local = self.get_local(local_index)?;
|
||||
let local_index = local_index as usize;
|
||||
|
||||
if !self.current_scope.contains(&local.scope) {
|
||||
if !self.local_declarations.len() <= local_index {
|
||||
let local = self.get_local(local_index as u8)?;
|
||||
let identifier = self
|
||||
.chunk
|
||||
.constants()
|
||||
@ -228,7 +226,7 @@ impl<'src> Compiler<'src> {
|
||||
});
|
||||
}
|
||||
|
||||
self.local_declarations.insert(local_index, register_index);
|
||||
self.local_declarations[local_index] = register_index;
|
||||
|
||||
Ok(())
|
||||
}
|
||||
@ -696,19 +694,22 @@ impl<'src> Compiler<'src> {
|
||||
let local = self.get_local(local_index)?;
|
||||
is_mutable_local = local.is_mutable;
|
||||
|
||||
*self.local_declarations.get(&local_index).ok_or_else(|| {
|
||||
let identifier = self
|
||||
.chunk
|
||||
.constants()
|
||||
.get(local.identifier_index as usize)
|
||||
.unwrap()
|
||||
.to_string();
|
||||
*self
|
||||
.local_declarations
|
||||
.get(local_index as usize)
|
||||
.ok_or_else(|| {
|
||||
let identifier = self
|
||||
.chunk
|
||||
.constants()
|
||||
.get(local.identifier_index as usize)
|
||||
.unwrap()
|
||||
.to_string();
|
||||
|
||||
CompileError::UndeclaredVariable {
|
||||
identifier,
|
||||
position: self.current_position,
|
||||
}
|
||||
})?
|
||||
CompileError::UndeclaredVariable {
|
||||
identifier,
|
||||
position: self.current_position,
|
||||
}
|
||||
})?
|
||||
}
|
||||
Operation::LoadConstant => {
|
||||
is_constant = true;
|
||||
@ -785,7 +786,6 @@ impl<'src> Compiler<'src> {
|
||||
} else {
|
||||
self.next_register()
|
||||
};
|
||||
|
||||
let mut new_instruction = match operator {
|
||||
Token::Plus => Instruction::add(register, left, right),
|
||||
Token::PlusEqual => Instruction::add(register, left, right),
|
||||
@ -827,12 +827,7 @@ impl<'src> Compiler<'src> {
|
||||
|
||||
self.emit_instruction(new_instruction, operator_position);
|
||||
|
||||
if let Token::PlusEqual
|
||||
| Token::MinusEqual
|
||||
| Token::StarEqual
|
||||
| Token::SlashEqual
|
||||
| Token::PercentEqual = operator
|
||||
{
|
||||
if is_assignment {
|
||||
self.previous_expression_type = Type::None;
|
||||
} else {
|
||||
self.previous_expression_type = self.get_instruction_type(&left_instruction)?;
|
||||
@ -859,7 +854,6 @@ impl<'src> Compiler<'src> {
|
||||
})?;
|
||||
let (push_back_left, left_is_constant, _, left) =
|
||||
self.handle_binary_argument(&left_instruction)?;
|
||||
|
||||
let operator = self.current_token;
|
||||
let operator_position = self.current_position;
|
||||
let rule = ParseRule::from(&operator);
|
||||
@ -1028,9 +1022,10 @@ impl<'src> Compiler<'src> {
|
||||
});
|
||||
}
|
||||
|
||||
let register = self.next_register() - 1;
|
||||
|
||||
self.parse_expression()?;
|
||||
|
||||
let register = self.local_declarations[local_index as usize];
|
||||
|
||||
self.redeclare_local(local_index, register)?;
|
||||
self.emit_instruction(
|
||||
Instruction::set_local(register, local_index),
|
||||
|
@ -8,7 +8,7 @@ use crate::{CompileError, DustError, LexError, Lexer, Token};
|
||||
pub fn format(
|
||||
source: &str,
|
||||
colored: bool,
|
||||
indent: usize,
|
||||
_indent: usize,
|
||||
line_numbers: bool,
|
||||
) -> Result<String, DustError> {
|
||||
let lexer = Lexer::new(source);
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -74,8 +74,8 @@ macro_rules! define_native_function {
|
||||
}
|
||||
}
|
||||
|
||||
impl From<u8> for NativeFunction {
|
||||
fn from(byte: u8) -> Self {
|
||||
impl From<u16> for NativeFunction {
|
||||
fn from(byte: u16) -> Self {
|
||||
match byte {
|
||||
$(
|
||||
$byte => NativeFunction::$name,
|
||||
@ -126,7 +126,7 @@ define_native_function! {
|
||||
// (AssertNotEqual, 2_u8, "assert_not_equal", false),
|
||||
(
|
||||
Panic,
|
||||
3_u8,
|
||||
3,
|
||||
"panic",
|
||||
FunctionType {
|
||||
type_parameters: None,
|
||||
@ -143,7 +143,7 @@ define_native_function! {
|
||||
// (ToInteger, 7_u8, "to_integer", true),
|
||||
(
|
||||
ToString,
|
||||
8_u8,
|
||||
8,
|
||||
"to_string",
|
||||
FunctionType {
|
||||
type_parameters: None,
|
||||
@ -204,7 +204,7 @@ define_native_function! {
|
||||
// (ReadFile, 49_u8, "read_file", true),
|
||||
(
|
||||
ReadLine,
|
||||
50_u8,
|
||||
50,
|
||||
"read_line",
|
||||
FunctionType {
|
||||
type_parameters: None,
|
||||
@ -220,7 +220,7 @@ define_native_function! {
|
||||
// (PrependFile, 54_u8, "prepend_file", false),
|
||||
(
|
||||
Write,
|
||||
55_u8,
|
||||
55,
|
||||
"write",
|
||||
FunctionType {
|
||||
type_parameters: None,
|
||||
@ -232,7 +232,7 @@ define_native_function! {
|
||||
// (WriteFile, 56_u8, "write_file", false),
|
||||
(
|
||||
WriteLine,
|
||||
57_u8,
|
||||
57,
|
||||
"write_line",
|
||||
FunctionType {
|
||||
type_parameters: None,
|
||||
|
@ -1,7 +1,6 @@
|
||||
//! Virtual machine and errors
|
||||
use std::{
|
||||
cmp::Ordering,
|
||||
collections::HashMap,
|
||||
fmt::{self, Display, Formatter},
|
||||
io,
|
||||
};
|
||||
@ -34,7 +33,7 @@ pub struct Vm<'a> {
|
||||
chunk: &'a Chunk,
|
||||
stack: Vec<Register>,
|
||||
parent: Option<&'a Vm<'a>>,
|
||||
local_definitions: HashMap<u8, u8>,
|
||||
local_definitions: Vec<Option<u8>>,
|
||||
|
||||
ip: usize,
|
||||
last_assigned_register: Option<u8>,
|
||||
@ -49,7 +48,7 @@ impl<'a> Vm<'a> {
|
||||
chunk,
|
||||
stack: Vec::new(),
|
||||
parent,
|
||||
local_definitions: HashMap::new(),
|
||||
local_definitions: vec![None; chunk.locals().len()],
|
||||
ip: 0,
|
||||
last_assigned_register: None,
|
||||
current_position: Span(0, 0),
|
||||
@ -158,12 +157,12 @@ impl<'a> Vm<'a> {
|
||||
let from_register = instruction.a();
|
||||
let to_local = instruction.b();
|
||||
|
||||
self.define_local(to_local, from_register)?;
|
||||
self.local_definitions[to_local as usize] = Some(from_register);
|
||||
}
|
||||
Operation::GetLocal => {
|
||||
let to_register = instruction.a();
|
||||
let local_index = instruction.b();
|
||||
let local_register = self.local_definitions.get(&local_index).copied().ok_or(
|
||||
let local_register = self.local_definitions[local_index as usize].ok_or(
|
||||
VmError::UndefinedLocal {
|
||||
local_index,
|
||||
position: self.current_position,
|
||||
@ -176,16 +175,8 @@ impl<'a> Vm<'a> {
|
||||
Operation::SetLocal => {
|
||||
let from_register = instruction.a();
|
||||
let to_local = instruction.b();
|
||||
let local_register = self.local_definitions.get(&to_local).copied().ok_or(
|
||||
VmError::UndefinedLocal {
|
||||
local_index: to_local,
|
||||
position: self.current_position,
|
||||
},
|
||||
)?;
|
||||
let register = Register::Pointer(Pointer::Stack(from_register));
|
||||
|
||||
self.define_local(to_local, from_register)?;
|
||||
self.set_register(local_register, register)?;
|
||||
self.local_definitions[to_local as usize] = Some(from_register);
|
||||
}
|
||||
Operation::Add => {
|
||||
let to_register = instruction.a();
|
||||
@ -640,14 +631,6 @@ impl<'a> Vm<'a> {
|
||||
|
||||
Ok(instruction)
|
||||
}
|
||||
|
||||
fn define_local(&mut self, local_index: u8, register_index: u8) -> Result<(), VmError> {
|
||||
log::debug!("Define local L{}", local_index);
|
||||
|
||||
self.local_definitions.insert(local_index, register_index);
|
||||
|
||||
Ok(())
|
||||
}
|
||||
}
|
||||
|
||||
#[derive(Clone, Debug, PartialEq)]
|
||||
|
@ -23,8 +23,8 @@ fn function() {
|
||||
],
|
||||
vec![ConcreteValue::string("a"), ConcreteValue::string("b"),],
|
||||
vec![
|
||||
Local::new(0, Type::Integer, false, Scope::default(), 0),
|
||||
Local::new(1, Type::Integer, false, Scope::default(), 1)
|
||||
Local::new(0, Type::Integer, false, Scope::default()),
|
||||
Local::new(1, Type::Integer, false, Scope::default())
|
||||
]
|
||||
))))
|
||||
);
|
||||
@ -64,8 +64,8 @@ fn function_call() {
|
||||
],
|
||||
vec![ConcreteValue::string("a"), ConcreteValue::string("b"),],
|
||||
vec![
|
||||
Local::new(0, Type::Integer, false, Scope::default(), 0),
|
||||
Local::new(1, Type::Integer, false, Scope::default(), 1)
|
||||
Local::new(0, Type::Integer, false, Scope::default()),
|
||||
Local::new(1, Type::Integer, false, Scope::default())
|
||||
]
|
||||
)),
|
||||
ConcreteValue::Integer(1),
|
||||
@ -93,6 +93,7 @@ fn function_declaration() {
|
||||
},
|
||||
vec![
|
||||
(Instruction::load_constant(0, 0, false), Span(0, 40)),
|
||||
(Instruction::define_local(0, 0, false), Span(3, 6)),
|
||||
(Instruction::r#return(false), Span(40, 40))
|
||||
],
|
||||
vec![
|
||||
@ -109,8 +110,8 @@ fn function_declaration() {
|
||||
],
|
||||
vec![ConcreteValue::string("a"), ConcreteValue::string("b")],
|
||||
vec![
|
||||
Local::new(0, Type::Integer, false, Scope::default(), 0),
|
||||
Local::new(1, Type::Integer, false, Scope::default(), 1)
|
||||
Local::new(0, Type::Integer, false, Scope::default()),
|
||||
Local::new(1, Type::Integer, false, Scope::default())
|
||||
]
|
||||
)),
|
||||
ConcreteValue::string("add"),
|
||||
@ -124,7 +125,6 @@ fn function_declaration() {
|
||||
}),
|
||||
false,
|
||||
Scope::default(),
|
||||
0
|
||||
),],
|
||||
)),
|
||||
);
|
||||
|
@ -71,7 +71,9 @@ fn variable_and() {
|
||||
},
|
||||
vec![
|
||||
(Instruction::load_boolean(0, true, false), Span(8, 12)),
|
||||
(Instruction::define_local(0, 0, false), Span(4, 5)),
|
||||
(Instruction::load_boolean(1, false, false), Span(22, 27)),
|
||||
(Instruction::define_local(1, 1, false), Span(18, 19)),
|
||||
(Instruction::get_local(2, 0), Span(29, 30)),
|
||||
(Instruction::test(2, true), Span(31, 33)),
|
||||
(Instruction::jump(1, true), Span(31, 33)),
|
||||
@ -80,8 +82,8 @@ fn variable_and() {
|
||||
],
|
||||
vec![ConcreteValue::string("a"), ConcreteValue::string("b"),],
|
||||
vec![
|
||||
Local::new(0, Type::Boolean, false, Scope::default(), 0),
|
||||
Local::new(1, Type::Boolean, false, Scope::default(), 1),
|
||||
Local::new(0, Type::Boolean, false, Scope::default()),
|
||||
Local::new(1, Type::Boolean, false, Scope::default()),
|
||||
]
|
||||
))
|
||||
);
|
||||
|
@ -15,6 +15,7 @@ fn r#while() {
|
||||
},
|
||||
vec![
|
||||
(Instruction::load_constant(0, 0, false), Span(12, 13)),
|
||||
(Instruction::define_local(0, 0, true), Span(8, 9)),
|
||||
(
|
||||
*Instruction::less(true, 0, 2).set_c_is_constant(),
|
||||
Span(23, 24)
|
||||
@ -31,7 +32,7 @@ fn r#while() {
|
||||
ConcreteValue::Integer(5),
|
||||
ConcreteValue::Integer(1),
|
||||
],
|
||||
vec![Local::new(1, Type::Integer, true, Scope::default(), 0)]
|
||||
vec![Local::new(1, Type::Integer, true, Scope::default())]
|
||||
)),
|
||||
);
|
||||
|
||||
|
@ -45,6 +45,7 @@ fn add_assign() {
|
||||
},
|
||||
vec![
|
||||
(Instruction::load_constant(0, 0, false), Span(12, 13)),
|
||||
(Instruction::define_local(0, 0, true), Span(8, 9)),
|
||||
(*Instruction::add(0, 0, 2).set_c_is_constant(), Span(17, 19)),
|
||||
(Instruction::get_local(1, 0), Span(23, 24)),
|
||||
(Instruction::r#return(true), Span(24, 24))
|
||||
@ -54,7 +55,7 @@ fn add_assign() {
|
||||
ConcreteValue::string("a"),
|
||||
ConcreteValue::Integer(2)
|
||||
],
|
||||
vec![Local::new(1, Type::Integer, true, Scope::default(), 0)]
|
||||
vec![Local::new(1, Type::Integer, true, Scope::default())]
|
||||
))
|
||||
);
|
||||
|
||||
@ -138,6 +139,7 @@ fn divide_assign() {
|
||||
},
|
||||
vec![
|
||||
(Instruction::load_constant(0, 0, false), Span(12, 13)),
|
||||
(Instruction::define_local(0, 0, true), Span(8, 9)),
|
||||
(
|
||||
*Instruction::divide(0, 0, 0).set_c_is_constant(),
|
||||
Span(17, 19)
|
||||
@ -146,7 +148,7 @@ fn divide_assign() {
|
||||
(Instruction::r#return(true), Span(24, 24))
|
||||
],
|
||||
vec![ConcreteValue::Integer(2), ConcreteValue::string("a")],
|
||||
vec![Local::new(1, Type::Integer, true, Scope::default(), 0)]
|
||||
vec![Local::new(1, Type::Integer, true, Scope::default())]
|
||||
))
|
||||
);
|
||||
|
||||
@ -261,6 +263,7 @@ fn multiply_assign() {
|
||||
},
|
||||
vec![
|
||||
(Instruction::load_constant(0, 0, false), Span(12, 13)),
|
||||
(Instruction::define_local(0, 0, true), Span(8, 9)),
|
||||
(
|
||||
*Instruction::multiply(0, 0, 2).set_c_is_constant(),
|
||||
Span(17, 19)
|
||||
@ -273,7 +276,7 @@ fn multiply_assign() {
|
||||
ConcreteValue::string("a"),
|
||||
ConcreteValue::Integer(3)
|
||||
],
|
||||
vec![Local::new(1, Type::Integer, true, Scope::default(), 0)]
|
||||
vec![Local::new(1, Type::Integer, true, Scope::default())]
|
||||
))
|
||||
);
|
||||
|
||||
@ -341,6 +344,7 @@ fn subtract_assign() {
|
||||
},
|
||||
vec![
|
||||
(Instruction::load_constant(0, 0, false), Span(12, 14)),
|
||||
(Instruction::define_local(0, 0, true), Span(8, 9)),
|
||||
(
|
||||
*Instruction::subtract(0, 0, 2).set_c_is_constant(),
|
||||
Span(18, 20)
|
||||
@ -353,7 +357,7 @@ fn subtract_assign() {
|
||||
ConcreteValue::string("x"),
|
||||
ConcreteValue::Integer(2)
|
||||
],
|
||||
vec![Local::new(1, Type::Integer, true, Scope::default(), 0)]
|
||||
vec![Local::new(1, Type::Integer, true, Scope::default())]
|
||||
)),
|
||||
);
|
||||
|
||||
|
@ -60,11 +60,11 @@ fn block_scope() {
|
||||
ConcreteValue::string("e"),
|
||||
],
|
||||
vec![
|
||||
Local::new(1, Type::Integer, false, Scope::new(0, 0), 0),
|
||||
Local::new(3, Type::Integer, false, Scope::new(1, 1), 0),
|
||||
Local::new(5, Type::Integer, false, Scope::new(2, 2), 0),
|
||||
Local::new(7, Type::Integer, false, Scope::new(1, 1), 0),
|
||||
Local::new(8, Type::Integer, false, Scope::new(0, 0), 0),
|
||||
Local::new(1, Type::Integer, false, Scope::new(0, 0)),
|
||||
Local::new(3, Type::Integer, false, Scope::new(1, 1)),
|
||||
Local::new(5, Type::Integer, false, Scope::new(2, 2)),
|
||||
Local::new(7, Type::Integer, false, Scope::new(1, 1)),
|
||||
Local::new(8, Type::Integer, false, Scope::new(0, 0)),
|
||||
]
|
||||
)),
|
||||
);
|
||||
@ -136,15 +136,15 @@ fn multiple_block_scopes() {
|
||||
ConcreteValue::string("e"),
|
||||
],
|
||||
vec![
|
||||
Local::new(1, Type::Integer, false, Scope::new(0, 0), 0),
|
||||
Local::new(3, Type::Integer, false, Scope::new(1, 1), 0),
|
||||
Local::new(5, Type::Integer, false, Scope::new(2, 2), 0),
|
||||
Local::new(6, Type::Integer, false, Scope::new(1, 1), 0),
|
||||
Local::new(7, Type::Integer, false, Scope::new(0, 0), 0),
|
||||
Local::new(3, Type::Integer, false, Scope::new(1, 3), 0),
|
||||
Local::new(5, Type::Integer, false, Scope::new(2, 4), 0),
|
||||
Local::new(6, Type::Integer, false, Scope::new(1, 3), 0),
|
||||
Local::new(8, Type::Integer, false, Scope::new(0, 0), 0),
|
||||
Local::new(1, Type::Integer, false, Scope::new(0, 0)),
|
||||
Local::new(3, Type::Integer, false, Scope::new(1, 1)),
|
||||
Local::new(5, Type::Integer, false, Scope::new(2, 2)),
|
||||
Local::new(6, Type::Integer, false, Scope::new(1, 1)),
|
||||
Local::new(7, Type::Integer, false, Scope::new(0, 0)),
|
||||
Local::new(3, Type::Integer, false, Scope::new(1, 3)),
|
||||
Local::new(5, Type::Integer, false, Scope::new(2, 4)),
|
||||
Local::new(6, Type::Integer, false, Scope::new(1, 3)),
|
||||
Local::new(8, Type::Integer, false, Scope::new(0, 0)),
|
||||
]
|
||||
)),
|
||||
);
|
||||
|
@ -15,10 +15,11 @@ fn define_local() {
|
||||
},
|
||||
vec![
|
||||
(Instruction::load_constant(0, 0, false), Span(8, 10)),
|
||||
(Instruction::define_local(0, 0, false), Span(4, 5)),
|
||||
(Instruction::r#return(false), Span(11, 11))
|
||||
],
|
||||
vec![ConcreteValue::Integer(42), ConcreteValue::string("x")],
|
||||
vec![Local::new(1, Type::Integer, false, Scope::default(), 0)]
|
||||
vec![Local::new(1, Type::Integer, false, Scope::default())]
|
||||
)),
|
||||
);
|
||||
|
||||
@ -57,8 +58,9 @@ fn set_local() {
|
||||
},
|
||||
vec![
|
||||
(Instruction::load_constant(0, 0, false), Span(12, 14)),
|
||||
(Instruction::define_local(0, 0, true), Span(8, 9)),
|
||||
(Instruction::load_constant(1, 2, false), Span(20, 22)),
|
||||
(Instruction::set_local(0, 0), Span(16, 17)),
|
||||
(Instruction::set_local(1, 0), Span(16, 17)),
|
||||
(Instruction::get_local(2, 0), Span(24, 25)),
|
||||
(Instruction::r#return(true), Span(25, 25)),
|
||||
],
|
||||
@ -67,7 +69,7 @@ fn set_local() {
|
||||
ConcreteValue::string("x"),
|
||||
ConcreteValue::Integer(42)
|
||||
],
|
||||
vec![Local::new(1, Type::Integer, true, Scope::default(), 0)]
|
||||
vec![Local::new(1, Type::Integer, true, Scope::default())]
|
||||
)),
|
||||
);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user