Module: MilkTea::AST
- Defined in:
- lib/milk_tea/core/ast.rb
Defined Under Namespace
Classes: AlignofExpr, Argument, Assignment, AttributeApplication, AttributeDecl, AwaitExpr, BinaryOp, BooleanLiteral, BreakStmt, Call, CharLiteral, CompilerFlagDirective, ConstDecl, ContinueStmt, DeferStmt, DetachExpr, DynType, EmitStmt, EnumDecl, EnumMember, ErrorBlockStmt, ErrorExpr, ErrorStmt, EventDecl, ExpressionList, ExpressionStmt, ExtendingBlock, ExternFunctionDecl, Field, FlagsDecl, FloatLiteral, ForBinding, ForStmt, ForeignFunctionDecl, ForeignParam, FormatExprPart, FormatString, FormatTextPart, FunctionDef, FunctionType, GatherStmt, Identifier, IfBranch, IfExpr, IfStmt, Import, IncludeDirective, IndexAccess, IntegerLiteral, InterfaceDecl, InterfaceMethodDecl, LinkDirective, LocalDecl, MatchArm, MatchExpr, MatchExprArm, MatchStmt, MemberAccess, MethodDef, NullLiteral, OffsetofExpr, OpaqueDecl, ParallelBlockStmt, Param, PassStmt, PrefixCast, ProcExpr, ProcType, QualifiedName, RangeExpr, ReturnStmt, SizeofExpr, SourceFile, Specialization, StaticAssert, StringLiteral, StructDecl, TupleType, TypeAliasDecl, TypeArgument, TypeParam, TypeParamConstraint, TypeRef, UnaryOp, UnionDecl, UnsafeExpr, UnsafeStmt, ValueTypeParam, VarDecl, VariantArm, VariantDecl, WhenBranch, WhenStmt, WhileStmt
Class Method Summary
collapse
Class Method Details
.assign_node_ids(source_file) ⇒ Object
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
|
# File 'lib/milk_tea/core/ast.rb', line 316
def self.assign_node_ids(source_file)
next_id = 0
node_ids = {}
path_ids = {}
visit = ->(node, path = "") do
return [next_id, path] unless node.is_a?(::Data)
node_ids[node.object_id] = (next_id += 1)
current_path = path.empty? ? node.class.name.sub(/\AMilkTea::AST::/, "") : path
path_ids[current_path] = node_ids[node.object_id]
if node.respond_to?(:declarations) && node.declarations.is_a?(Array)
node.declarations.each_with_index { |d, i| visit.call(d, "#{current_path}.declarations[#{i}]") }
end
if node.respond_to?(:body)
visit.call(node.body, "#{current_path}.body")
end
node.class.members.each do |field_name|
next if %i[module_name module_kind].include?(field_name)
value = node.public_send(field_name)
next unless value
field_path = "#{current_path}.#{field_name}"
case value
when ::Data
visit.call(value, field_path)
when Array
value.each_with_index do |v, i|
visit.call(v, "#{field_path}[#{i}]") if v.is_a?(::Data)
end
end
end
end
visit.call(source_file)
source_file.with(node_ids: node_ids.freeze, node_path_ids: path_ids.freeze)
end
|
.build_chain_from_parts(parts) ⇒ Object
359
360
361
362
363
364
365
366
367
|
# File 'lib/milk_tea/core/ast.rb', line 359
def self.build_chain_from_parts(parts)
return nil unless parts.length >= 1
expr = Identifier.new(name: parts.first)
parts[1..].each do |part|
expr = MemberAccess.new(receiver: expr, member: part)
end
expr
end
|