Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(749)

Unified Diff: pkg/fletchc/lib/src/debug_info_function_codegen.dart

Issue 1659163007: Rename fletch -> dartino (Closed) Base URL: https://github.com/dartino/sdk.git@master
Patch Set: address comments Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: pkg/fletchc/lib/src/debug_info_function_codegen.dart
diff --git a/pkg/fletchc/lib/src/debug_info_function_codegen.dart b/pkg/fletchc/lib/src/debug_info_function_codegen.dart
deleted file mode 100644
index 4cb0353a0de97bf8c07c5782385f1f4486e27260..0000000000000000000000000000000000000000
--- a/pkg/fletchc/lib/src/debug_info_function_codegen.dart
+++ /dev/null
@@ -1,153 +0,0 @@
-// Copyright (c) 2015, the Dartino project authors. Please see the AUTHORS file
-// for details. All rights reserved. Use of this source code is governed by a
-// BSD-style license that can be found in the LICENSE.md file.
-
-library fletchc.debug_info_function_codegen;
-
-import 'package:compiler/src/elements/elements.dart';
-import 'package:compiler/src/resolution/tree_elements.dart';
-import 'package:compiler/src/tree/tree.dart';
-import 'package:compiler/src/universe/selector.dart';
-
-import 'package:compiler/src/dart_types.dart' show
- DartType;
-
-import 'package:compiler/src/diagnostics/spannable.dart' show
- Spannable;
-
-import 'bytecode_assembler.dart';
-import 'closure_environment.dart';
-import 'codegen_visitor.dart';
-
-import 'fletch_function_builder.dart' show
- FletchFunctionBuilder;
-
-import 'debug_registry.dart' show
- DebugRegistry;
-
-import 'fletch_context.dart';
-import 'function_codegen.dart';
-import 'debug_info.dart';
-
-class DebugInfoFunctionCodegen extends FunctionCodegen with DebugRegistry {
- final FletchCompilerImplementation compiler;
- final DebugInfo debugInfo;
-
- DebugInfoFunctionCodegen(this.debugInfo,
- FletchFunctionBuilder functionBuilder,
- FletchContext context,
- TreeElements elements,
- ClosureEnvironment closureEnvironment,
- FunctionElement function,
- this.compiler)
- : super(functionBuilder, context, elements, null,
- closureEnvironment, function) {
- if (functionBuilder.isInstanceMember) pushVariableDeclaration(thisValue);
- }
-
- void recordDebugInfo(Node node) {
- debugInfo.addLocation(compiler, assembler.byteSize, node);
- }
-
- void pushVariableDeclaration(LocalValue value) {
- super.pushVariableDeclaration(value);
- debugInfo.pushScope(assembler.byteSize, value);
- }
-
- void popVariableDeclaration(Element element) {
- super.popVariableDeclaration(element);
- debugInfo.popScope(assembler.byteSize);
- }
-
- void callIsSelector(
- Node node,
- DartType type,
- Spannable diagnosticLocation) {
- recordDebugInfo(node);
- super.callIsSelector(node, type, diagnosticLocation);
- }
-
- void invokeMethod(Node node, Selector selector) {
- recordDebugInfo(node);
- super.invokeMethod(node, selector);
- }
-
- void invokeGetter(Node node, Name name) {
- recordDebugInfo(node);
- super.invokeGetter(node, name);
- }
-
- void invokeSetter(Node node, Name name) {
- recordDebugInfo(node);
- super.invokeSetter(node, name);
- }
-
- void invokeFactory(Node node, int constId, int arity) {
- recordDebugInfo(node);
- super.invokeFactory(node, constId, arity);
- }
-
- void invokeStatic(Node node, int constId, int arity) {
- recordDebugInfo(node);
- super.invokeStatic(node, constId, arity);
- }
-
- void generateReturn(Node node) {
- recordDebugInfo(node);
- super.generateReturn(node);
- }
-
- void generateReturnNull(Node node) {
- recordDebugInfo(node);
- super.generateReturnNull(node);
- }
-
- void generateImplicitReturn(FunctionExpression node) {
- // If the method is empty, generate debug information for the
- // implicit 'return null' that covers the entire method. That was,
- // the debugger will use the entire (empty) method as the source
- // listing is a breakpoint is set in the method.
- if (node.body is Block) {
- Block body = node.body;
- if (body.statements.isEmpty) recordDebugInfo(node);
- }
- super.generateImplicitReturn(node);
- }
-
- void generateSwitchCaseMatch(CaseMatch caseMatch, BytecodeLabel ifTrue) {
- // We do not want to break on the evaluation of the individual
- // case equality tests.
- recordDebugInfo(null);
- super.generateSwitchCaseMatch(caseMatch, ifTrue);
- }
-
- void generateEmptyInitializer(Node node) {
- recordDebugInfo(node);
- super.generateEmptyInitializer(node);
- }
-
- void generateIdentical(Node node) {
- recordDebugInfo(node);
- super.generateIdentical(node);
- }
-
- void generateIdenticalNonNumeric(Node node) {
- recordDebugInfo(node);
- super.generateIdenticalNonNumeric(node);
- }
-
- void generateThrow(Node node) {
- recordDebugInfo(node);
- super.generateThrow(node);
- }
-
- void visitForValue(Node node) {
- recordDebugInfo(node);
- super.visitForValue(node);
- }
-
- void visitForEffect(Node node) {
- recordDebugInfo(node);
- super.visitForEffect(node);
- }
-}

Powered by Google App Engine
This is Rietveld 408576698