aboutsummaryrefslogtreecommitdiff
path: root/tests/definition_test.odin
blob: ea0a35b40e2cbfc4ee7f87f1d5c9936b11ebc98a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
package tests 

import "core:testing"
import "core:fmt"

import "shared:common"

import test "shared:testing"

/*
@(test)
ast_goto_untyped_value :: proc(t: ^testing.T) {
	source := test.Source {
		main = `package main

		xs := 2

		main :: proc() {
			xaa := xs			


			xaa*
		}
		`,
		packages = {},
	};

	location := common.Location {
		range = {
			start = {
				line = 5,
				character = 10,
			},
			end = {
				line = 5,
				character = 12,
			},
		},
		uri = "file:///test/test.odin",
	}

    test.expect_definition_locations(t, &source, {location});
}
*/

/*
@(test)
ast_goto_local_procedure_ret_value :: proc(t: ^testing.T) {
	source := test.Source {
		main = `package main
		my_function :: proc() -> int {
			return 0;
		}
		
		main :: proc() {
			xaa := my_function()
		
			
			xaa
		}
		`,
		packages = {},
	};

	location := common.Location {
		range = {
			start = {
				line = 5,
				character = 10,
			},
			end = {
				line = 5,
				character = 12,
			},
		},
		uri = "file:///test/test.odin",
	}

    test.expect_definition_locations(t, &source, {location});
}
*/