Skip to content

Commit

Permalink
docs: remove author tags (#199)
Browse files Browse the repository at this point in the history
Authors tags don't provide much use. Multiple authors will work on
a file over time, just adding more people using tags seems
counter-productive. Additionally any version control system will have
the capability to track who created/modified/deleted a file.
  • Loading branch information
mitchellolsthoorn authored Nov 2, 2023
1 parent 1d1ea2a commit 03bf952
Show file tree
Hide file tree
Showing 25 changed files with 0 additions and 64 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,6 @@ import { DependencyVisitor } from "./DependencyVisitor";

/**
* Dependency generator for targets.
*
* @author Dimitri Stallenberg
*/
export class DependencyFactory
extends Factory
Expand Down
2 changes: 0 additions & 2 deletions libraries/analysis-javascript/lib/target/TargetFactory.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,6 @@ import { TargetVisitor } from "./TargetVisitor";

/**
* TargetFactory for Javascript.
*
* @author Dimitri Stallenberg
*/
export class TargetFactory
extends Factory
Expand Down
2 changes: 0 additions & 2 deletions libraries/analysis-javascript/lib/target/VisibilityType.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,5 @@

/**
* Visibility Types.
*
* @author Dimitri Stallenberg
*/
export type VisibilityType = "public" | "private" | "protected";
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,6 @@ import { ExportVisitor } from "./ExportVisitor";

/**
* ExportFactory for Javascript.
*
* @author Dimitri Stallenberg
*/
export class ExportFactory extends Factory {
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,6 @@ import { TypeModel } from "./TypeModel";

/**
* Abstract TypeResolver class
*
* @author Dimitri Stallenberg
*/
export abstract class TypeModelFactory {
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,6 @@ import { SetterGenerator } from "./generators/action/SetterGenerator";

/**
* JavaScriptRandomSampler class
*
* @author Dimitri Stallenberg
*/
export abstract class JavaScriptTestCaseSampler extends EncodingSampler<JavaScriptTestCase> {
private _rootContext: RootContext;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,6 @@ import { Encoding, EncodingSampler } from "@syntest/search";

import { ContextBuilder } from "../../testbuilding/ContextBuilder";

/**
* @author Dimitri Stallenberg
*/
export abstract class Statement {
private _variableIdentifier: string;
private _typeIdentifier: string;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,6 @@ import { Decoding } from "../Statement";

import { ActionStatement } from "./ActionStatement";

/**
* @author Dimitri Stallenberg
*/
export class ConstantObject extends ActionStatement {
constructor(
variableIdentifier: string,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,6 @@ import { Decoding, Statement } from "../Statement";

import { ActionStatement } from "./ActionStatement";

/**
* @author Dimitri Stallenberg
*/
export class FunctionCall extends ActionStatement {
/**
* Constructor
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,6 @@ import { Decoding } from "../Statement";
import { ClassActionStatement } from "./ClassActionStatement";
import { ConstructorCall } from "./ConstructorCall";

/**
* @author Dimitri Stallenberg
*/
export class Getter extends ClassActionStatement {
/**
* Constructor
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,6 @@ import { Decoding, Statement } from "../Statement";
import { ActionStatement } from "./ActionStatement";
import { ConstantObject } from "./ConstantObject";

/**
* @author Dimitri Stallenberg
*/
export class ObjectFunctionCall extends ActionStatement {
private _object: ConstantObject;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,6 @@ import { ConstructorCall } from "./ConstructorCall";
import { Getter } from "./Getter";
import { MethodCall } from "./MethodCall";

/**
* @author Dimitri Stallenberg
*/
export class Setter extends ClassActionStatement {
/**
* Constructor
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,6 @@ import { ContextBuilder } from "../../../testbuilding/ContextBuilder";
import { JavaScriptTestCaseSampler } from "../../sampling/JavaScriptTestCaseSampler";
import { Decoding, Statement } from "../Statement";

/**
* @author Dimitri Stallenberg
*/
export class ArrayStatement extends Statement {
private _elements: Statement[];

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,6 @@ import { ContextBuilder } from "../../../testbuilding/ContextBuilder";
import { JavaScriptTestCaseSampler } from "../../sampling/JavaScriptTestCaseSampler";
import { Decoding, Statement } from "../Statement";

/**
* @author Dimitri Stallenberg
*/
export class ArrowFunctionStatement extends Statement {
private _parameters: string[];
private _returnValue: Statement | undefined;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,6 @@ import { ContextBuilder } from "../../../testbuilding/ContextBuilder";
import { JavaScriptTestCaseSampler } from "../../sampling/JavaScriptTestCaseSampler";
import { Decoding, Statement } from "../Statement";

/**
* @author Dimitri Stallenberg
*/
type ObjectType = {
[key: string]: Statement | undefined;
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,6 @@ import { Statement } from "../Statement";

import { PrimitiveStatement } from "./PrimitiveStatement";

/**
* @author Dimitri Stallenberg
*/
export class BoolStatement extends PrimitiveStatement<boolean> {
constructor(
variableIdentifier: string,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,6 @@ import { PrimitiveStatement } from "./PrimitiveStatement";

/**
* Generic number class
*
* @author Dimitri Stallenberg
*/
export class IntegerStatement extends PrimitiveStatement<number> {
constructor(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,6 @@ import { Statement } from "../Statement";

import { PrimitiveStatement } from "./PrimitiveStatement";

/**
* @author Dimitri Stallenberg
*/
export class NullStatement extends PrimitiveStatement<boolean> {
constructor(
variableIdentifier: string,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,6 @@ import { PrimitiveStatement } from "./PrimitiveStatement";

/**
* Generic number class
*
* @author Dimitri Stallenberg
*/
export class NumericStatement extends PrimitiveStatement<number> {
constructor(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,6 @@ import { ContextBuilder } from "../../../testbuilding/ContextBuilder";
import { JavaScriptTestCaseSampler } from "../../sampling/JavaScriptTestCaseSampler";
import { Decoding, Statement } from "../Statement";

/**
* @author Dimitri Stallenberg
*/
export abstract class PrimitiveStatement<T> extends Statement {
get value(): T {
return this._value;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,6 @@ import { Decoding, Statement } from "../Statement";

import { PrimitiveStatement } from "./PrimitiveStatement";

/**
* @author Dimitri Stallenberg
*/
export class StringStatement extends PrimitiveStatement<string> {
constructor(
variableIdentifier: string,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,6 @@ import { Statement } from "../Statement";

import { PrimitiveStatement } from "./PrimitiveStatement";

/**
* @author Dimitri Stallenberg
*/
export class UndefinedStatement extends PrimitiveStatement<undefined> {
constructor(
variableIdentifier: string,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,6 @@ export type StateStorageOptions = {

/**
* This graphing plugin creates a listener that creates an SVG based on the generated CFG.
*
* @author Dimitri Stallenberg
*/
export class StateStorageEventListenerPlugin extends EventListenerPlugin {
private storageManager: StorageManager;
Expand Down
2 changes: 0 additions & 2 deletions tools/javascript/lib/plugins/crossover/TreeCrossoverPlugin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,6 @@ import { JavaScriptTestCase, TreeCrossover } from "@syntest/search-javascript";

/**
* Plugin for Tree Crossover
*
* @author Dimitri Stallenberg
*/
export class TreeCrossoverPlugin extends CrossoverPlugin<JavaScriptTestCase> {
constructor() {
Expand Down
2 changes: 0 additions & 2 deletions tools/javascript/lib/plugins/sampler/RandomSamplerPlugin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,6 @@ import { JavaScriptArguments } from "../../JavaScriptLauncher";

/**
* Plugin for RandomSampler
*
* @author Dimitri Stallenberg
*/
export class RandomSamplerPlugin extends SamplerPlugin<JavaScriptTestCase> {
constructor() {
Expand Down

0 comments on commit 03bf952

Please sign in to comment.