Skip to content
This repository has been archived by the owner on Jun 20, 2022. It is now read-only.

Latest commit

 

History

History
42 lines (39 loc) · 1.31 KB

problem-solving-log.org

File metadata and controls

42 lines (39 loc) · 1.31 KB

Problem Solving Log

Problem Solving Log

Unable to resolve symbol: parse in this context

[2021-10-21 Thu]

Error (stack trace omitted)

2. Unhandled clojure.lang.Compiler$CompilerException
   Error compiling src/test_notes/core.clj at (6:1)
   #:clojure.error{:phase :compile-syntax-check,
                   :line 6,
                   :column 1,
                   :source
                   "/Users/yosevu/projects/personal/test-notes/src/test_notes/core.clj"}
1. Caused by java.lang.RuntimeException
   Unable to resolve symbol: parse in this context

***

Context

Adding org-parser as a dependency to a Clojure project.

Problem (the actual, root problem)

Update to latest version of org-parser.

Fallacy (the mistake)

Prior assumption: I am using the correct version.

Resolution (how to avoid the problem in the future)

If something doesn’t exist, follow this checklist:

  • Syntax error adding the dependency
  • Syntax error requiring the dependency
  • Dependency API mismatch
    • Using the wrong function
    • Using the wrong version

      Module Errors Syntax Language