Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test(core/lint): add tests for semantic errors #48

Open
gretmn102 opened this issue Sep 6, 2024 · 0 comments
Open

test(core/lint): add tests for semantic errors #48

gretmn102 opened this issue Sep 6, 2024 · 0 comments

Comments

@gretmn102
Copy link
Collaborator

# begin
  ! Функция не определена
  notDefinedFunction()
  ! Процедура не определена
  notDefinedProcedure arg1

  ! лишний end
  end

  ! Нельзя переопределять функцию
  func = 1
  ! Нельзя переопределять процедуру
  savegame = 1

  ! Перегрузка функций

  rand(arg1) &! норм

  ! Ожидается одна из перегрузок:
  ! rand(numeric, numeric): numeric
  ! rand(numeric): numeric
  rand

  ! Ожидается одна из перегрузок:
  ! rand(numeric, numeric): numeric
  ! rand(numeric): numeric
  rand(arg1, arg2, arg3)

  ! Перегрузка процедур

  delact(arg1) &! норм

  ! Ожидается одна из перегрузок:
  ! delact(string)
  delact

  ! Ожидается одна из перегрузок:
  ! delact(string)
  delact(arg1, redundantArg2)

  ! Ожидается одна из перегрузок:
  ! killvar(string, numeric)
  ! killvar(string)
  ! killvar()
  killvar(arg1, arg2, redundantArg3)
-

# begin

-
@gretmn102 gretmn102 changed the title test(core): add tests for semantic errors test(core/lint): add tests for semantic errors Sep 6, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant