imports.scm
1 ;; ═════════════════════════════════════════════════════════════════════════ 2 ;; C++ Import Queries 3 ;; ═════════════════════════════════════════════════════════════════════════ 4 5 ;; ─────────────────────────────────────────────────────────────────────────── 6 ;; #include <cstdlib> 7 ;; #include "myheader.h" 8 ;; ─────────────────────────────────────────────────────────────────────────── 9 (preproc_include 10 path: [(system_lib_string) (string_literal)] @import_path) @import_stmt 11 12 ;; ─────────────────────────────────────────────────────────────────────────── 13 ;; using namespace std; 14 ;; ─────────────────────────────────────────────────────────────────────────── 15 (using_declaration 16 (identifier) @import_path) @import_stmt