Files
carbon-lang/executable_semantics/syntax/BUILD
T
Jon MeowandGeoff Romer 250ce4ab00 Add string parsing and a print builtin (#721)
It was in my mind to add String in order to support libraries in `package`.  `print` is added in order to have a String go to stdout. I've tried to do `print` in a way that won't be too hard to add other printable types, but it's probably also somewhat optional here -- that is, if desired, I could remove it. But it was a lot easier to doublecheck `\n` behavior with it, and I suspect it'll be helpful in other tests if it supports more value types.

On the side, this also fixes dereferencing in Pattern/Expression Print() calls, which I was noticing printing pointers instead of values. This may be another argument for moving away from passing pointers, since this seems to be a difficult-to-catch error.

Co-authored-by: Geoff Romer <gromer@google.com>
2021-08-11 13:14:05 -07:00

80 lines
2.1 KiB
Python

# Part of the Carbon Language project, under the Apache License v2.0 with LLVM
# Exceptions. See /LICENSE for license information.
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
load("@rules_cc//cc:defs.bzl", "cc_library")
package(default_visibility = ["//executable_semantics:__subpackages__"])
cc_library(
name = "syntax",
srcs = [
"lexer.cpp",
"parse.cpp",
"parse_and_lex_context.cpp",
"parse_and_lex_context.h",
"parser.cpp",
"parser.h",
"syntax_helpers.cpp",
"syntax_helpers.h",
],
hdrs = [
"parse.h",
],
# Disable warnings for generated code.
copts = [
"-Wno-unneeded-internal-declaration",
"-Wno-unused-function",
"-Wno-writable-strings",
],
deps = [
":paren_contents",
"//common:check",
"//common:ostream",
"//common:string_helpers",
"//executable_semantics/ast:declaration",
"//executable_semantics/ast:expression",
"//executable_semantics/common:arena",
"//executable_semantics/common:error",
"//executable_semantics/common:tracing_flag",
"//executable_semantics/interpreter",
"//executable_semantics/interpreter:typecheck",
],
)
cc_library(
name = "paren_contents",
hdrs = ["paren_contents.h"],
)
genrule(
name = "syntax_bison_srcs",
srcs = ["parser.ypp"],
outs = [
"parser.cpp",
"parser.h",
],
cmd = "M4=$(M4) $(BISON) " +
"--output=$(location parser.cpp) " +
"--report=state " +
"--defines=$(location parser.h) " +
"$(location parser.ypp)",
toolchains = [
"@rules_bison//bison:current_bison_toolchain",
"@rules_m4//m4:current_m4_toolchain",
],
)
genrule(
name = "syntax_flex_srcs",
srcs = ["lexer.lpp"],
outs = ["lexer.cpp"],
cmd = "M4=$(M4) $(FLEX) " +
"--outfile=$(location lexer.cpp) " +
"$(location lexer.lpp)",
toolchains = [
"@rules_flex//flex:current_flex_toolchain",
"@rules_m4//m4:current_m4_toolchain",
],
)